summaryrefslogtreecommitdiff
path: root/kvmd/web/css
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2018-07-11 23:23:19 +0000
committerDevaev Maxim <[email protected]>2018-07-11 23:32:34 +0000
commit498d8b1ecfdd0651d7808b85875a477a18bef380 (patch)
tree903cd4ce5241e5e1178595b4754053e3b8f19580 /kvmd/web/css
parent00097cbb98382cda2a902bae3e54cb8adc92f38e (diff)
improved web
Diffstat (limited to 'kvmd/web/css')
-rw-r--r--kvmd/web/css/main.css41
1 files changed, 41 insertions, 0 deletions
diff --git a/kvmd/web/css/main.css b/kvmd/web/css/main.css
new file mode 100644
index 00000000..65169379
--- /dev/null
+++ b/kvmd/web/css/main.css
@@ -0,0 +1,41 @@
+.stream-box {
+ box-sizing: border-box;
+ display: inline-block;
+ background-color: #e5e5f5;
+ padding: 1em;
+ text-align: left;
+}
+.stream-box .stream-image {
+ width: 720px;
+ height: 576px;
+ 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 {
+}