[b86468]: / v3 / css / derived.css

Download this file

32 lines (27 with data), 367 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
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
margin: 0;
height: 100vh;
overflow: hidden;
}
.top-nav {
height: 40px;
border-bottom: 1px solid #eee;
padding: 5px;
}
.main-area {
position: absolute;
top: 40px;
bottom: 0;
left: 0;
width: 100vw;
}
.viewer-container {
width: 100%;
height: 100%;
}