mirror of
https://github.com/danog/sass-site.git
synced 2024-12-04 18:38:12 +01:00
50 lines
921 B
SCSS
50 lines
921 B
SCSS
@use '../breakpoints';
|
|
@use '../functions';
|
|
@use '../visual-design/typography';
|
|
|
|
.sl-r-banner {
|
|
position: relative;
|
|
|
|
// add bottom padding to increase space
|
|
// above page titles (visible on mobile site)
|
|
padding-bottom: var(--gutter-triple);
|
|
|
|
a {
|
|
display: inline-block;
|
|
}
|
|
|
|
&__brand a {
|
|
border: 0;
|
|
}
|
|
|
|
img {
|
|
display: inline-block;
|
|
margin: 0;
|
|
height: functions.sl-px-to-rem(48px);
|
|
|
|
@include breakpoints.sl-breakpoint--medium {
|
|
height: functions.sl-px-to-rem(96px);
|
|
}
|
|
}
|
|
|
|
&__navigation {
|
|
font-weight: typography.$sl-font-weight--bold;
|
|
|
|
ul {
|
|
position: relative;
|
|
margin: 0 var(--gutter-negative) !important;
|
|
|
|
@include breakpoints.sl-breakpoint--medium {
|
|
right: var(--gutter-negative);
|
|
margin: 0 !important;
|
|
}
|
|
}
|
|
|
|
a {
|
|
display: block;
|
|
padding: var(--gutter-minus) var(--gutter);
|
|
border: 0;
|
|
}
|
|
}
|
|
}
|