-
Notifications
You must be signed in to change notification settings - Fork 0
/
Battle #25
58 lines (58 loc) · 1.07 KB
/
Battle #25
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
<!--#25 Challenge Completed-->
<!DOCTYPE html>
<html>
<head>
<style>
body{
background:#998235;
align-items:center;
display:flex;
justify-content:center;
}
.leaf-one{
position:absolute;
width: 80px;
height: 100px;
background: #1A4341;
border-radius:0px 50px;
margin-top:-80px;
margin-left:-100px;
}
.leaf-second{
position:absolute;
width: 80px;
height: 60px;
background: #F3AC3C;
border-radius:0px 50px;
margin-top:120px;
transform:rotate(deg);
margin-left:-100px;
}
.leaf-three{
position:absolute;
width: 80px;
height: 60px;
background: #F3AC3C;
border-radius:50px 0px;
margin-top:-120px;
transform:rotate(deg);
margin-right:-100px;
}
.leaf-four{
position:absolute;
width: 80px;
height: 100px;
background: #1A4341;
border-radius:50px 0px;
margin-top:80px;
margin-right:-100px;
}
</style>
</head>
<body>
<div class="leaf-one"></div>
<div class="leaf-second"></div>
<div class="leaf-three"></div>
<div class="leaf-four"></div>
</body>
</html>