sass-site/source/assets/stylesheets/regions/_banner.scss
2013-02-10 15:08:26 -08:00

46 lines
707 B
SCSS

// ===========================================================================
// BANNER
$banner-background-color: $background-alt-color !default;
.banner {
background: $banner-background-color;
h1 a {
border-bottom: 0;
padding-bottom: 0;
}
}
.skip-navigation { display: none; }
// ---------------------------------------------------------------------------
// iPhone
@mixin banner-iPhone {
.banner {
text-align: left;
h1 { @include span-columns(3); }
}
.skip-navigation {
@include span-columns(1 omega);
padding: {
top: 1.75em;
bottom: 1.75em;
}
.button {
@include float-right;
padding: 0;
width: auto;
}
}
}