-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstudy.css
More file actions
90 lines (87 loc) · 1.26 KB
/
Copy pathstudy.css
File metadata and controls
90 lines (87 loc) · 1.26 KB
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
*{
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:80%;
}
.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;
font-family:sans-serif;
}
.section:target{
height:auto;
}
.name{
display:block;
margin-bottom:30px;
text-align:center;
text-transform:uppercase;
font-size:22px;
}
p{
margin-top:30px;
margin-bottom:20px;
font-style:italic;
}
a{
text-decoration:none;
color:blue;
}
/*.content{
width:300px;
position:absolute;
top:90px;
left:50%;
transform:translateX(-50%);
text-align:center;
z-index:2;
}*/
.social-icons img{
width:25px;
margin:0 40px;
cursor: pointer;
}