summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorache <ache@ache.one>2023-12-03 11:56:09 +0100
committerache <ache@ache.one>2023-12-03 12:04:30 +0100
commit507afdcefc99f03c78f020c06555abca3f6d0eb5 (patch)
treeea2497c277110383397bb9b26309ef49f5298c26 /src
parentCorrige la taille limite des grands écrans (diff)
Change la couleur du soulignement des liens
Diffstat (limited to 'src')
-rwxr-xr-xsrc/css/design.scss5
1 files changed, 3 insertions, 2 deletions
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;
}