blob: 832a3645c2318a489e4422a2eaadcdd1bc44c467 (
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
|
.stream-box {
box-sizing: border-box;
display: inline-block;
background-color: #e5e5f5;
padding: 1em;
text-align: left;
}
.stream-box .stream-image {
width: 640px;
height: 480px;
border: 1px solid grey;
display: inline-block;
}
.session-opened {
}
.session-closed {
color: #ff3d40;
}
div#power-led, div#hdd-led {
border-radius: 50%;
border: 1px solid grey;
width: 16px;
height: 16px;
}
div.power-led-on {
background: #00ce00;
}
div.power-led-off {
background: #adceab;
}
div.hdd-led-on {
background: #ff373a;
}
div.hdd-led-off {
background: #ffcdce;
}
button#power-button, button#reset-button {
}
|