-
Notifications
You must be signed in to change notification settings - Fork 0
/
Battle #26
78 lines (78 loc) · 1.46 KB
/
Battle #26
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
<!-- #26 Challenge Completed-->
<!DOCTYPE html>
<html>
<head>
<style>
body{
background:#6592CF;
display:flex;
justify-content:center;
align-items:center;
}
.cir-1 {
position:absolute;
border-radius:60px 60px 0 0;
width: 120px;
height:60px;
margin-top:-160px;
margin-right:-200px;
background:#060F55;
}
.cir-2 {
position:absolute;
border-radius:60px 60px 0 0;
width: 120px;
height:60px;
margin-top:-160px;
margin-left:-200px;
background:#060F55;
}
.cir-3 {
position:absolute;
border-radius:60px 60px 0 0;
width: 120px;
height:60px;
transform:rotate(180deg);
margin-top:160px;
margin-right:0px;
background:#060F55;
}
.cir-4 {
position:absolute;
border-radius:60px 60px 0 0;
width: 80px;
height:50px;
margin-top:-130px;
margin-right:-200px;
background:#6592CF;
}
.cir-5 {
position:absolute;
border-radius:60px 60px 0 0;
width: 80px;
height:50px;
margin-top:-130px;
margin-left:-200px;
background:#6592CF;
}
.cir-6{
position:absolute;
border-radius:60px 60px 0 0;
width: 80px;
height:50px;
transform:rotate(180deg);
margin-top:130px;
margin-right:0px;
background:#6592CF;
}
</style>
</head>
<body>
<div class="cir-1"></div>
<div class="cir-2"></div>
<div class="cir-3"></div>
<div class="cir-4"></div>
<div class="cir-5"></div>
<div class="cir-6"></div>
</body>
</html>