vagrant/website/source/assets/stylesheets/_footer.scss

25 lines
471 B
SCSS
Raw Normal View History

#footer {
2017-03-28 01:19:52 +00:00
padding-top: 50px;
2017-03-28 01:19:52 +00:00
ul.footer-links {
li {
a {
2017-03-28 01:19:52 +00:00
color: $footer-link-color;
font-size: $footer-font-size;
font-family: $font-family-open-sans;
text-decoration: none;
&:hover, &:focus, &:active {
background-color: transparent;
color: $footer-link-color-hover;
outline: 0;
2016-01-20 02:12:18 +00:00
}
2017-03-28 01:19:52 +00:00
@media (max-width: 992px) {
text-align: center;
}
}
}
}
}