2012-11-28 12:09:54 +01:00
|
|
|
// ===========================================================================
|
|
|
|
// BANNER
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-02-09 04:10:33 +01:00
|
|
|
$banner-background-color: $background-alt-color !default;
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-11-28 12:09:54 +01:00
|
|
|
.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
|
|
|
}
|
2012-11-28 13:46:51 +01:00
|
|
|
}
|