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.
18 lines
360 B
SCSS
18 lines
360 B
SCSS
// Navigation bar
|
|
|
|
.navbar {
|
|
font-size: 1.05rem;
|
|
box-shadow: 0 2px 3px 0 transparentize($black, 0.8);
|
|
border-top: 3px solid $primary;
|
|
}
|
|
|
|
// Replicate the hovered navbar item style on the brand,
|
|
// as it's also a navigation item
|
|
.navbar-brand:hover {
|
|
background-color: $navbar-item-hover-background-color;
|
|
}
|
|
|
|
.navbar-brand-text {
|
|
margin-left: 1rem;
|
|
}
|