-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path11-10-23.html
47 lines (47 loc) · 906 Bytes
/
11-10-23.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
<div></div>
<style>
body {
display: flex;
align-items: center;
justify-content: center;
background: #DA30D4
}
div {
width: 100px;
height: 100px;
background: #DA30D4;
border-radius: 100%;
border: 30px solid #0C0C49;
position: relative;
z-index: 5;
z-index: revert-layer;
}
div::before {
content: " ";
display: block;
white-space: pre;
width: 60px;
height: 60px;
margin-left: -90px;
margin-top: -10px;
border-radius: 100%;
background: #DA30D4;
border: 30px solid #0C0C49;
position: absolute;
z-index: -1;
}
div::after {
content: " ";
display: block;
white-space: pre;
width: 60px;
height: 60px;
margin-left: 70px;
margin-top: -10px;
border-radius: 100%;
background: #DA30D4;
border: 30px solid #0C0C49;
position: absolute;
z-index: -1;
}
</style>