-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
45 lines (40 loc) · 831 Bytes
/
style.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
.ps {
margin-bottom: 20px;
margin-left: 60px;
}
.ps a {
display: inline-block;
margin: 0 30 px;
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; */
margin-top: 0px;
font-size: 20px;
color: black;
text-align: justify;
height: 0;
overflow: hidden;
}
.section:target {
height: auto;
}
.name {
display: block;
margin-bottom: 20px;
text-align: center;
text-transform: uppercase;
font-size: 22px;
}