mirror of
https://github.com/danog/sass-site.git
synced 2024-12-12 01:19:50 +01:00
46 lines
707 B
SCSS
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;
|
|
}
|
|
}
|
|
} |