-
Notifications
You must be signed in to change notification settings - Fork 0
/
Battle #7
44 lines (44 loc) · 858 Bytes
/
Battle #7
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
<!-- #7 leaf challenge completed-->
<!DOCTYPE html>
<html>
<head>
<style>
body{
background:#0B2429;
}
.first-piece {
margin:75px;
margin-left:70px;
width:150px;
height: 150px;
background:#1A4341;
border-top-left-radius:100px;
border-bottom-right-radius:100px;
}
.second-piece {
margin:-225px;
margin-left:120px;
width:150px;
height: 150px;
background:#998235;
border-top-left-radius:100px;
border-bottom-right-radius:100px;
}
.third-piece {
margin:75px;
margin-left:168px;
width:150px;
height: 150px;
background:#F3AC3C;
border-top-left-radius:100px;
border-bottom-right-radius:100px;
}
</style>
</head>
<body>
<div class="container">
<div class="first-piece"></div>
<div class="second-piece"></div>
<div class="third-piece"></div>
</div></body>
</html>