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
parent
d3dab3c3b1
commit
52a8e251f9
|
@ -21,6 +21,12 @@ a:focus,
|
||||||
color: $frost-lighter-green;
|
color: $frost-lighter-green;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a:hover,
|
||||||
|
.main-header a:hover,
|
||||||
|
.main-footer a:hover {
|
||||||
|
color: $aurora-purple;
|
||||||
|
}
|
||||||
|
|
||||||
a:visited {
|
a:visited {
|
||||||
color: $frost-grey-blue;
|
color: $frost-grey-blue;
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,8 +22,3 @@
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover,
|
|
||||||
.main-header a:hover {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue