-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
54 lines (49 loc) · 866 Bytes
/
styles.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
49
50
51
52
53
54
*{
margin: 0;
padding: 0;
}
body{
overflow-x: hidden;
overflow-y: hidden;
}
#container{
width: 100vw;
z-index: 10;
display: flex;
flex-direction: row;
justify-content: space-around;
background-color: #000000;
}
#footer{
width: 100vw;
z-index: 10;
position: absolute;
bottom: 0;
height: 5vh;
display: flex;
flex-direction: row;
justify-content: space-around;
background-color: #000000;
}
#container > button{
background-color: aquamarine;
padding: 0.3%;
margin: 0.4%;
}
#container > select{
background-color: aquamarine;
padding: 0.3%;
margin: 0.4%;
}
#footer > button{
background-color: aquamarine;
padding: 0.3%;
margin: 0.3%;
}
#container > button:hover{
background-color: rgb(243, 8, 8);
}
#renderCanvas{
width: 100vw;
height: 90vh;
}