made it dark mode could be made dynamic at some point, but I mean that's why I have source control right, no need to do it now
crispy-caesus 114518720+crispy-caesus@users.noreply.github.com
Mon, 17 Feb 2025 14:43:58 +0100
1 files changed,
7 insertions(+),
7 deletions(-)
jump to
M
static/index.css
→
static/index.css
@@ -7,9 +7,9 @@ }
/* Body styling */ body { - background-color: #f5f5f5; + background-color: #1e2021; font-family: Arial, sans-serif; - color: #333; + color: #c8c3bc; line-height: 1.6; display: flex; justify-content: center;@@ -22,8 +22,8 @@ .container {
max-width: 35em; width: 90%; padding: 1em; - border: 2px solid #ccc; - background-color: #fff; + border: 2px solid #3e4446; + background-color: #181a1b; margin-top: 1em; text-align: center; }@@ -58,7 +58,7 @@ margin: 1em 0;
} a { - color: #0077cc; + color: #52b7ff; text-decoration: none; font-weight: bold; }@@ -71,7 +71,7 @@ /* Footer styling */
footer { margin-top: 20px; padding: 10px; - background-color: #f3f3f3; + background-color: #1f2123; font-size: 1em; }@@ -86,5 +86,5 @@ font-weight: bold;
} hr { - border: 1px solid #ccc; + border: 1px solid #3e4446; }