-
Notifications
You must be signed in to change notification settings - Fork 0
/
Battle #4.html
47 lines (45 loc) · 897 Bytes
/
Battle #4.html
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
<div class="a">
<div class="b"></div>
<div class="c"></div>
<div class="d"></div>
</div>
<style>
body{
background:#62306D;
}
.a{
display:flex;
justify-content:center;
align-items:center;
}
.b{
width:100px;
height:100px;
background:#F7EC7D;
border-radius: 65px 65px 0 0;
top:50%;
left:50%;
position:absolute;
transform:translate(-50%,-100%);
}
.c{
width:100px;
height:100px;
background:#F7EC7D;
border-radius: 0 0 65px 65px;
top:83.2%;
left:75%;
position:absolute;
transform:translate(-50%,-100%);
}
.d{
width:100px;
height:100px;
background:#F7EC7D;
border-radius: 0 0 65px 65px;
top:83.5%;
left:25%;
position:absolute;
transform:translate(-50%,-100%);
}
</style>