commit 38d32c960c25d083b75b64c78435fabde5218dc9
parent 422b3280c9c5d457bb9e1d41aa3cf7e43f7e4066
Author: Hugo Soucy <hugo.soucy@equisoft.com>
Date: Wed, 11 Sep 2019 14:50:06 -0400
Change the link styles
Diffstat:
1 file changed, 10 insertions(+), 4 deletions(-)
diff --git a/static/src/css/global/_base.scss b/static/src/css/global/_base.scss
@@ -22,7 +22,17 @@ body {
}
a {
+ background: linear-gradient(180deg,transparent 70%, aquamarine 0);
color: var(--base-link-color);
+ text-decoration: none;
+ transition: all 0.25s ease-in-out;
+
+
+ &:focus,
+ &:hover {
+ background: linear-gradient(180deg,transparent 0%, aqua 0);
+ color: var(--base-fg-color);
+ }
}
p,
@@ -46,7 +56,3 @@ img {
max-width: 100%;
width: auto;
}
-
-h1 {
- text-shadow:2px 2px var(--shadow-color);
-}