From 87d67a8c0ddfb2843bdcf52513b6acf62ed3d471 Mon Sep 17 00:00:00 2001 From: Linnnus Date: Wed, 20 Mar 2024 18:38:00 +0100 Subject: 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... --- static/base.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'static/base.css') 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; -- cgit v1.2.3