-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathFroggy.html
More file actions
61 lines (61 loc) · 1.01 KB
/
Copy pathFroggy.html
File metadata and controls
61 lines (61 loc) · 1.01 KB
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
<div a>
<div b>
<div c>
<div d></div>
<div e>
<div f></div>
</div>
</div>
</div>
</div>
<style>
* {
margin: 0;
padding: 0;
}
[a] {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background: #293462;
}
[b] {
width: 150px;
height: 100px;
background: radial-gradient(
circle at 50% -130px,
#fe5f55 200px,
#a64942 200px
);
transform: translateY(10px);
border-radius: 50px;
}
[c] {
display: flex;
align-items: center;
justify-content: center;
transform: translateX(-35px);
-webkit-box-reflect: right -80px;
}
[d] {
height: 10px;
width: 10px;
background: #293462;
border-radius: 50%;
position: absolute;
z-index: 5;
box-shadow: 25px 55px #293462;
}
[e] {
height: 30px;
width: 30px;
background: #fff1c1;
border-radius: 50%;
position: absolute;
border: 10px solid #fe5f55;
}
[f] {
height: 10px;
}
</style>