From a26904a6ad8db90115ce95bbc3216ee7312099d7 Mon Sep 17 00:00:00 2001 From: BAIMAM BOUKAR JEAN JACQUES <49169158+baimamboukar@users.noreply.github.com> Date: Mon, 10 Oct 2022 10:46:03 +0100 Subject: [PATCH] Fixed links issues in website Addressed to issue #417 --- css/custom.scss | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/css/custom.scss b/css/custom.scss index 5c5cba9cd..0ae056fe3 100644 --- a/css/custom.scss +++ b/css/custom.scss @@ -23,13 +23,14 @@ $link-active: $link-hover; a { border-bottom: 0; color: $link; - font-weight: 500; - + font-weight: normal; + text-decoration: none; &:active, &:focus, &:hover { background: none; - color: $link-hover; + text-decoration: none; + color: $link; } } } @@ -118,13 +119,16 @@ $link-active: $link-hover; color: inherit; font-weight: 500; padding: 2px; + text-decoration: none; &:active, &:focus, &:hover { - background-color: $link; + + font-weight: bold; border-radius: 2px; - color: $white; + color: $link; + text-decoration: none; } } } @@ -255,7 +259,7 @@ $link-active: $link-hover; &:active, &:focus, &:hover { - color: $black; + color: $link; background: none; } } @@ -318,11 +322,14 @@ $link-active: $link-hover; a { border-bottom: none; color: inherit; - + text-decoration: none; &:active, &:focus, &:hover { background: none; + color: $link; + font-weight: bold; + text-decoration: none; } } } @@ -338,4 +345,4 @@ $link-active: $link-hover; margin-right: auto; margin-top: 25px; margin-bottom: 20px; -} \ No newline at end of file +}