-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
54 lines (49 loc) · 828 Bytes
/
styles.css
File metadata and controls
54 lines (49 loc) · 828 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
/* Sidepanel with controls */
.sidepanel {
position: fixed;
height: 100%;
left: 0;
top: 0;
width: 15%;
height: 100%;
z-index: 1;
color: white;
/* border: 1px solid #ffffff; Temporary for layout */
}
.scene {
position: fixed;
left: 15%;
top: 0;
width: 70%;
height: 100%;
}
.scene canvas {
float: left;
/* border: 1px solid #ffffff; */
}
/* Panel for heatmap output */
.output {
position: fixed;
left: 85%;
top: 0;
width: 15%;
height: 100%;
z-index: 1;
color: white;
/* border: 1px solid #ffffff; Temporary for layout */
}
.output canvas {
float: left;
width : 90%;
top: 0;
margin: 5%;
}
.output progress {
float: left;
width : 90%;
top: 0;
margin: 5%;
}
body {
background-color: #000000;
}