-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathau.css
138 lines (131 loc) · 2.12 KB
/
au.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
body{
margin: 0px;
padding: 0px;
}
div{
margin:0px;
padding: 0px;
}
a{
text-decoration: none;
}
#main{
/*background-image: linear-gradient(to bottom, rgba(0,255,255,0.6) 70%, rgba(255,255,255,0.5));*/
background-image: url(../img/background.jpg);
background-size: cover;
background-position:center;
background-attachment: fixed;
width: 100%;
height: 100%;
min-height: 100vh;
margin: 0px;
}
#container{
width: 100%;
height: 100%;
overflow: hidden;
align-items: center;
text-align: center;
}
.member{
width:33.33%;
height:100%;
float: left;
/*border: .1px solid transparent;*/
}
.aboutm{
font-size:25px;
margin:20px 40px 0px 40px;
text-align:justify;
color: rgb(255,255,255);
}
#team{
height: calc(100vh - 80px);
}
.memberimg{
background-size: cover;
background-position: center;
width:250px;
height: 250px;
border: 4px solid white;
border-radius: 50%;
margin: auto;
margin-top: 10px;
}
.m1{
background-image: url(../img/m2.jpg);
}
.m2{
background-image: url('../img/m2.jpg');
}
.m3{
background-image: url('../img/m3.jpg');
}
.mname{
text-transform: capitalize;
font-size: 40px;
color: rgb(255,255,255);
text-align: center;
}
.si{
width: 100%;
height: 40px;
margin-top:10px;
}
.siimgdiv{
width:40px;
height: 40px;
margin: auto;
border-radius: 25%;
background-color: white;
margin-right:10px;
float: left;
}
.siimgdiv img{
width:30px;
height: 30px;
margin: 5px;
}
.siimgdiv1{
padding-left: calc(50% - 20px);
}
.siimgdiv2{
padding-left: calc(50% - 45px);
}
.siimgdiv3{
padding-left: calc(50% - 70px);
}
.siimgdiv4{
padding-left: calc(50% - 95px);
}
.siimgdiv5{
padding-left: calc(50% - 120px);
}
@media screen and (max-width:1120px){
.aboutm{
font-size:25px;
margin:20px 10px 0px 15px;
}
}
@media screen and (max-width:800px){
.member{
width:100%;
float: none;
overflow: hidden;
border-bottom: 2px double black;
padding-bottom:10px;
}
#team{
height: 100%;
}
.aboutm{
font-size:25px;
margin:20px 12% 0px 12%;
}
}
@media screen and (max-width:500px){
.aboutm{
font-size:25px;
margin:20px 40px 0px 40px;
}
}