-
Notifications
You must be signed in to change notification settings - Fork 5
/
theme.css
76 lines (69 loc) · 1020 Bytes
/
theme.css
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
66
67
68
69
70
71
72
73
74
75
76
html, body {
margin: 0px;
width: 100%;
height: 100%;
font-family: Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;
font-size:14px;
background-color: #111;
}
#menu {
float: right;
width: 30%;
height: 100%;
overflow: auto;
background-color: #DDD;
}
#cameras {
overflow: auto;
right: 30%;
left: 0%;
height: 100%;
text-align: center;
}
#mainCamera {
width: 100%;
}
.fullscreen #mainCamera {
height: 99%;
}
.fullscreen #cameras {
right: 0%;
}
.fullscreen #menu {
display: none;
}
.printer {
margin: 2%;
padding: 2%;
width: 95%;
background-color: #00F;
color: white;
font-size: 1.2em;
}
.printer big {
font-size: 1.5em;
}
.printer .filename {
word-break: break-all;
}
#printers .error {
margin: 1em;
padding: 1em;
background-color: #FCC;
}
#rightbottom {
position: absolute;
bottom: 0em;
width: 30%;
background-color: #DDD;
}
#controls {
margin: 1em;
}
#controls .slider {
width: 100%;
margin-bottom: 0.5em;
}
#homepage {
text-align: center;
}