37 lines
804 B
SCSS
37 lines
804 B
SCSS
.site-header {
|
|
padding: 24px 0;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
z-index: 1;
|
|
}
|
|
|
|
.site-header-inner {
|
|
position: relative; /* To display all elements above the background color */
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.header-links {
|
|
display: inline-flex;
|
|
|
|
li {
|
|
display: inline-flex;
|
|
}
|
|
|
|
a:not(.button) {
|
|
@include font-size(7, mobile, true, true, true);
|
|
@if ( get-font-size(7, desktop) != get-font-size(7, mobile) ) {
|
|
@include media( '>medium' ) {
|
|
@include font-size(7, desktop, true, true, true);
|
|
}
|
|
}
|
|
@include font-weight(semibold);
|
|
@include anchor-aspect(header);
|
|
line-height: 16px;
|
|
padding: 8px 24px;
|
|
}
|
|
}
|