-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylecontact.css
79 lines (77 loc) · 1.08 KB
/
stylecontact.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
*{
margin:0;
padding:0;
font-family:sans-serif;
}
.team-section{
overflow:hidden;
text-align:center;
background:#34495e;
padding:60px;
}
.team-section h1{
text-transform:uppercase;
margin-bottom:60px;
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%;
height: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:uppercase;
font-size:22px;
}
.team-section a {
text-decoration: none;
display: inline-block;
padding: 8px 16px;
}
.team-section a:hover {
background-color: #ddd;
color: black;
}
.previous {
background-color: #4CAF50;
color:white ;
}