-
Notifications
You must be signed in to change notification settings - Fork 0
/
Battle #36
73 lines (73 loc) · 1.4 KB
/
Battle #36
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
<!-- #36 Challenge Completed-->
<!DOCTYPE html>
<html>
<head>
<style>
body{
background:#1A4341;
justify-content:center;
align-items:center;
display:flex;
}
.p-1 {
border-top-right-radius:25px;
border-top-left-radius:25px;
margin-top:100px;
margin-left:0px;
position:absolute;
width:50px;
height:200px;
background:#F3AC3C;
}
.p-2 {
border-top-right-radius:25px;
border-top-left-radius:25px;
margin-top:100px;
margin-left:300px;
position:absolute;
width:50px;
height:200px;
background:#F3AC3C;
}
.p-3 {
border-top-right-radius:25px;
border-top-left-radius:25px;
margin-top:100px;
margin-left:-300px;
position:absolute;
width:50px;
height:200px;
background:#F3AC3C;
}
.p-4 {
transform:rotate(180deg);
border-top-right-radius:25px;
border-top-left-radius:25px;
margin-top:-100px;
margin-left:150px;
position:absolute;
width:50px;
height:200px;
background:#998235;
}
.p-5 {
transform:rotate(180deg);
border-top-right-radius:25px;
border-top-left-radius:25px;
margin-top:-100px;
margin-left:-150px;
position:absolute;
width:50px;
height:200px;
background:#998235;
}
</style>
</head>
<body>
<div class="p-1"></div>
<div class="p-2"></div>
<div class="p-3"></div>
<div class="p-4"></div>
<div class="p-5"></div>
</body>
</html>