summaryrefslogtreecommitdiff
path: root/mediabrowser/assets/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'mediabrowser/assets/style.css')
-rw-r--r--mediabrowser/assets/style.css63
1 files changed, 63 insertions, 0 deletions
diff --git a/mediabrowser/assets/style.css b/mediabrowser/assets/style.css
new file mode 100644
index 0000000..04e56a7
--- /dev/null
+++ b/mediabrowser/assets/style.css
@@ -0,0 +1,63 @@
+body {
+ background-color: black;
+ color: white;
+ font-family: sans;
+}
+
+
+a {
+ color: #fefefe;
+ text-decoration: none;
+}
+
+a:visited {
+ color: gray;
+}
+
+body.watch {
+ text-align: center;
+}
+
+body.watch #infos {
+ width: 300px;
+ height: 80px;
+ margin: auto;
+ border: 1px dotted gray;
+ visibility: hidden;
+}
+body.watch #infos a {
+ float: left;
+}
+body.watch #logging {
+ height: 200px;
+ font-family: monospace;
+ color: white;
+ text-align: left;
+ font-size: 12px;
+ visibility: hidden;
+ overflow-y: scroll;
+}
+
+body.watch #trigger:hover #logging {
+ visibility: visible;
+}
+
+body.watch #trigger:hover #infos {
+ visibility: visible;
+}
+
+body.list {
+ font-size: 36px;
+}
+
+body.list > div {
+ vertical-align: middle;
+ overflow: hidden;
+ height: 64px;
+ white-space: nowrap;
+}
+
+body.list > div:hover {
+ background-color: #1a1a1a;
+}
+