summaryrefslogtreecommitdiff
path: root/static/base.css
diff options
context:
space:
mode:
authorLinnnus <[email protected]>2024-03-20 18:38:00 +0100
committerLinnnus <[email protected]>2024-03-20 18:42:04 +0100
commit87d67a8c0ddfb2843bdcf52513b6acf62ed3d471 (patch)
tree42a0a16cfe1db05618ecc6c00a092b52c099f8d1 /static/base.css
parentbe94564eba6c54408b1eba787112f97ff69d68ae (diff)
Make site dark as default
The entire site-design is going to be pretty dark, as gaming sites generally are. I honestly don't know why I went with such light colors to begin with...
Diffstat (limited to 'static/base.css')
-rw-r--r--static/base.css8
1 files changed, 7 insertions, 1 deletions
diff --git a/static/base.css b/static/base.css
index 1571567..65faad2 100644
--- a/static/base.css
+++ b/static/base.css
@@ -13,6 +13,9 @@ html, body {
margin: 0;
font-family: Helvetica, Arial, sans-serif;
+
+ color: white;
+ background-color: #2a2626;
}
/* Sticky footer
@@ -25,8 +28,11 @@ body {
}
.navbar {
+ /* A lot of spacing gives a kind of modern look. */
padding: 1.5rem;
- background-color: #eee;
+
+ /* Make the navbar slightly darker than the default background color to "lift it up". */
+ background-color: #1c1c1c;
display: flex;
flex-direction: row;