-
Notifications
You must be signed in to change notification settings - Fork 6
/
CoronaVirus.html
58 lines (55 loc) · 1.03 KB
/
CoronaVirus.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
<div a></div>
<div b></div>
<div e></div>
<div c>
<div d></div>
</div>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
background: #1a4341;
}
[a] {
background: #f3ac3c;
width: 10;
height: 180;
position: absolute;
transform: translateY(-10px);
border-radius: 100px;
}
[b] {
background: #f3ac3c;
width: 10;
height: 180;
position: absolute;
transform: translateX(7px) translateY(-4px) rotate(60deg);
border-radius: 100px;
}
[e] {
background: #f3ac3c;
width: 10;
height: 180;
position: absolute;
transform: translateX(8px) translateY(4px) rotate(120deg);
border-radius: 100px;
}
[c] {
position: absolute;
background: #f3ac3c;
width: 100;
height: 100;
border-radius: 50%;
}
[d] {
background: #998235;
height: 30;
width: 30;
border-radius: 50%;
position: relative;
top: 20;
left: 20;
box-shadow: 40px -10px 0 -10px #998235, 15px 40px 0 -5px #998235;
}
</style>