-
Notifications
You must be signed in to change notification settings - Fork 0
/
#56-Skull.htm
96 lines (84 loc) · 1.5 KB
/
#56-Skull.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
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
<div class="a"></div>
<div class="b"></div>
<div class="c"></div>
<div class="d"></div>
<div class="e"></div>
<div class="f"></div>
<style>
body {
background: #191919;
}
div {
position: absolute;
}
::before,
::after {
content: "";
position: absolute;
}
.a,
.b {
width: 60px;
height: 100px;
border-radius: 100px 0 0 18px;
background: #4F77FF;
top: 28.3%;
left: 35%;
}
.a::after,
.b::after {
width: 40px;
height: 40px;
border-radius: 100%;
background: #191919;
top: 52.5%;
left: 24.5%;
}
.b::after {
left: 9%;
}
.a::before {
width: 20px;
height: 20px;
border-radius: 100%;
background: #191919;
top: 91%;
left: 82.5%;
z-index: 1;
}
.b {
border-radius: 0 100px 18px 0;
left: 50%
}
.c {
width: 40px;
height: 30px;
border-radius: 0 0 0 20px;
background: #4F77FF;
top: 61.6%;
left: 40%;
}
.c::after {
width: 40px;
height: 30px;
border-radius: 0 0 20px 0;
background: #4F77FF;
left: 100%;
}
.d,
.e,
.f {
width: 10px;
height: 10px;
background: #191919;
border-radius: 10px 10px 0 0;
top: 68.1%;
left: 45%
}
.e {
left: 48.7%
}
.f {
left: 52.5%;
}
</style>