-
Notifications
You must be signed in to change notification settings - Fork 0
/
075_hippo.html
89 lines (89 loc) · 1.97 KB
/
075_hippo.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hippo</title>
<style>
* {
margin: 0;
}
section {
position: relative;
width: 400px;
height: 300px;
background: #191919;
}
p,a,b,i {
position: absolute;
}
p {
width: 10px;
height: 20px;
background: #000000;
border: 5px solid #FE5F55;
border-radius: 50%;
transform: rotate(-45deg);
top: 70px;
left: 150px;
}
p[i] {
transform: rotate(45deg);
left: 230px;
}
a {
width: 130px;
height: 150px;
background: #FE5F55;
border-radius: 60px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%)
}
a[i] {
width: 150px;
height: 100px;
background: #A64942;
border-radius: 60px 60px 50px 50px;
top: 195px;
}
b {
width: 10px;
height: 10px;
background: #000000;
border-radius: 50%;
top: 125px;
left: 160px;
}
b[i] {
left: 230px;
}
i {
width: 20px;
height: 30px;
background: #000000;
border-radius: 50%;
transform: rotate(-45deg);
top: 165px;
left: 230px;
}
i[i] {
transform: rotate(45deg);
left: 150px;
}
</style>
</head>
<body>
<section>
<p></p>
<p i></p>
<a></a>
<a i></a>
<b></b>
<b i></b>
<i></i>
<i i></i>
</section>
</body>
</html>