aboutsummaryrefslogtreecommitdiff
path: root/server/src/routes/ui/style
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/routes/ui/style')
-rw-r--r--server/src/routes/ui/style/layout.css23
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;
+}