-
Notifications
You must be signed in to change notification settings - Fork 0
/
#59-Earth.htm
63 lines (56 loc) · 1.2 KB
/
#59-Earth.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
<div a>
<ul>
<li>
<li>
<li>
<li>
</ul>
</div>
<div b>
<style>
body {
background: #191919
}
div {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
[a] {
width: 150px;
height: 150px;
border-radius: 50%;
overflow: hidden;
}
ul {
position: absolute;
top: -16;
left: -40;
list-style: none
}
li {
width: 150px;
height: 30px;
background: #4F77FF;
margin: 0 0 10px 0
}
[a]:after {
content: '';
position: absolute;
width: 210px;
height: 210px;
border: 10px solid #191919;
border-radius: 50%;
top: 50%;
right: 30px;
box-sizing: border-box;
transform: translateY(-50%);
-webkit-box-reflect: right -90px;
}
[b] {
width: 10px;
height: 150px;
background: #191919;
}
</style>