From 0f3f26f4f340f303f033f71edcaa48fbcd8c8ee2 Mon Sep 17 00:00:00 2001 From: Zakarya Date: Tue, 17 Jun 2025 21:56:28 -0700 Subject: [PATCH] Proper link colors These match the Zakarya Blue colors How did it take THIS LONG for me to get around to doing this --- src/style/main.scss | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/style/main.scss b/src/style/main.scss index 70814a9..094866d 100644 --- a/src/style/main.scss +++ b/src/style/main.scss @@ -24,6 +24,26 @@ spacer { margin-top: 8%; } +a { + transition-duration: 0.2s; +} + +a:link { + color: #2194ff; +} + +a:visited { + color: #2178ff; +} + +a:link:hover { + color: #21afff; +} + +a:visited:hover { + color: #21afff; +} + a.btn, button.btn { padding: 8px 18px;