-
Notifications
You must be signed in to change notification settings - Fork 0
/
Battle #8
111 lines (111 loc) · 2.23 KB
/
Battle #8
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
<!-- #8 challenge completed-->
<!DOCTYPE html>
<html>
<head>
<style>
body{
background:#6592CF;
display:flex;
justify-content:center;
align-items:center;
}
.stand {
width: 20px;
height: 60px;
background: #060F55;
bottom:0px;
position:absolute;
}
.half-circle{
position:absolute;
width:140px;
height:100px;
border-bottom-right-radius:70px;
border-bottom-left-radius:70px;
background:#060F55;
bottom:50px;
}
.strip-1{
position:absolute;
border-top-right-radius:70px;
border-top-left-radius:70px;
width:20px;
height:110px;
margin-top:-90px;
margin-left:-120px;
background:#060F55;
}
.in-strip-1{
position:absolute;
border-bottom-right-radius:70px;
border-bottom-left-radius:70px;
width:20px;
height:110px;
margin-top:-90px;
margin-left:-80px;
background:#6592CF;
}
.strip-2{
position:absolute;
border-top-right-radius:70px;
border-top-left-radius:70px;
width:20px;
height:110px;
margin-top:-90px;
margin-left:-40px;
background:#060F55;
}
.in-strip-2{
position:absolute;
border-bottom-right-radius:70px;
border-bottom-left-radius:70px;
width:20px;
height:110px;
margin-top:-90px;
margin-left:0px;
background:#6592CF;
}
.strip-3{
position:absolute;
border-top-right-radius:70px;
border-top-left-radius:70px;
width:20px;
height:110px;
margin-top:-90px;
margin-left:40px;
background:#060F55;
}
.in-strip-3{
position:absolute;
border-bottom-right-radius:70px;
border-bottom-left-radius:70px;
width:20px;
height:110px;
margin-top:-90px;
margin-left:80px;
background:#6592CF;
}
.strip-4{
position:absolute;
border-top-right-radius:70px;
border-top-left-radius:70px;
width:20px;
height:110px;
margin-top:-90px;
margin-left:120px;
background:#060F55;
}
</style>
</head>
<body>
<div class="stand"></div>
<div class="half-circle"></div>
<div class="strip-1"></div>
<div class="in-strip-1"></div>
<div class="in-strip-2"></div>
<div class="strip-2"></div>
<div class="strip-3"></div>
<div class="in-strip-3"></div>
<div class="strip-4"></div>
</body>
</html>