-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path#77 - Notes.html
90 lines (90 loc) · 1.24 KB
/
#77 - Notes.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<div>
<div a></div>
<div b></div>
</div>
<div>
<div a></div>
<div b></div>
</div>
<div>
<div a></div>
<div b></div>
</div>
<div>
<div a></div>
<div b></div>
</div>
<div c></div>
<div d></div>
<div e></div>
<style>
*{
background:#191919;
}
div:nth-child(1) {
position:fixed;
top:85;
left:27.5;
}
div:nth-child(2) {
position:fixed;
top:85;
left:97.5;
}
div:nth-child(3) {
position:fixed;
top:85;
left:167.5;
}
div:nth-child(4) {
position:fixed;
top:85;
left:237.5;
}
div>[a]{
position:absolute;
width:50;
height:40;
background: #FE5F55;
border-radius:50%;
}
div>[b]{
position:absolute;
width:10;
height:100;
background: #FE5F55;
top:5;
left:67.5;
}
div:nth-child(3)>[a]{
background: #A64942;
}
div:nth-child(3)>[b]{
background: #A64942;
}
[c]{
position:fixed;
top:90;
right:55;
background:#FE5F55;
width:30;
height:10;
-webkit-box-reflect: below 10px;
}
[d]{
position:fixed;
top:90;
right:125;
background:#A64942;
width:30;
height:10;
}
[e]{
position:fixed;
top:90;
left:105;
background:#FE5F55;
width:60;
height:10;
}
</style>