-
Notifications
You must be signed in to change notification settings - Fork 0
/
Battle #17
99 lines (99 loc) · 1.79 KB
/
Battle #17
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
<!-- #17 Challenge Completed-->
<!DOCTYPE html>
<html>
<head>
<style>
body{
background:#09042A;
justify-content:center;
display:flex;
align-items:center;
}
.circle-a{
position:absolute;
background:#E78481;
width:80px;
height:80px;
margin-left:-120px;
border-radius:50%;
}
.circle-1 {
margin-left:-120px;
position:absolute;
width:58px;
height:58px;
background:#09042A;
border-radius:50%;
}
.circle-b{
position:absolute;
background:#E78481;
width:80px;
height:80px;
margin-right:-120px;
border-radius:50%;
}
.circle-2 {
margin-right:-120px;
position:absolute;
width:58px;
height:58px;
background:#09042A;
border-radius:50%;
}
.circle-3 {
margin-top:-105px;
margin-right:0px;
position:absolute;
width:80px;
height:80px;
background:#09042A;
border-radius:50%;
}
.in-circle-3 {
margin-top:-105px;
margin-right:0px;
position:absolute;
width:60px;
height:60px;
background:#F5BB9C;
border-radius:50%;
}
.circle-4 {
margin-top:105px;
margin-right:0px;
position:absolute;
width:80px;
height:80px;
background:#09042A;
border-radius:50%;
}
.in-circle-4 {
margin-top:105px;
margin-right:0px;
position:absolute;
width:60px;
height:60px;
background:#F5BB9C;
border-radius:50%;
}
.rectangle{
background:#E78481;
width:60px;
height:80px;
border-radius:500px;
}
</style>
</head>
<body>
<div class="circle-a"></div>
<div class="circle-b"></div>
<div class="circle-1"></div>
<div class="circle-2"></div>
<div class="circle-3"></div>
<div class="in-circle-3"></div>
<div class="circle-4"></div>
<div class="in-circle-4"></div>
<div class="rectangle"></div>
</body>
</html>