diff options
Diffstat (limited to 'server/src/routes/ui/style/player.css')
-rw-r--r-- | server/src/routes/ui/style/player.css | 65 |
1 files changed, 64 insertions, 1 deletions
diff --git a/server/src/routes/ui/style/player.css b/server/src/routes/ui/style/player.css index d4a14ab..3468a38 100644 --- a/server/src/routes/ui/style/player.css +++ b/server/src/routes/ui/style/player.css @@ -1,4 +1,67 @@ - video { width: 100%; } + +input { + color: white; + background-color: black; +} +option { + font-family: "Cantarell", sans-serif; +} + +input[type="submit"] { + width: 30%; + justify-self: center; + border: 0px solid transparent; + background-color: var(--accent-dark); + border-radius: 8px; +} +fieldset { + background-color: var(--background-light); + border-radius: 8px; +} + +form.playerconf { + display: grid; + grid-template-areas: + "h h h" + "v a s" + "b b b"; + gap: 1em; + grid-template-columns: auto auto auto; + grid-template-rows: 3em auto 5em; +} + +legend { + font-size: 1.5em; +} + +fieldset label { + transition: color 0.2s; +} +fieldset label:hover { + color: var(--accent-light); +} + +.playerconf h2 { + grid-area: h; + text-align: center; +} +.playerconf h3 { + grid-area: h; + text-align: center; +} +.playerconf .video { + grid-area: v; +} +.playerconf .audio { + grid-area: a; +} +.playerconf .subtitles { + grid-area: s; +} +.playerconf input[type="submit"] { + grid-area: b; + font-size: 1.5em; +} |