25 lines
459 B
SCSS
Raw Permalink Normal View History

#footer {
padding-top: 50px;
ul.footer-links {
li {
a {
color: $footer-link-color;
font-size: $footer-font-size;
2019-10-04 16:10:07 -06:00
font-family: $font-body;
text-decoration: none;
&:hover, &:focus, &:active {
background-color: transparent;
color: $footer-link-color-hover;
outline: 0;
2015-12-20 12:35:44 -08:00
}
2015-11-10 12:19:17 -08:00
@media (max-width: 992px) {
text-align: center;
2015-11-10 12:19:17 -08:00
}
}
}
}
}