diff options
author | metamuffin <metamuffin@disroot.org> | 2023-01-18 19:13:36 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-01-18 19:13:36 +0100 |
commit | e24a026c58c07a2800662b9f5f4fd3f61d53c1d1 (patch) | |
tree | 91c158ff294508f903f2489f204e313700d42828 /server/src/routes/ui/style/layout.css | |
parent | 46ef75431e1d34c63a690726a8ef584d175ddd30 (diff) | |
download | jellything-e24a026c58c07a2800662b9f5f4fd3f61d53c1d1.tar jellything-e24a026c58c07a2800662b9f5f4fd3f61d53c1d1.tar.bz2 jellything-e24a026c58c07a2800662b9f5f4fd3f61d53c1d1.tar.zst |
player config works
Diffstat (limited to 'server/src/routes/ui/style/layout.css')
-rw-r--r-- | server/src/routes/ui/style/layout.css | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/server/src/routes/ui/style/layout.css b/server/src/routes/ui/style/layout.css index 0612a7e..2e54b1b 100644 --- a/server/src/routes/ui/style/layout.css +++ b/server/src/routes/ui/style/layout.css @@ -1,18 +1,18 @@ @font-face { - font-family: 'Cantarell'; - src: url(/assets/cantarell.woff2) format('woff2'); + font-family: "Cantarell"; + src: url(/assets/cantarell.woff2) format("woff2"); } * { - color: white; + color: rgb(218, 218, 218); font-family: "Cantarell", sans-serif; - font-weight: 300; + font-weight: 500; margin: 0px; padding: 0px; } body { - background-color: #1a1a1a; + background-color: #0f0f0f; width: 100vw; } @@ -23,7 +23,7 @@ nav { padding: 1em; width: calc(100vw - 2em); height: 2em; - background-color: #41414144; + background-color: #27272744; } nav h1 { @@ -42,4 +42,13 @@ nav h1 { padding: 1em; color: rgb(255, 117, 117); font-family: monospace; -}
\ No newline at end of file +} + +select, +input { + color: white; + background-color: black; +} +option { + font-family: "Cantarell", sans-serif; +} |