-
Notifications
You must be signed in to change notification settings - Fork 0
/
#12_wiggly_moustache.txt
85 lines (77 loc) · 1.52 KB
/
#12_wiggly_moustache.txt
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
74
75
76
77
78
79
80
81
82
83
<div c1></div>
<div c2></div>
<div c3></div>
<div s1></div>
<div s2></div>
<div s3></div>
<div es1></div>
<div es3></div>
<style>
div[c1]{
height: 50px;
width: 100px;
background-color: #D86F45;
border-radius: 0px 0px 100px 100px;
transform: translate(20px, 50%);
}
div[c2]{
height: 50px;
width: 100px;
background-color: #D86F45;
border-radius: 100px 100px 0px 0px;
transform: translate(0px, -50%);
} div[c3]{
height: 50px;
width: 100px;
background-color: #D86F45;
border-radius: 0px 0px 100px 100px;
transform: translate(-20px, 50%);
}
div[s1]{
height: 60px;
width: 60px;
background-color: #F5D6B4;
border-radius: 100px;
position:absolute;
}
div[s2]{
height: 60px;
width: 60px;
background-color: #F5D6B4;
border-radius: 100px;
position:absolute;
transform: translateX(80px);
}
div[s3]{
height: 60px;
width: 60px;
background-color: #F5D6B4;
border-radius: 100px;
position:absolute;
transform: translateX(-80px);
}
div[es1]{
position:absolute;
height: 20px;
width: 20px;
background-color: #D86F45;
border-radius: 20px;
transform: translateX(-120px);
}
div[es3]{
position:absolute;
height: 20px;
width: 20px;
background-color: #D86F45;
border-radius: 20px;
transform: translateX(120px);
}
body{
margin: 0px;
padding: 0px;
background-color: #F5D6B4;
display: flex;
align-items:center;
justify-content: center;
}
</style>