-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (50 loc) · 1.21 KB
/
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
46
47
48
49
50
51
52
53
54
55
#infoList li:nth-child(1n) {
background-color: #ff7979;
border-radius: 10px;
font-size: 25px;
margin-bottom: 10px;
padding: 5px;
box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3);
}
#infoList li:nth-child(2n) {
background-color: #7bed9f;
border-radius: 10px;
font-size: 25px;
margin-bottom: 10px;
padding: 5px;
box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3);
}
#infoList li:nth-child(3n) {
background-color: #f6e58d;
border-radius: 10px;
font-size: 25px;
margin-bottom: 30px;
padding: 5px;
box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 600px) {
#infoList li:nth-child(1n) {
background-color: #ff7979;
border-radius: 10px;
font-size: 16px;
margin-bottom: 10px;
padding: 5px;
box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3);
}
#infoList li:nth-child(2n) {
background-color: #7bed9f;
border-radius: 10px;
font-size: 16px;
margin-bottom: 10px;
padding: 5px;
box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3);
}
#infoList li:nth-child(3n) {
background-color: #f6e58d;
border-radius: 10px;
font-size: 16px;
margin-bottom: 25px;
padding: 5px;
box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3);
}
}