-
Notifications
You must be signed in to change notification settings - Fork 6
/
Rose.html
72 lines (71 loc) · 1.33 KB
/
Rose.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
<div a></div>
<div b></div>
<div c></div>
<div d></div>
<div e></div>
<div f></div>
<style>
body {
background: #191919;
height: 100vh;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
transform: translateY(-40px);
}
[a] {
background: #4f77ff;
width: 30;
height: 30;
border-radius: 50%;
border: 10px solid #191919;
transform: translateY(0px);
z-index: 4;
}
[b] {
background: #4f77ff;
position: absolute;
width: 100;
height: 30;
transform: translateY(-30px);
border-radius: 20px 20px 40px 40px;
border: 10px solid #191919;
z-index: 3;
}
[c] {
background: #4f77ff;
position: absolute;
width: 140;
height: 30;
transform: translateY(-10.5px);
border-radius: 20px 20px 50px 50px;
border: 10px solid #191919;
z-index: 2;
}
[d] {
background: #4f77ff;
width: 100;
height: 100;
border-radius: 50%;
transform: translateY(-20px);
z-index: 1;
}
[e] {
background: #f9e492;
position: absolute;
width: 40;
height: 40;
border-radius: 50%;
transform: translateY(55px);
}
[f] {
background: #f9e492;
position: absolute;
width: 20;
height: 90;
border-radius: 50px 50px;
transform: translateY(100px);
}
</style>