From 2a5bc9636647c1beeb58f3f0b3f2bcecb3509d16 Mon Sep 17 00:00:00 2001 From: Yves Fischer Date: Mon, 30 Nov 2015 20:14:16 +0100 Subject: poc --- mediabrowser/assets/style.css | 63 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 mediabrowser/assets/style.css (limited to 'mediabrowser/assets/style.css') 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; +} + -- cgit v1.2.1