blob: 42ec8573d14c9502c0df5606201bfb501aa2418d (
plain)
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
|
body {
font-size: 15px;
}
p {
margin: 0 0 0.8em;
}
.texture-definition {
display: none;
}
#minimap {
transform: rotate(180deg);
position: absolute;
left: 0;
top: 0;
padding: 10px;
}
#log {
position: absolute;
left: 0;
top: 0;
padding: 10px;
margin-top: 125px;
font-family: monospace;
color: yellow;
font-size: 14px;
}
#output-wrapper {
position: relative;
width: 960px;
height: 720px;
margin-top: 0.5em;
}
.controls {
margin-top: 0.5em;
}
.slider {
margin-right: 0.5em;
width: 100%;
}
.form-switch {
font-size: 0.9em;
}
.btn {
height: 3em;
width: 23%;
touch-action: manipulation;
}
|