-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (40 loc) · 785 Bytes
/
style.css
File metadata and controls
45 lines (40 loc) · 785 Bytes
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
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Gilroy';
}
html,body {
height:100%;
width:100%;
}
#page1{
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
background-color: rgb(151, 255, 255);
}
#page2{
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
background-color: rgb(255, 162, 128);
}
#page3{
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
background-color: rgb(255, 157, 177);
}
#circle{
height: 300px;
width: 300px;
border-radius: 50%;
background: radial-gradient(rgb(0, 64, 255),rgb(82, 212, 255));
}