-
Notifications
You must be signed in to change notification settings - Fork 0
/
#52-Break-the-Chain.htm
87 lines (75 loc) · 1.31 KB
/
#52-Break-the-Chain.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
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
<div class="a"></div>
<div class="b"></div>
<div class="c"></div>
<div class="d"></div>
<div class="e"></div>
<div class="f"></div>
<div class="g"></div>
<style>
::before,
::after {
content: "";
position: absolute;
}
body {
background: #6592CF;
}
div {
width: 10px;
height: 43px;
background: #243D83;
position: absolute;
top: 49%;
left: 11.2%;
}
div::before {
width: 20px;
height: 20px;
background: #243D83;
border-radius: 100%;
top: -17.5px;
left: -4.8px;
}
body::before {
width: 40px;
height: 40px;
background: #EEB850;
border-radius: 100%;
top: 40%;
left: 7.5%;
}
.a::after {
width: 60px;
height: 60px;
border-radius: 100%;
background: #EEB850;
left: 20px;
top: -47px
}
.b {
left: 22.5%
}
.b::after {
width: 40px;
height: 40px;
border-radius: 100%;
background: #EEB850;
left: 30px;
top: -27.5px
}
.c {
left: 33.7%;
}
.d {
left: 52.5%;
}
.e {
left: 63.7%
}
.f {
left: 74.9%
}
.g {
left: 86.2%
}
</style>