-
Notifications
You must be signed in to change notification settings - Fork 0
/
Battle #3
56 lines (56 loc) · 912 Bytes
/
Battle #3
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
<!--Completed #3 challenge-->
<!DOCTYPE html>
<html>
<head>
<style>
body{
background:#6592CF;
}
.container{
width:100%;
height:100%;
display:flex;
justify-content:center;
align-items:center;
}
.box {
margin:auto;
background: #243D83;
width: 300px;
height:150px;
}
.circle-1{
background:#EEB850;
margin:auto;
width:50px;
height:50px;
border-radius:50%;
position:absolute;
}
.circle-2{
background:#243D83;
margin:auto;
width:150px;
height:150px;
border-radius:50%;
position:absolute;
}
.circle-3{
background:#6592CF;
margin:auto;
width:250px;
height:250px;
border-radius:100%;
position:absolute;
}
</style>
</head>
<body>
<div class="container">
<div class="box"></div>
<div class="circle-3"></div>
<div class="circle-2"></div>
<div class="circle-1"></div>
</div>
</body>
</html>