From 1ab3737b6845f289cb3da5412e4011c472183fd9 Mon Sep 17 00:00:00 2001 From: ch0ccyra1n Date: Sun, 31 Jul 2022 17:08:31 -0700 Subject: [PATCH] change color of links in light mode --- static/css/style.css | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/static/css/style.css b/static/css/style.css index e223a4f..9995681 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -4,6 +4,10 @@ background-color: black; color: white; } + a { + text-decoration: none; + color: #f3ccc3; + } } /* Light Mode */ @@ -11,6 +15,10 @@ body { background-color: white; } + a { + text-decoration: none; + color: #da644a; + } } /* Universal */ @@ -18,11 +26,6 @@ body { justify-content: center; } -a { - text-decoration: none; - color: #f3ccc3; -} - header h1 { text-align: center; }