-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (54 loc) · 825 Bytes
/
style.css
File metadata and controls
54 lines (54 loc) · 825 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
46
47
48
49
50
51
52
53
54
body, html, canvas {
width: 100%;
height: 100%;
margin: 0;
font-family: sans-serif;
}
#images {
display: none;
}
#stats {
position: absolute;
top: 10px;
left: 10px;
width: 200px;
height: 200px;
padding: 5px;
background: white;
border-radius: 10px;
display: none;
}
#rocketBuilder {
position: absolute;
top: 10px;
left: 10px;
padding: 10px;
background: white;
border-radius: 10px;
height: calc(100% - 40px);
width: 400px;
display: none;
user-select: none;
}
.heading {
font-size: 30px;
margin: 0;
}
.button {
padding: 10px 20px;
background: #2d4a80;
color: white;
user-select: none;
cursor: pointer;
border-bottom: 4px solid #142a52;
border-right: 4px solid #142a52;
}
.button:active {
border: transparent;
}
#switchRoom {
font-size: 30px;
position: absolute;
bottom: 10px;
right: 10px;
}