-
Notifications
You must be signed in to change notification settings - Fork 0
/
#64-Door-Knob.htm
52 lines (46 loc) · 982 Bytes
/
#64-Door-Knob.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
<div class="c"></div><span class="c"></span>
<style>
body {
background: #191919;
}
.c {
position: absolute;
top: 50%;
left: 50%;
}
div {
width: 100px;
height: 100px;
border-radius: 50%;
border: 30px solid #824B20;
background: #E08027;
transform: translate(-50%, -50%);
}
span {
width: 80px;
height: 80px;
border-radius: 50%;
border: 20px solid rgba(0, 0, 0, 0);
border-bottom-color: #FFF58F;
border-right-color: #FFF58F;
transform: translate(-50%, -50%) rotate(45deg);
}
span::before,
span::after {
content: "";
width: 20px;
height: 20px;
border-radius: 50%;
background: #FFF58F;
position: absolute;
}
span::before {
right: -6px;
top: -5px;
}
span::after {
left: -5px;
top: 65px;
;
}
</style>