footer hover

This commit is contained in:
JT 2014-07-24 18:07:48 -07:00
parent a16b24ab4a
commit 8361c9be87
2 changed files with 10 additions and 0 deletions

View File

@ -46,8 +46,12 @@ body.page-home{
text-transform: uppercase;
font-size: 12px;
letter-spacing: 3px;
.transition( color 0.3s ease );
font-weight: 400;
&:hover{
color: @purple;
.transition( color 0.3s ease );
background-color: transparent;
}
}

View File

@ -421,8 +421,14 @@ body.page-home #footer {
text-transform: uppercase;
font-size: 12px;
letter-spacing: 3px;
-webkit-transition: color 0.3s ease;
transition: color 0.3s ease;
font-weight: 400;
}
#footer .footer-links li a:hover {
color: #822ff7;
-webkit-transition: color 0.3s ease;
transition: color 0.3s ease;
background-color: transparent;
}
#footer .buttons.navbar-nav {