2023-01-12 20:54:24 +01:00
|
|
|
@use '../breakpoints';
|
|
|
|
@use '../functions';
|
|
|
|
@use '../visual-design/typography';
|
2023-01-12 19:19:42 +01:00
|
|
|
|
2023-01-06 22:40:29 +01:00
|
|
|
.sl-r-banner {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
// add bottom padding to increase space
|
|
|
|
// above page titles (visible on mobile site)
|
|
|
|
padding-bottom: 3rem;
|
|
|
|
|
|
|
|
a {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__brand a {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0;
|
2023-01-12 19:19:42 +01:00
|
|
|
height: functions.sl-px-to-rem(48px);
|
2023-01-06 22:40:29 +01:00
|
|
|
|
2023-01-12 19:19:42 +01:00
|
|
|
@include breakpoints.sl-breakpoint--medium {
|
|
|
|
height: functions.sl-px-to-rem(96px);
|
2023-01-09 20:10:02 +01:00
|
|
|
}
|
2023-01-06 22:40:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&__navigation {
|
2023-01-12 19:19:42 +01:00
|
|
|
font-weight: typography.$sl-font-weight--bold;
|
2023-01-06 22:40:29 +01:00
|
|
|
|
|
|
|
ul {
|
|
|
|
position: relative;
|
|
|
|
margin: 0 -1rem !important;
|
|
|
|
|
2023-01-12 19:19:42 +01:00
|
|
|
@include breakpoints.sl-breakpoint--medium {
|
|
|
|
right: -(functions.sl-px-to-rem(16px));
|
2023-01-06 22:40:29 +01:00
|
|
|
margin: 0 !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
display: block;
|
2023-01-12 19:19:42 +01:00
|
|
|
padding: functions.sl-px-to-rem(12px) functions.sl-px-to-rem(16px);
|
2023-01-06 22:40:29 +01:00
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|