-
Notifications
You must be signed in to change notification settings - Fork 6
/
UseHandSanitizer.html
75 lines (75 loc) · 1.41 KB
/
UseHandSanitizer.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<div a>
<div b></div>
</div>
<div c></div>
<div d></div>
<div e></div>
<div f></div>
<div g></div>
<style>
body {
background: #1a4341;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
flex-direction: column;
}
[a] {
position: absolute;
height: 140;
width: 100;
background: linear-gradient(#f3ac3c 0% 40%, #998235 40%);
transform: translateY(22px);
border-radius: 20px;
}
[b] {
position: absolute;
background: #998235;
height: 50;
width: 50;
border-radius: 50%;
transform: translateY(30px);
box-shadow: 50px 0px #f3ac3c;
}
[c] {
position: absolute;
background: #f3ac3c;
height: 25;
width: 50;
border-radius: 10px 10px 0px 0px;
transform: translateY(-55.5px);
}
[d] {
position: absolute;
background: #f3ac3c;
height: 50;
width: 20;
transform: translateY(-80px);
}
[e] {
position: absolute;
background: #f3ac3c;
height: 20;
width: 150;
transform: translate(25px, -98px);
border-radius: 100px;
}
[f] {
position: absolute;
background: #f3ac3c;
height: 40;
width: 20;
transform: translate(90px, -88px);
border-radius: 100px;
}
[g] {
position: absolute;
background: #998235;
height: 20;
width: 20;
border-radius: 50%;
transform: translate(90px, -48px);
box-shadow: 0px 30px #998235;
}
</style>