2016-10-30 01:02:14 +02:00
|
|
|
/* ==========================================================================
|
|
|
|
MASTHEAD
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
.masthead {
|
|
|
|
position: relative;
|
2017-05-10 22:05:51 +02:00
|
|
|
background: $nord1;
|
2016-10-30 01:02:14 +02:00
|
|
|
border-bottom: 1px solid $border-color;
|
|
|
|
-webkit-animation: intro 0.3s both;
|
|
|
|
animation: intro 0.3s both;
|
|
|
|
-webkit-animation-delay: 0.15s;
|
|
|
|
animation-delay: 0.15s;
|
|
|
|
z-index: 20;
|
|
|
|
|
|
|
|
&__inner-wrap {
|
|
|
|
@include container;
|
|
|
|
@include clearfix;
|
|
|
|
padding: 1em 1em 1em;
|
|
|
|
font-family: $sans-serif-narrow;
|
|
|
|
|
|
|
|
@include breakpoint($x-large) {
|
|
|
|
max-width: $x-large;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.masthead__menu {
|
|
|
|
|
|
|
|
ul {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
clear: both;
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.masthead__menu-item {
|
|
|
|
display: block;
|
|
|
|
list-style-type: none;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
&--lg {
|
|
|
|
padding-right: 2em;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|