-
Notifications
You must be signed in to change notification settings - Fork 0
/
pingouin.css
134 lines (134 loc) · 6.05 KB
/
pingouin.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
125
126
127
128
129
130
131
132
133
134
#pingouin {
position: relative;}
#pingouin * {position: absolute; width: 100%;}
#pingouin .tete {
left: calc(50% - (90px / 2) );
height: 80px;
width: 90px;
background: lightgrey;
border-radius: 50px;
z-index: 2;}
#pingouin .cheveu {
height: 25px;
width: 15px;
border: 2px solid transparent;
border-right: 1px solid #000;
border-radius: 50%;
transform: rotate(-36deg);
left: calc(50% - 12px);
top: -4px;
z-index: 1;}
#pingouin .yeux {
top: 25px;
width: 40px;
display: flex;
justify-content: space-between;
left: calc(50% - (40px / 2) );
z-index: 1;}
#pingouin .yeux div {
position: relative;
background: #FFF;
height: 17px;
width: 11px;
border-radius: 45%;}
#pingouin .yeux div div {
width: 4px;
height: 5px;
background: #000;}
#pingouin .yeux div:nth-child(1) div {
position: absolute;
top: 6px;
right: 2px;}
#pingouin .yeux div:nth-child(2) div {
top: 6px;
left: 2px;}
#pingouin .bec {
top: 50px;
left: calc(50% - (70px / 2) );
width: 70px;
z-index: 1;}
/** bec base **/
#pingouin .bec .bec-base div {background: orange;}
#pingouin .bec .bec-base div:first-child,
#pingouin .bec .bec-base div:last-child {
width: 15px;
height: 15px;
border-radius: 100%;}
#pingouin .bec .bec-base div:last-child {right: 0;}
#pingouin .bec .bec-base div:nth-child(2) {
height: 20px;
width: 85%;
border-radius: 50%;
left: calc(50% - (85% / 2));}
/** bec pointe **/
#pingouin .bec .bec-pointe div {background: darkorange;}
#pingouin .bec .bec-pointe div:first-child {
height: 20px;
border-radius: 100%;
width: 60%;
left: calc(50% - (60% / 2));}
#pingouin .bec .bec-pointe div:last-child {
width: 16%;
height: 20px;
border-radius: 100%;
left: calc(50% - (16% / 2));
top: -8px;}
#pingouin .bourrelet {
top: 20px;
height: 90px;
background: lightgray;
border-radius: 100%;
width: 110%;
left: calc(50% - (110% / 2));
z-index: 0;}
#pingouin .ailes {
z-index: 0;
position: relative;
top: 80px;
left: calc(50% - (150px / 2) );
width: 150px;}
#pingouin .ailes div {
width: 40px;
height: 150px;
background: #000;
border-radius: 50%;}
#pingouin .ailes > div:nth-child(1) {
left: -14px;
transform: rotate(15deg);}
#pingouin .ailes > div:nth-child(2) {
right: -14px;
transform: rotate(-15deg);}
#pingouin .buste {
top: 50px;
left: calc(50% - (150px / 2) );
width: 150px;
height: 240px;
background: lightgrey;
border-radius: 100% 100% 80px 80px;
z-index: 1;}
#pingouin .pattes {
top: 278px;
left: calc(50% - (150px / 2));
width: 150px;
z-index: 0;}
#pingouin .pattes div {
width: 40px;
height: 30px;
background: orange;
border-radius: 100%;}
#pingouin .pattes div div {
background: darkorange;
width: 10px;
top: 3px;}
#pingouin .pattes div:first-child {
left: 15px;
transform: rotate(20deg);}
#pingouin .pattes div:first-child div {
left: calc(50% - (10px / 2));
transform: rotate(15deg);}
#pingouin .pattes div:last-child {
right: 15px;
transform: rotate(-15deg);}
#pingouin .pattes div:last-child div {
right: calc(50% - (10px / 2));
transform: rotate(-20deg);}