-
Notifications
You must be signed in to change notification settings - Fork 0
/
#47-Corona-Virus.htm
100 lines (89 loc) · 1.73 KB
/
#47-Corona-Virus.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<div class="a"></div>
<div class="b"></div>
<div class="c"></div>
<div class="d"></div>
<style>
::before,
::after {
content: '';
position: absolute;
}
body {
background: #1A4341;
}
div {
position: absolute;
}
.a {
width: 100px;
height: 100px;
border-radius: 100%;
background: #F3AC3C;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.a::after {
width: 30px;
height: 30px;
border-radius: 100%;
background: #998235;
top: 20%;
left: 20%;
}
.a::before {
width: 20px;
height: 20px;
border-radius: 100%;
background: #998235;
top: 65%;
left: 40%;
}
.b {
width: 10px;
height: 55px;
background: #F3AC3C;
border-radius: 5px 5px 0 0;
top: 16.5%;
left: 48.8%
}
.b::before {
width: 10px;
height: 10px;
border-radius: 100%;
background: #998235;
top: 70px;
left: 24.5px;
}
.b::after {
width: 10px;
height: 51px;
background: #F3AC3C;
border-radius: 0 0 5px 5px;
top: 129px;
z-index: -1;
}
.c,
.d {
width: 10px;
height: 52px;
background: #F3AC3C;
border-radius: 5px 5px 0 0;
transform: rotate(60deg);
top: 28.79%;
left: 64.7%;
}
.d {
transform: rotate(120deg);
top: 53.5%;
z-index: -1;
}
.c::after,
.d::after {
width: 10px;
height: 51px;
background: #F3AC3C;
border-radius: 0 0 5px 5px;
top: 129px;
}
</style>