-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBattle #16
60 lines (60 loc) · 1.09 KB
/
Battle #16
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
<!-- #16 Challenge Completed-->
<!DOCTYPE html>
<html>
<head>
<style>
body{
background:#0B2429;
display:flex;
justify-content:center;
align-items:center;
}
.circle-1 {
position:absolute;
width: 200px;
height: 200px;
background:#998235;
transform:rotate(45deg);
border-radius:50%;
border-bottom-left-radius:0px;
}
.circle-2 {
position:absolute;
width: 200px;
height: 200px;
background:#998235;
transform:rotate(225deg);
border-radius:50%;
border-bottom-left-radius:0px;
}
.circle-3 {
position:absolute;
width: 180px;
height: 180px;
background:#0B2429;
border-radius:50%;
}
.circle-4 {
position:absolute;
width: 140px;
height: 140px;
background:#F3AC3C;
border-radius:50%;
}
.circle-5 {
position:absolute;
width: 50px;
height: 50px;
background:#0B2429;
border-radius:50%;
}
</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="circle-5"></div>
</body>
</html>