-
Notifications
You must be signed in to change notification settings - Fork 6
/
Skull.html
74 lines (73 loc) · 1.92 KB
/
Skull.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
<div x>
<div a>
<div c></div>
<div>
<div b></div>
<div d>
<div>
<div e>
<div></div>
<style>
* {
margin: 0;
}
body {
background: #191919;
width: 400;
height: 300;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
div {
position: absolute;
}
[a] {
position: relative;
background: #4f77ff;
width: 120;
height: 100;
top: -15;
border-radius: 100px 100px 20px 20px;
}
[b] {
position: relative;
z-index: -1;
background: #4f77ff;
width: 80;
height: 50;
top: 80;
left: 20;
border-radius: 20px;
}
[c] {
background: #191919;
width: 40;
height: 40;
border-radius: 50%;
transform: translate(15px, 52.5px);
box-shadow: 50px 0px #191919;
}
[d] {
background: #191919;
width: 20;
height: 20;
border-radius: 50%;
transform: translate(50px, 40.5px);
}
[e] {
background: #191919;
width: 10;
height: 10;
border-radius: 50px 50px 0px 0px;
transform: translate(-10px, 30px);
box-shadow: 15px 0px #191919, 30px 0px #191919;
}
</style>
</div>
</div>
</div>
</div>
</div>
</div>