-
Notifications
You must be signed in to change notification settings - Fork 0
/
#12-Wiggly-Moustache.htm
53 lines (46 loc) · 1.03 KB
/
#12-Wiggly-Moustache.htm
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
<div class="d d1"></div>
<div class="d d2"></div>
<div class="d d3">
<style>
* {
box-sizing: border-box
}
body {
background: #F5D6B4
}
.d {
width: 100;
height: 50;
border: 20px solid #D86F45;
border-radius: 110px 110px 0 0;
border-bottom: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -100%)
}
.d1::after,
.d3:after {
content: " ";
width: 20px;
height: 20px;
border-radius: 50%;
background: #D86F45;
position: absolute;
}
.d1::after {
left: 60px;
top: 20px;
}
.d3::after {
top: 20;
left: -20
}
.d1 {
left: 70;
transform: rotate(180deg)
}
.d3 {
transform: rotate(180deg);
left: 230
}