diff options
Diffstat (limited to 'server/src/routes')
-rw-r--r-- | server/src/routes/ui/style/player.css | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/server/src/routes/ui/style/player.css b/server/src/routes/ui/style/player.css index 8c980b7..deff065 100644 --- a/server/src/routes/ui/style/player.css +++ b/server/src/routes/ui/style/player.css @@ -4,9 +4,6 @@ Copyright (C) 2023 metamuffin <metamuffin.org> Copyright (C) 2023 tpart */ -video { - width: 100%; -} input { color: white; @@ -16,7 +13,6 @@ option { font-family: "Cantarell", sans-serif; } - fieldset { background-color: var(--background-light); border-radius: 8px; @@ -52,7 +48,6 @@ input[type="radio"]:checked { background-color: var(--accent-light); } - fieldset label { transition: color 0.2s; } @@ -83,3 +78,21 @@ fieldset label:hover { height: 3em; font-size: 1.5em; } + +.player nav { + opacity: 0; + transition: opacity 0.2s; +} +.player nav:hover { + opacity: 1; +} +.player #main { + margin-top: 0px; + margin-left: 0px; + margin-right: 0px; + margin-bottom: 0px; +} +.player video { + width: 100vw; + height: 100vh; +} |