From 6c3d9530b119decfe3b544a6dbc93c1840ebfbcb Mon Sep 17 00:00:00 2001 From: BulumkoJele <126456392+BulumkoJele@users.noreply.github.com> Date: Wed, 27 Dec 2023 14:34:09 +0200 Subject: [PATCH] Change navbar and body text color to white (#60) * Change navbar and body text color to white * Change underline from #ccc to #fff --- assets/css/style.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/assets/css/style.css b/assets/css/style.css index ae5ce1b..9e79990 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -58,7 +58,7 @@ nav a.icon { nav ul li a { padding: 1.35rem 2rem; text-decoration: none; - color: #ccc; + color: #fff; } nav ul li::after { @@ -71,7 +71,7 @@ nav ul li::after { bottom: -9px; left: 0; background-color: #000; - background-color: #ccc; + background-color: #fff; /* transform-origin: bottom right; */ transition: transform 0.25s ease-out; } @@ -86,7 +86,7 @@ nav ul li:hover { } nav ul li a:active { - color: #ccc; + color: #fff; } .introduction { @@ -108,7 +108,7 @@ nav ul li a:active { } .intro-text { - color: #ccc; + color: #fff; width: 40vw; margin-top: 20vh; }