From 8adee41ebe6ed2e27c7182cc4cca20ffee9a97eb Mon Sep 17 00:00:00 2001 From: Aravinth Manivannan Date: Fri, 28 Oct 2022 20:54:02 +0530 Subject: [PATCH] feat: draw attention to sign link --- sass/main.scss | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/sass/main.scss b/sass/main.scss index 413b621..22c6c25 100644 --- a/sass/main.scss +++ b/sass/main.scss @@ -487,3 +487,18 @@ ul.language-select > li { .footnote-definition > p { display: inline; } + +.nav__link { + text-decoration: underline; + text-decoration-color: red; + text-decoration-thickness: 3px; + font-weight: bold; + font-size: 1.2em; + padding: 10px; +} + +.nav__link:hover, +.nav__link:active { + color: #a31d1d; + border-bottom: none !important; +}