color change on hover for navbar and footer links

This commit is contained in:
m 2016-01-05 10:16:06 +01:00
parent ffa281f7e9
commit c78214a2fe
2 changed files with 6 additions and 1 deletions

View File

@ -11,4 +11,8 @@
&:visited { &:visited {
color:$nav-link-color; color:$nav-link-color;
} }
&:hover {
color:$nav-link-hover;
}
} }

View File

@ -22,7 +22,8 @@ $grey-color-dark: darken($grey-color, 25%);
$on-palm: 600px; $on-palm: 600px;
$on-laptop: 800px; $on-laptop: 800px;
$nav-link-color: #FFF; $nav-link-color: #FFF;
$nav-link-hover: #DDD;
$primary-bg: #333; $primary-bg: #333;
$link-primary: #FFF; $link-primary: #FFF;