-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
50 lines (45 loc) · 849 Bytes
/
style.css
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
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
.container{
height: 100vh;
width: 100%;
background-color: #0B2429;
}
.squareContainer{
position: relative;
height: 100vh;
}
.square1{
background-color: #F3AC3C;
height: 200px;
width: 200px;
border-radius: 50%;
position: absolute;
top: 20%;
left: 50%;
}
.square2{
background-color: #998235;
height: 200px;
width: 200px;
border-bottom-left-radius: 50%;
border-top-left-radius: 50%;
border-bottom-right-radius: 50%;
position: absolute;
top: 30%;
left: 40%;
}
.square3{
background-color: #F3AC3C;
height: 200px;
width: 200px;
border-bottom-left-radius: 50%;
border-top-left-radius: 50%;
border-bottom-right-radius: 50%;
position: absolute;
top: 40%;
left: 30%;
}