-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
66 lines (53 loc) · 1.01 KB
/
app.css
File metadata and controls
66 lines (53 loc) · 1.01 KB
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
55
56
57
58
59
60
61
62
63
64
65
body {
background-color: #111111;
color: white;
margin: 0;
-webkit-user-select: none;
user-select: none;
}
.image-container {
width: 100%;
height: 100%;
}
.application {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: stretch;
}
.top-menu {
display: flex;
flex-direction: row;
}
.bottom-menu {
display: flex;
flex-direction: row;
justify-content: flex-start;
width: 100%;
background-color: #111111;
}
.viewport {
height: 100%;
display: flex;
flex-direction: column;
box-sizing: border-box;
padding-bottom: 1.3rem;
}
.bottom-menu {
position: fixed;
bottom: 0;
height: 1.3rem;
}
.fullscreen .bottom-menu {
display: none;
}
.fullscreen .viewport {
/*
When a canvas element takes up all the vertical space, it for some reason
causes the scrollbars to appear. There appears to be like 3 pixels of space
that cannot be removed below the actual canvas itself.
*/
padding-bottom: 3px;
}