colors: colorizes the link on hover

* Disables the changing of the font weight on hover, as it is a bad
  idea.

Co-Authored-by: iGor milhit <igor@milhit.ch>
merge-requests/5/merge
iGor milhit 2021-11-02 21:51:28 +01:00
parent d3dab3c3b1
commit 52a8e251f9
Signed by: igor
GPG Key ID: 692D97C3D0228A99
2 changed files with 6 additions and 5 deletions

View File

@ -21,6 +21,12 @@ a:focus,
color: $frost-lighter-green;
}
a:hover,
.main-header a:hover,
.main-footer a:hover {
color: $aurora-purple;
}
a:visited {
color: $frost-grey-blue;
}

View File

@ -22,8 +22,3 @@
text-decoration: none;
}
}
a:hover,
.main-header a:hover {
font-weight: bold;
}