-
Notifications
You must be signed in to change notification settings - Fork 0
/
#08-Forking-Crazy.htm
62 lines (55 loc) · 1.47 KB
/
#08-Forking-Crazy.htm
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
<div a></div>
<div b></div>
<ul>
<li>
<li>
<li>
<li>
<li>
<li>
<li>
<ul>
<style>
body {
background: #6592CF;
}
div {
position: absolute;
}
[a] {
width: 140px;
height: 150px;
background: #060F55;
top: 33.5%;
left: 50%;
transform: translateX(-50%);
border-radius: 0 0 100% 100%;
}
[b] {
width: 20px;
height: 55px;
background: #060F55;
bottom: 0;
left: 50%;
transform: translateX(-50%)
}
ul {
display: flex;
list-style: none;
position: absolute;
left: 22.5%;
top: 11.2%;
}
li {
width: 20px;
height: 110px;
}
li:nth-child(even) {
background: #6592CF;
border-radius: 0 0 10px 10px;
}
li:nth-child(odd) {
background: #060F55;
border-radius: 10px 10px 0 0;
}
</style>