-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path#62-Sunset.htm
53 lines (48 loc) · 995 Bytes
/
#62-Sunset.htm
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
<div class="d"></div>
<div class="c"></div>
<div class="r"></div>
<div class="l"></div>
<style>
* {
box-sizing: border-box;
}
body {
background: #191919;
}
.d {
width: 150px;
height: 150px;
border-radius: 50% 50% 0 0;
background: #F2AD43;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -65%)
}
.c {
width: 60px;
height: 60px;
border-radius: 50%;
background: #FFF58F;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -20%);
}
.l,
.r {
width: 100px;
height: 100px;
background: #824B20;
border-radius: 100% 2px 20px 0;
position: absolute;
top: 50%;
left: 56.2%;
transform: translate(-50%, 0)
}
.r {
left: 31.2%;
transform: rotate(90deg);
background: #E08027;
}
</style>