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.
27 lines
558 B
SCSS
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;
|
|
}
|