-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsunset.html
70 lines (70 loc) · 1.8 KB
/
sunset.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sunset</title>
<style>
body {
display: grid;
place-items: center;
width: 100%;
height: 100%;
background-color: #191919;
position: relative;
}
.outer-frame {
width: 150px;
height: 200px;
background-color: #F2AD43;
border-top-left-radius: 100px;
border-top-right-radius: 100px;
border-bottom-left-radius: 50px;
border-bottom-right-radius: 50px;
margin-top: -15px;
z-index: 0;
position: absolute;
overflow:hidden;
display: grid;
place-items: center;
}
.inner-circle {
width: 55px;
height: 55px;
background: #FFF58F;
border-radius: 50%;
position:absolute;
z-index: 1;
margin-top: 20px;
}
.left-circle {
width: 170px;
height: 170px;
background: #E08027;
border-radius: 50%;
position:absolute;
z-index: 2;
margin-top: 165px;
margin-left: -125px;
}
.right-circle {
width: 200px;
height: 200px;
background: #824B20;
border-radius: 50%;
position:absolute;
z-index: 2;
margin-top: 200px;
margin-left: 130px;
}
</style>
</head>
<body>
<div class="outer-frame">
<div class="inner-circle"></div>
<div class="left-circle"></div>
<div class="right-circle"></div>
</div>
</body>
</html>