diff options
| author | Julian Hurst <julian.hurst92@gmail.com> | 2021-07-24 10:40:39 +0200 |
|---|---|---|
| committer | Julian Hurst <julian.hurst92@gmail.com> | 2021-07-24 10:40:39 +0200 |
| commit | ae9cc2ac49b976992f2e924ef8d30bd540ce2ec0 (patch) | |
| tree | 1f379c05670389e8a788c62a9853ade06ed3442b /static | |
| parent | 513b1f4d83d8267f9b8c7299822c40e9d4d77196 (diff) | |
| download | grimtube-ae9cc2ac49b976992f2e924ef8d30bd540ce2ec0.tar.gz | |
Add support for dlsrv streaming
Diffstat (limited to 'static')
| -rw-r--r-- | static/dark.css | 17 | ||||
| -rw-r--r-- | static/style.css | 4 |
2 files changed, 17 insertions, 4 deletions
diff --git a/static/dark.css b/static/dark.css index f204117..fd89ec2 100644 --- a/static/dark.css +++ b/static/dark.css @@ -1,9 +1,11 @@ a { - color: orange; + /*color: orange;*/ + color: slategray; } a:hover { - color: darkorange; + /*color: darkorange;*/ + color: darkslategray; } p { @@ -15,6 +17,11 @@ li { } body { + background-color: #111; + margin: 0; +} + +div.content { margin: 0 auto; margin-top: 10px; max-width: 80ex; @@ -71,3 +78,9 @@ select#lang { select#order { width: calc(20% - 10px); } + +video { + /*max-width: 100vh;*/ + height: 100vh; + /*max-height: 100vh;*/ +} diff --git a/static/style.css b/static/style.css index 420e9c2..45ca754 100644 --- a/static/style.css +++ b/static/style.css @@ -1,3 +1,3 @@ -@import "light.css" screen; +@import "dark.css" screen; -@import "dark.css" screen and (prefers-color-scheme: dark); +/*@import "dark.css" screen and (prefers-color-scheme: dark);*/ |
