-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusepastel.html
53 lines (53 loc) · 1.11 KB
/
usepastel.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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
body {
margin: 0;
width: 100%;
height: 100%;
display: grid;
place-items: center;
background-color: #19191a;
position: relative;
}
.circle {
width: 150px;
height: 150px;
background-color: #4f77ff;
border-radius: 50%;
margin-top: -50px;
position: absolute;
z-index: 1;
}
.quarter-circle {
width: 75px;
height: 75px;
border-bottom-left-radius: 100%;
z-index: 2;
margin-left: -75px;
margin-top: 25px;
background-color: #9ad5ff;
}
.rectangle {
position: absolute;
background-color: #f9e492;
width: 75px;
height: 125px;
margin-top: 75px;
margin-left: -75px;
z-index: 0;
}
div {
width: 100px;
height: 100px;
background: #dd6b4d;
}
</style>
</head>
<body>
<div class="circle"></div>
<div class="rectangle"></div>
<div class="quarter-circle"></div>
</body>
</html>