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

39 lines
741 B
SCSS
Raw Normal View History

2012-11-28 12:59:42 +01:00
// ===========================================================================
// CONTENTINFO
.contentinfo {
border-top: .5em solid $contentinfo-border-color;
2012-11-29 06:00:50 +01:00
padding: .5em 0 1em;
@include caps;
2012-11-28 12:59:42 +01:00
background: $contentinfo-background-color;
2012-11-29 06:00:50 +01:00
p { padding-bottom: 0; }
ul { padding-top: 0; }
span,
a { @include font-size($font-size-small, $line-height-alt); }
2012-11-28 12:59:42 +01:00
2012-11-28 17:23:08 +01:00
@include at-breakpoint($break-iPhone) {
2012-11-29 06:00:50 +01:00
ul {
@extend %clearfix-iPhone;
list-style: none;
}
li {
@include span-columns(2.5, $break-iPhone);
margin-right: 0;
}
2012-11-28 17:23:08 +01:00
}
2012-11-29 06:00:50 +01:00
@include at-breakpoint($break-iPad) {
li {
width: auto;
margin-right: 2em;
&:last-child { margin-right: 0; }
}
2012-11-28 17:23:08 +01:00
}
2012-11-28 12:59:42 +01:00
}