From 2ea86253a39921c0804dfb280431fe520c0bd5ad Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Tue, 23 Jul 2024 09:00:11 -0700 Subject: [PATCH] Set some anchor color and text decoration Remove the animation --- assets/css/010_anchors.css | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/assets/css/010_anchors.css b/assets/css/010_anchors.css index 4428aab..c79b213 100644 --- a/assets/css/010_anchors.css +++ b/assets/css/010_anchors.css @@ -8,24 +8,25 @@ /********** - # ANCHORS + # ANCHORS **********/ -a { - --hover-animating-timing: 0.1s; +:root { + --text-color-link: var(--blue); +} - color: var(--blue); +a { + color: var(--text-color-link); text-decoration: none; - transition: color var(--hover-animating-timing); &:hover { - color: var(--blue); + color: var(--text-color-link); text-decoration: underline; - transition: color var(--hover-animating-timing); } &:visited { - color: var(--blue); + color: var(--text-color-link); + text-decoration: underline dashed; } } @@ -34,4 +35,3 @@ a { text-decoration: underline; } } -