-
Notifications
You must be signed in to change notification settings - Fork 0
/
Battle #28
102 lines (102 loc) · 1.94 KB
/
Battle #28
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
<!--#28 Challenge Completed-->
<!DOCTYPE html>
<html>
<head>
<style>
body{
background:#1A4341;
justify-content:center;
display:flex;
align-items:center;
}
.circle-1 {
border-radius:50%;
width: 50px;
height: 50px;
margin-right:-210px;
margin-top:-70px;
position:absolute;
background:#F3AC3C;
}
.p-1 {
transform:rotate(180deg);
border-top-right-radius:50%;
border-top-left-radius:50%;
width: 50px;
height: 50px;
margin-right:-210px;
margin-top:70px;
position:absolute;
background:#998235;
}
.circle-2 {
border-radius:50%;
width: 50px;
height: 50px;
margin-left:-210px;
margin-top:-70px;
position:absolute;
background:#998235;
}
.p-2 {
transform:rotate(180deg);
border-top-right-radius:50%;
border-top-left-radius:50%;
width: 50px;
height: 50px;
margin-left:-210px;
margin-top:70px;
position:absolute;
background:#F3AC3C;
}
.circle-3 {
border-radius:50%;
width: 50px;
height: 50px;
margin-left:-70px;
margin-top:70px;
position:absolute;
background:#998235;
}
.p-3 {
border-top-right-radius:50%;
border-top-left-radius:50%;
width: 50px;
height: 50px;
margin-left:-70px;
margin-top:-70px;
position:absolute;
background:#F3AC3C;
}
.circle-4 {
border-radius:50%;
width: 50px;
height: 50px;
margin-right:-70px;
margin-top:70px;
position:absolute;
background:#F3AC3C;
}
.p-4 {
border-top-right-radius:50%;
border-top-left-radius:50%;
width: 50px;
height: 50px;
margin-right:-70px;
margin-top:-70px;
position:absolute;
background:#998235;
}
</style>
</head>
<body>
<div class="circle-1"></div>
<div class="circle-2"></div>
<div class="circle-3"></div>
<div class="circle-4"></div>
<div class="p-1"></div>
<div class="p-2"></div>
<div class="p-3"></div>
<div class="p-4"></div>
</body>
</html>