-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathourteam.css
85 lines (72 loc) · 1.09 KB
/
ourteam.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
*{
margin : 0;
padding : 0;
font-family: sans-serif;
}
.team-section{
width: 100%;
height: 100%;
overflow: hidden;
text-align: center;
background: #34495e;
}
.team-section h1{
text-transform: uppercase;
margin-top: 30px;
margin-bottom: 30px;
color: white;
font-size: 40px;
}
.border{
display:block;
margin: auto;
width: 160px;
height: 3px;
background: #3498db;
margin-bottom: 40px;
}
.ps {
margin-bottom: 40px;
}
.ps a{
display: inline-block;
margin: 0 30px;
width: 160px;
height: 160px;
overflow: hidden;;
border-radius: 50%
}
.ps a img{
width: 100%;
filter:grayscale(100%);
transition: 0.4s all;
}
.ps a:hover > img{
filter: none;
}
.section{
width: 600px;
margin: auto;
font-size: 20px;
color: white;
text-align: justify;
height: 0;
overflow: hidden;
}
.section:target{
height: auto;
}
.name
{
display: block;
margin-bottom: 30px;
text-align: center;
text-transform: capitalize;
font-size: 24px;
}
ul {
list-style-type: square;
list-style-position: outside;
list-style-image: none;
font-size: 20px;
}