2012-11-28 12:59:42 +01:00
|
|
|
// ===========================================================================
|
|
|
|
// CONTENTINFO
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-02-09 04:10:33 +01:00
|
|
|
$contentinfo-background-color: $dawn-pink !default;
|
|
|
|
$contentinfo-border-color: $wafer !default;
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-11-28 12:59:42 +01:00
|
|
|
.contentinfo {
|
|
|
|
border-top: .5em solid $contentinfo-border-color;
|
2013-02-09 04:10:33 +01:00
|
|
|
@include font-size($font-size-small, $line-height-incremental);
|
2012-11-28 12:59:42 +01:00
|
|
|
background: $contentinfo-background-color;
|
2012-11-29 06:00:50 +01:00
|
|
|
|
2013-02-09 04:10:33 +01:00
|
|
|
&,
|
|
|
|
ul {
|
|
|
|
padding: {
|
|
|
|
top: 1em;
|
|
|
|
bottom: 1em;
|
2012-11-29 06:00:50 +01:00
|
|
|
}
|
2012-11-28 17:23:08 +01:00
|
|
|
}
|
|
|
|
|
2013-02-09 04:10:33 +01:00
|
|
|
a { border: 0; }
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// iPhone
|
|
|
|
|
|
|
|
@mixin contentinfo-iPhone {
|
|
|
|
.contentinfo {
|
|
|
|
@extend %horizontal-list-iPhone;
|
|
|
|
text-align: left;
|
|
|
|
|
|
|
|
ul {
|
|
|
|
padding: {
|
|
|
|
top: .5em;
|
|
|
|
bottom: .5em;
|
|
|
|
}
|
2012-11-29 06:00:50 +01:00
|
|
|
}
|
2012-11-28 17:23:08 +01:00
|
|
|
}
|
2012-11-28 12:59:42 +01:00
|
|
|
}
|