Add hover color for content page links

This commit is contained in:
Jessica Lawshe 2018-09-27 11:37:14 -05:00
parent a35b3eea7f
commit 69421cb7b7
2 changed files with 4 additions and 0 deletions

View file

@ -5,6 +5,9 @@
.content-page {
a:not(.btn) {
color: @link-color-alt;
&:hover {
color: @link-hover-color-alt;
}
}
hr {
border-color: @hr-border-alt;

View file

@ -52,6 +52,7 @@
@link-color-alt : @ol-green;
@link-active-color : @ol-dark-green;
@link-hover-color : @ol-dark-blue;
@link-hover-color-alt : @ol-dark-green;
@hr-border : @ol-blue-gray-1;
@hr-border-alt : @gray-lighter;