-
Notifications
You must be signed in to change notification settings - Fork 1
/
#29 - Suffocate.html
59 lines (56 loc) · 948 Bytes
/
#29 - Suffocate.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
48
49
50
51
52
53
54
55
56
57
58
59
<div>
<div a> </div>
<div b> </div>
<div d> </div>
<div e> </div>
</div>
<style>
body{
background:#F3AC3C;
display:flex;
justify-content:center;
align-items:center;
}
div{
width: 200px;
height: 200px;
background: #1A4341;
position:relative;
}
[a]{
width: 200px;
height: 200px;
background: #F3AC3C;
position:absolute;
top:-100;
left:-100;
border-radius: 0 0 50% 0;
}
[b]{
width: 200px;
height: 200px;
background: #F3AC3C;
position:absolute;
top:100;
left:100;
border-radius:50% 0 0 0;
}
[d]{
width: 200px;
height: 200px;
background: #F3AC3C;
position:absolute;
top:-100;
left:100;
border-radius: 0 0 0 50%;
}
[e]{
width: 200px;
height: 200px;
background: #F3AC3C;
position:absolute;
top:100;
left:-100;
border-radius: 0 50% 0 0 ;
}
</style>