-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path069_pushowl.html
76 lines (76 loc) · 1.82 KB
/
069_pushowl.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
<!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>PushOwl</title>
<style>
* {
margin: 0;
}
section {
position: relative;
width: 400px;
height: 300px;
background: #191919;
display: flex;
justify-content: center;
}
h1, p, a {
position: absolute;
}
h1 {
width: 50px;
height: 50px;
background: #E08027;
transform: rotate(45deg);
top: 162px;
}
p {
display: flex;
justify-content: center;
align-items: center;
width: 114px;
height: 114px;
background: #E08027;
border-radius: 0 50% 50%;
top: 77px;
left: 89px;
}
p[i] {
box-shadow: 0 0 0 10px #191919;
transform: rotate(90deg);
left: 197px;
}
a {
width: 90px;
height: 90px;
background: #191919;
border-radius: 50%;
}
a[i], a[j] {
width: 12px;
height: 12px;
background: #191919;
border: 9px solid;
border-radius: 50%;
border-color: #E08027 #E08027 transparent transparent;
transform: rotate(-45deg);
top: 48px;
}
a[j] {
transform: rotate(-135deg);
top: unset;
left: 48px;
}
</style>
</head>
<body>
<section>
<h1></h1>
<p><a></a><a i></a></p>
<p i><a></a><a j></a></p>
</section>
</body>
</html>