-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
118 lines (99 loc) · 1.64 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
ul {
margin: 10%;
border-radius: 10%;
}
li {
padding: 20px;
list-style-type: none;
width: 25%;
height: 250px;
float: left;
margin: 0.1%;
font-size: 150px;
}
li:nth-child(1) {
background-color: blue;
background-color: black;
color: pink;
border-top-left-radius: 30%;
}
li:nth-child(1):before {
content: "1";
margin: 40%;
}
li:nth-child(2) {
background-color: blue;
background-color: pink;
color: black;
}
li:nth-child(2):before {
content: "2";
margin: 40%;
}
li:nth-child(3) {
background-color: blue;
background-color: black;
color: pink;
border-top-right-radius: 30%;
}
li:nth-child(3):before {
content: "3";
margin: 40%;
}
li:nth-child(4) {
background-color: blue;
background-color: pink;
color: black;
}
li:nth-child(4):before {
content: "4";
margin: 40%;
}
li:nth-child(5) {
background-color: blue;
background-color: black;
color: pink;
}
li:nth-child(5):before {
content: "5";
margin: 40%;
}
li:nth-child(6) {
background-color: blue;
background-color: pink;
color: black;
}
li:nth-child(6):before {
content: "6";
margin: 40%;
}
li:nth-child(7) {
background-color: blue;
background-color: black;
color: pink;
border-bottom-left-radius: 30%;
}
li:nth-child(7):before {
content: "7";
margin: 40%;
}
li:nth-child(8) {
background-color: blue;
background-color: pink;
color: black;
}
li:nth-child(8):before {
content: "8";
margin: 40%;
}
li:nth-child(9) {
background-color: blue;
background-color: black;
color: pink;
border-bottom-right-radius: 30%;
}
li:nth-child(9):before {
content: "9";
margin: 40%;
}
/*# sourceMappingURL=style.css.map */