From 507afdcefc99f03c78f020c06555abca3f6d0eb5 Mon Sep 17 00:00:00 2001 From: ache Date: Sun, 3 Dec 2023 11:56:09 +0100 Subject: Change la couleur du soulignement des liens --- src/css/design.scss | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/css') diff --git a/src/css/design.scss b/src/css/design.scss index db186c9..8277b7e 100755 --- a/src/css/design.scss +++ b/src/css/design.scss @@ -34,15 +34,16 @@ body { a { text-decoration: underline; + text-decoration-thickness: 10%; text-decoration-style: dotted; @mixin lightMode { &:hover, &:focus { text-shadow: 0 0 2px #999; + text-decoration-color: royalblue; } color: #458; - text-decoration-color: #37373780; &:visited { color: #444; } @@ -50,11 +51,11 @@ body { @mixin darkMode { &:hover, &:focus { text-shadow: 0 0 2px #FFF; + text-decoration-color: goldenrod; } color: #B7B7A7; - text-decoration-color: #C9C9C980; &:visited { color: #C7C7C7; } -- cgit v1.2.3