change link color on hover.

This commit is contained in:
Jörg Thalheim 2012-08-14 21:10:57 +02:00
parent 97aeee9499
commit 3c57ccbd28
1 changed files with 3 additions and 3 deletions

View File

@ -20,9 +20,6 @@ body {
a { a {
text-decoration:none; text-decoration:none;
&:hover {
text-decoration:underline;
}
} }
header { header {
@ -66,6 +63,9 @@ footer {
@include grid(12); @include grid(12);
@include clearfix; @include clearfix;
} }
a:hover {
color: darken($yellow, 10%);
}
} }
.navlink { .navlink {