-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path#64-Door Knob.htm
More file actions
67 lines (61 loc) · 1.32 KB
/
#64-Door Knob.htm
File metadata and controls
67 lines (61 loc) · 1.32 KB
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
<div class="outter">
<div class="inner"></div>
<div class="inner-inner"></div>
<div class="ball1"></div>
<div class="ball2"></div>
</div>
<style>
body {
background: #191919;
}
div.outter {
width: 160px;
height: 160px;
border-radius: 50%;
background: #824B20;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
div.inner {
width: 100px;
height: 100px;
border-radius: 50%;
background: #E08027;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
div.inner-inner {
width: 80px;
height: 40px;
background-color: transparent;
border-bottom-left-radius: 110px;
border-bottom-right-radius: 110px;
border: 20px solid #FFF58F;
border-top: 0;
position: absolute;
top: 68%;
left: 50%;
transform: translate(-50%, -50%);
}
div.ball1,
div.ball2 {
width: 20px;
height: 20px;
background: #FFF58F;
border-radius: 50%;
}
.ball1 {
position: absolute;
left: 75%;
top: 44%;
}
.ball2 {
position: absolute;
left: 12.5%;
top: 44%;
}
</style>