-
Notifications
You must be signed in to change notification settings - Fork 0
/
Battle #21
60 lines (60 loc) · 1.09 KB
/
Battle #21
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
<!-- #21 Challenge Completed-->
<!DOCTYPE html>
<html>
<head>
<style>
body{
background:#222;
display:flex;
justify-content:center;
align-items:center;
}
.p1 {
position:absolute;
margin-left:-60px;
margin-top:-85px;
transform:rotate(45deg);
width: 30px;
height: 100px;
background:#F2994A;
border-bottom-left-radius:10px;
}
.p2{
position:absolute;
margin-left:-60px;
margin-top:15px;
transform:rotate(135deg);
width: 30px;
height: 60px;
background:#F2994A;
border-top-left-radius:5px;
}
.p3 {
position:absolute;
margin-right:-55px;
margin-top:82px;
transform:rotate(-135deg);
width: 30px;
height: 100px;
background:#2D9CDB;
border-bottom-left-radius:10px;
}
.p4{
position:absolute;
margin-right:-55px;
margin-top:-18px;
transform:rotate(135deg);
width: 30px;
height: 60px;
background:#2D9CDB;
border-bottom-right-radius:5px;
}
</style>
</head>
<body>
<div class="p1"></div>
<div class="p2"></div>
<div class="p3"></div>
<div class="p4"></div>
</body>
</html>