-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathindex.css
More file actions
39 lines (36 loc) · 686 Bytes
/
index.css
File metadata and controls
39 lines (36 loc) · 686 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
html, body {
margin: 0px;
padding: 0px;
overflow-x: hidden;
}
.container {
width: 100vw;
height: 100vh;
margin: 0px;
padding: 0px;
background: #0f2027;
background: -webkit-linear-gradient(to top, #0f2027, #203a43, #2c5364);
background: linear-gradient(to top, #0f2027, #203a43, #2c5364);
color: rgb(49, 98, 127);
}
.canvas {
width: 100%;
height: 100%;
position: absolute;
top: 0px;
left: 0px;
}
.source_btn {
position: absolute;
bottom: 30px;
right: 30px;
z-index: 10;
width: fit-content;
height: fit-content;
border-radius: 50px;
display: flex;
border: 1px solid #FFFFFF;
cursor: pointer;
background: inherit;
padding: 10px;
}