-
Notifications
You must be signed in to change notification settings - Fork 0
/
#73-Happy-Tiger.htm
104 lines (92 loc) · 1.78 KB
/
#73-Happy-Tiger.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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<div class="a"></div>
<div class="c"></div>
<div class="b">
<div class="d"></div>
<div class="e"></div>
</div>
<style>
body {
background: #F3AC3C
}
div {
position: absolute;
}
::before,
::after {
content: '';
position: absolute;
}
.a,
.c {
width: 40px;
height: 40px;
background: #1A4341;
border-radius: 50%;
border: 10px solid #998235;
top: 21.7%;
left: 28.7%
}
.d {
height: 0;
width: 0;
border-style: solid;
border-width: 25px 25px 25px;
border-color: #1A4341 transparent transparent;
left: 50px;
z-index: 1;
}
.c {
left: 56.2%;
}
.b {
width: 150px;
height: 150px;
background: #998235;
border-radius: 80px 80px 65px 65px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
overflow: hidden;
}
.b::before,
.b::after {
width: 20;
height: 20;
background: #1A4341;
border-radius: 50%;
top: 40%;
left: 16.5%
}
.b::after {
left: 70%
}
.e {
width: 100px;
height: 40px;
background: #FFF;
top: 63%;
left: 16.5%;
border-radius: 20px 20px 50px 50px
}
.e::before,
.e::after {
height: 10px;
width: 20px;
border-radius: 0 0 150px 150px;
border-style: solid;
border-width: 0 10px 10px 10px;
border-color: #1A4341;
top: 25%;
left: 15%
}
.e::after {
left: 45%;
}
body::after {
width: 10px;
height: 20px;
background: #1A4341;
left: 48.7%;
top: 53.2%
}
</style>