mirror of
https://github.com/danog/sass-site.git
synced 2024-12-12 01:19:50 +01:00
31 lines
540 B
SCSS
31 lines
540 B
SCSS
// ===========================================================================
|
|
// GET STARTED
|
|
|
|
|
|
|
|
.get-started { @extend %content-list; }
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// SMALL TABLET
|
|
|
|
@mixin get-started-small-tablet {
|
|
.get-started {
|
|
@extend %clearfix-small-tablet;
|
|
|
|
li {
|
|
@include span-columns(1);
|
|
|
|
&:last-child { @include omega; }
|
|
}
|
|
|
|
p {
|
|
text-align: left;
|
|
|
|
&.illustration { text-align: center; }
|
|
}
|
|
}
|
|
|
|
.description { min-height: 8.5em; }
|
|
} |