sass-site/source/assets/stylesheets/regions/_banner.scss

46 lines
707 B
SCSS
Raw Normal View History

// ===========================================================================
// BANNER
2013-02-09 04:10:33 +01:00
$banner-background-color: $background-alt-color !default;
.banner {
2013-02-09 04:10:33 +01:00
background: $banner-background-color;
2012-11-28 17:23:08 +01:00
2013-02-09 04:10:33 +01:00
h1 a {
border-bottom: 0;
padding-bottom: 0;
2012-11-28 17:23:08 +01:00
}
2013-02-09 04:10:33 +01:00
}
.skip-navigation { display: none; }
// ---------------------------------------------------------------------------
// iPhone
@mixin banner-iPhone {
.banner {
text-align: left;
2013-02-11 00:04:29 +01:00
h1 { @include span-columns(3); }
2012-11-29 18:33:08 +01:00
}
2013-02-09 04:10:33 +01:00
.skip-navigation {
@include span-columns(1 omega);
padding: {
2013-02-11 00:04:29 +01:00
top: 1.75em;
bottom: 1.75em;
2012-11-29 18:33:08 +01:00
}
2013-02-09 04:10:33 +01:00
.button {
@include float-right;
padding: 0;
width: auto;
}
2012-11-29 18:33:08 +01:00
}
}