-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
124 lines (114 loc) · 1.96 KB
/
index.css
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
.container {
margin: auto auto;
position: relative;
top: 170px;
width: 150px;
height: 150px;
background-color: #FF5700;
border-radius: 50%;
}
.face {
margin: auto auto;
position: relative;
top: 45px;
width: 90px;
height: 90px;
border-radius: 50%;
background-color: white;
transform: skewX(80deg);
transform: rotateX(50deg);
}
.lefteye {
position: relative;
top: -10px;
left: -17px;
margin: auto auto;
width: 15px;
height: 15px;
background-color: #FF5700;
border-radius: 50%;
}
.righteye {
position: relative;
top: -25px;
left: 17px;
margin: auto auto;
width: 15px;
height: 15px;
background-color: #FF5700;
border-radius: 50%;
}
.leftear {
margin: auto auto;
position: relative;
width: 18px;
height: 18px;
background-color: white;
border-radius: 50%;
top: -52px;
left: -40px;
}
.rightear {
margin: auto auto;
position: relative;
width: 18px;
height: 18px;
background-color: white;
border-radius: 50%;
top: -72px;
left: 38px;
}
.mouth {
margin: auto auto;
position: relative;
width: 35px;
height: 35px;
background-color: #FF5700;
border-radius: 50%;
transform: skewX(30deg);
transform: rotateX(70deg);
top: -70px;
}
.mouth-cover {
margin: auto auto;
position: relative;
width: 35px;
height: 35px;
background-color: white;
border-radius: 50%;
transform: skewX(30deg);
transform: rotateX(70deg);
top: -110px;
}
.antenna1 {
margin: auto auto;
position: relative;
width: 5px;
height: 35px;
background-color: #FFF;
top: -195px;
left: 2px;
transform: skewX(-10deg);
border-radius: 25%;
}
.antenna2 {
margin: auto auto;
position: relative;
width: 18px;
height: 5px;
background-color: #FFF;
top: -229px;
left: 12px;
transform: rotate3D(0, 0, 1, 15deg);
border-radius: 30%;
}
.antenna-dot {
margin: auto auto;
position: relative;
width: 15px;
height: 15px;
background-color: #FFF;
border-radius: 50%;
top: -235px;
left: 25px;
}