minetest.github.io/_sass/_footer.scss
Hugo Locurcio cd5181b3e1 Switch from Bootstrap to Bulma (#166)
The design has been slightly modernized in the process.
jQuery was also removed as it is no longer required, resulting in
faster page loading times.

Gallery thumbnails were regenerated at an higher resolution to match
the new design.
2019-06-20 01:12:12 +01:00

27 lines
558 B
SCSS

$footer-link-color: $white-ter;
.footer {
margin-top: 2rem;
color: $grey-light;
// Needs to end with `:not(.navbar-item)` to override `a:not(.navbar-item)`
// from `main.scss`
a:not(.navbar-item) {
color: $footer-link-color;
border-bottom: 1px solid transparentize($footer-link-color, 0.8);
&:hover {
background-color: transparentize($footer-link-color, 0.9);
}
&:active {
background-color: transparentize($footer-link-color, 0.8);
}
}
}
.footer-copyright {
margin-top: 2.25rem;
text-align: center;
}