-
Notifications
You must be signed in to change notification settings - Fork 0
/
#79-Tambourine.htm
73 lines (64 loc) · 1.33 KB
/
#79-Tambourine.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
64
65
66
67
68
69
70
71
72
73
<div></div>
<style>
body {
background: #6592CF;
}
::before,
::after {
content: "";
position: absolute;
border-radius: 50%;
z-index: 1;
}
div {
width: 170px;
height: 170px;
box-shadow: inset 0 0 0 10px #243D83;
border-radius: 50%;
position: absolute;
bottom: 55px;
left: 50%;
transform: translateX(-50%);
overflow: hidden;
}
div::after {
width: 100px;
height: 100px;
background: #6592CF;
border: 10px solid #243D83;
top: 125px;
left: 50%;
transform: translateX(-50%);
}
body::after {
width: 100px;
height: 100px;
background: #6592CF;
left: 50%;
transform: translateX(-50%);
bottom: -10px;
}
html::before,
html::after,
body:before {
width: 50px;
height: 50px;
background: radial-gradient(#243D83, #243D83 5px, #6592CF 5px, #6592CF 15px, #243D83 15px)
}
html::before,
html::after {
top: 95px;
-webkit-box-reflect: below 20px;
}
html::before {
left: 105px;
}
html::after {
right: 105px;
}
body::before {
top: 55px;
left: 50%;
transform: translateX(-50%);
}
</style>