mirror of
https://github.com/danog/sass-site.git
synced 2024-12-12 01:19:50 +01:00
19 lines
426 B
SCSS
19 lines
426 B
SCSS
// ===========================================================================
|
|
// CONTENTINFO
|
|
|
|
|
|
|
|
.contentinfo {
|
|
border-top: .5em solid $contentinfo-border-color;
|
|
background: $contentinfo-background-color;
|
|
padding: 1em 0 2em;
|
|
|
|
@include at-breakpoint($break-iPhone) {
|
|
ul { @extend %horizontal-list-iPhone; }
|
|
li { width: 6.5em; }
|
|
}
|
|
|
|
@include at-breakpoint($break-iPhone-wide) {
|
|
li { width: 7.25em; }
|
|
}
|
|
} |