54 lines
868 B
SCSS
Raw Normal View History

2013-10-09 06:30:53 -04:00
.banner {
@include padding-leader;
@include padding-trailer;
2013-02-08 19:10:33 -08:00
2013-10-09 06:30:53 -04:00
* { vertical-align: middle; }
2013-02-08 19:10:33 -08:00
2013-10-09 06:30:53 -04:00
.container { position: relative; }
2013-02-08 19:10:33 -08:00
}
2013-10-09 06:30:53 -04:00
.site-brand {
@include font-size-regular;
margin: 0;
line-height: 0;
2013-10-10 16:21:47 -04:00
text-align: left;
2013-02-10 18:39:30 -08:00
2013-10-09 06:30:53 -04:00
img {
@include transition-property(height);
height: rhythm(2);
2013-02-10 18:39:30 -08:00
}
2013-02-08 19:10:33 -08:00
2013-10-11 16:06:20 -04:00
@include breakpoint($tablet-large) {
2013-10-12 11:51:13 -04:00
@include span(3);
2013-02-08 19:10:33 -08:00
2013-10-09 06:30:53 -04:00
img { height: rhythm(4); }
}
}
2013-02-08 19:10:33 -08:00
2013-10-09 06:30:53 -04:00
.banner-toggle {
position: absolute;
top: 0;
2013-10-10 16:21:47 -04:00
right: $gutter-width;
2013-02-08 19:10:33 -08:00
2013-10-09 06:30:53 -04:00
button {
@extend %clear-button;
2013-10-10 16:21:47 -04:00
@include square($column-width);
2013-10-09 06:30:53 -04:00
padding: 0;
2012-11-29 09:33:08 -08:00
}
2013-10-09 06:30:53 -04:00
.icon-bar {
@include leader(.25);
@include trailer(.25);
display: block;
margin: {
right: auto;
left: auto;
2013-02-08 19:10:33 -08:00
}
2013-10-09 06:30:53 -04:00
width: 2em;
height: 0.125em;
background-color: $color-primary;
2012-11-29 09:33:08 -08:00
}
2013-02-10 18:39:30 -08:00
2013-10-11 16:06:20 -04:00
@include breakpoint($tablet-large) { display: none; }
2013-02-10 18:39:30 -08:00
}