mirror of
https://github.com/danog/sass-site.git
synced 2024-12-12 01:19:50 +01:00
55 lines
954 B
SCSS
55 lines
954 B
SCSS
// ===========================================================================
|
|
// CONTENTINFO
|
|
|
|
|
|
|
|
$contentinfo-background-color: $dawn-pink !default;
|
|
$contentinfo-border-color: $wafer !default;
|
|
|
|
|
|
|
|
.contentinfo {
|
|
border-top: .5em solid $contentinfo-border-color;
|
|
@include font-size($font-size-small, $line-height-incremental);
|
|
background: $contentinfo-background-color;
|
|
|
|
&,
|
|
ul {
|
|
padding: {
|
|
top: 1em;
|
|
bottom: 1em;
|
|
}
|
|
}
|
|
|
|
a { border: 0; }
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// iPhone
|
|
|
|
@mixin contentinfo-iPhone {
|
|
.contentinfo {
|
|
@extend %horizontal-list-iPhone;
|
|
text-align: left;
|
|
|
|
ul {
|
|
margin: {
|
|
right: -$gutter-width;
|
|
left: -$gutter-width;
|
|
}
|
|
padding: {
|
|
top: .5em;
|
|
bottom: .5em;
|
|
}
|
|
}
|
|
|
|
li {
|
|
padding: {
|
|
right: $gutter-width;
|
|
left: $gutter-width;
|
|
}
|
|
}
|
|
}
|
|
} |