-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpenguin.html
123 lines (111 loc) · 3.02 KB
/
penguin.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Penguin</title>
<style>
body {
background: #f0f0f0;
}
.wrapper {
display: flex;
justify-content: center;
margin-top: 30px;
}
.penguin {
display: flex;
flex-direction: column;
align-items: center;
}
.penguin__head {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100px;
height: 100px;
background: #333;
border-radius: 100%;
}
.penguin__eyes {
display: flex;
justify-content: space-between;
width: 60px;
}
.penguin__eye {
position: relative;
width: 15px;
height: 20px;
background: #fff;
border-radius: 100%;
}
.penguin__eye:after {
content: "";
position: absolute;
width: 10px;
height: 15px;
background: #333;
border-radius: 100%;
}
.penguin__beak {
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 15px solid orangered;
}
.penguin__body {
display: flex;
align-items: center;
justify-content: center;
width: 150px;
height: 200px;
margin-top: -30px;
background: #333;
border-radius: 100%;
}
.penguin__belly {
width: 100px;
height: 150px;
background: #fff;
border-radius: 100%;
}
.penguin__feets {
display: flex;
flex-direction: row;
justify-content: space-between;
width: 70px;
margin-top: -5px;
}
.penguin__feet {
width: 30px;
height: 15px;
background: orangered;
border-top-left-radius: 30px;
border-top-right-radius: 30px;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="penguin">
<div class="penguin__head">
<div class="penguin__eyes">
<div class="penguin__eye"></div>
<div class="penguin__eye"></div>
</div>
<div class="penguin__beak"></div>
</div>
<div class="penguin__body">
<div class="penguin__belly"></div>
</div>
<div class="penguin__feets">
<div class="penguin__feet"></div>
<div class="penguin__feet"></div>
</div>
</div>
</div>
</body>
</html>