-
Notifications
You must be signed in to change notification settings - Fork 0
/
#69-PushOwl.htm
46 lines (42 loc) · 972 Bytes
/
#69-PushOwl.htm
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
<div class="d"></div>
<div class="c"></div>
<style>
body {
background: #191919;
}
div {
width: 114px;
height: 114px;
background: radial-gradient(#191919 45px, #E08027 10px);
border-radius: 0 50% 50% 50%;
position: absolute;
top: 25.5%;
left: 22.2%;
}
.c {
border-radius: 50% 0 50% 50%;
left: 49.2%;
box-shadow: 0 0 0 10px #191919;
}
div::before {
content: "";
width: 12px;
height: 12px;
border: 9px solid #E08027;
border-radius: 50%;
position: absolute;
top: 42%;
left: 37%;
clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}
body::before {
content: "";
position: absolute;
width: 50px;
height: 50px;
background: #E08027;
top: 62.2%;
left: 50%;
transform: translate(-50%, -50%) rotate(45deg);
}
</style>