mirror of
https://github.com/danog/sass-site.git
synced 2024-12-12 09:29:58 +01:00
32 lines
536 B
SCSS
32 lines
536 B
SCSS
// ===========================================================================
|
|
// SLIDES
|
|
|
|
|
|
|
|
.slide-navigation li { padding: .25em 0; }
|
|
|
|
.slides { @extend %content-list; }
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// iPhone
|
|
|
|
@mixin slides-iPhone {
|
|
.slide-navigation {
|
|
@extend %horizontal-list-iPhone;
|
|
|
|
li {
|
|
width: columns(2);
|
|
|
|
&:nth-child(even) { @extend %float-left-last-child-iPhone; }
|
|
}
|
|
}
|
|
|
|
.slides {
|
|
padding: {
|
|
top: 1em;
|
|
bottom: 1em;
|
|
}
|
|
}
|
|
} |