-
Notifications
You must be signed in to change notification settings - Fork 6
/
HappyTiger.html
83 lines (83 loc) · 1.56 KB
/
HappyTiger.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
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 a>
<div b></div>
<div c>
<div d></div>
<div e></div>
</div>
<div sq></div>
</div>
<div ear></div>
<style>
body{
background:#F3AC3C;
display:flex;
align-items:center;
justify-content:center;
}
[a]{
position:relative;
background:#998235;
width:150;
height:150;
border-radius: 50% 50% 60px 60px;
display:flex;
align-items:center;
justify-content:center;
overflow:hidden;
}
[b]{
background:#1A4341;
width:20;
height:20;
border-radius:50%;
transform:translate(-40px,-5px);
-webkit-box-reflect:right 60px;
}
[c]{
background:#FFFFFF;
width:100;
height:40;
position:absolute;
transform:translate(0,40px);
border-radius:40px 40px 100px 100px;
display:flex;
align-items:center;
justify-content:center;
}
[d]{
background:#1A4341;
width:10;
height:30;
position:absolute;
transform:translate(0px,-15px);
}
[e]{
position:absolute;
width:20;
height:10;
background:;
border-radius:0px 0px 80px 80px;
transform:translate(-15px,0px);
border:10px solid #1A4341;
border-top:transparent;
-webkit-box-reflect:right -10px;
}
[sq]{
position:absolute;
background:#1A4341;
width:50;
height:50;
transform:translate(0px,-85px) rotate(45deg) ;
}
[ear]{
position:absolute;
background:#1A4341;
width:40;
height:40;
border-radius:50%;
transform:translate(-55px,-55px);
border:10px solid #998235;
z-index:-5;
-webkit-box-reflect:right 50px;
}
</style>