minetest.github.io/_sass/_footer.scss
rubenwardy c9ba45106e
Improve navigation (and more) (#146)
Fixes #35 
Fixes #115

* Combines *community* and *development* into a new page called *Get Involved*.
* Add sitemap-ish to footer
2019-01-10 12:36:10 +00:00

31 lines
427 B
SCSS

// Footer
footer {
background-color: hsl(0, 0, 18%);
color: hsl(0, 0, 60%);
// text-align: center;
padding: 3rem 0;
margin-top: 3rem;
a {
color: hsl(0, 0, 90%);
text-decoration: none;
transition: .15s;
&:hover,
&:focus {
color: hsl(0, 0, 80%);
text-decoration: underline;
}
&:active {
color: hsl(0, 0, 50%);
text-decoration: underline;
}
}
.footer-copyright {
padding-top: 2rem;
}
}