2016-03-10 19:06:59 +01:00
|
|
|
/* ==========================================================================
|
|
|
|
MASTHEAD
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
.masthead {
|
|
|
|
@include container;
|
2016-03-15 17:34:14 +01:00
|
|
|
@include clearfix;
|
|
|
|
padding: 2em 2em 1em;
|
2016-03-10 19:06:59 +01:00
|
|
|
font-family: $sans-serif-narrow;
|
|
|
|
font-weight: 700;
|
|
|
|
text-transform: uppercase;
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Site name */
|
|
|
|
.site-name {
|
2016-03-15 17:34:14 +01:00
|
|
|
@include breakpoint($medium) {
|
|
|
|
@include span(10 of 12);
|
|
|
|
@include pre(2);
|
2016-03-10 19:06:59 +01:00
|
|
|
}
|
2016-03-15 17:34:14 +01:00
|
|
|
font-size: 24px;
|
2016-03-10 19:06:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.masthead__menu {
|
2016-03-15 17:34:14 +01:00
|
|
|
@include breakpoint($medium) {
|
|
|
|
@include span(10 of 12);
|
|
|
|
@include pre(2);
|
2016-03-10 19:06:59 +01:00
|
|
|
}
|
2016-03-15 17:34:14 +01:00
|
|
|
margin-bottom: 1em;
|
2016-03-10 19:06:59 +01:00
|
|
|
ul {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
clear: both;
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.masthead__menu-item {
|
|
|
|
display: block;
|
|
|
|
list-style-type: none;
|
|
|
|
border-bottom: 1px solid $border-color;
|
|
|
|
font-size: 16px;
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: 0 solid transparent;
|
|
|
|
}
|
|
|
|
@include breakpoint($small) {
|
|
|
|
display: inline;
|
|
|
|
margin-right: 25px;
|
|
|
|
white-space: nowrap;
|
|
|
|
border-bottom: 0 solid transparent;
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
display: block;
|
|
|
|
padding: 10px 0;
|
|
|
|
@include breakpoint($small) {
|
|
|
|
display: inline;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|