sass-site/source/assets/stylesheets/components/_get-started.scss

31 lines
540 B
SCSS
Raw Normal View History

2013-02-09 04:10:33 +01:00
// ===========================================================================
2013-02-24 07:04:16 +01:00
// GET STARTED
2013-02-09 04:10:33 +01:00
2013-02-24 07:04:16 +01:00
.get-started { @extend %content-list; }
2013-02-09 04:10:33 +01:00
// ---------------------------------------------------------------------------
// SMALL TABLET
2013-02-24 07:04:16 +01:00
@mixin get-started-small-tablet {
.get-started {
2013-02-09 04:10:33 +01:00
@extend %clearfix-small-tablet;
2013-02-11 03:39:30 +01:00
li {
@include span-columns(2);
&:last-child { @include omega; }
}
p {
text-align: left;
2013-02-11 00:04:29 +01:00
2013-02-11 03:39:30 +01:00
&.illustration { text-align: center; }
2013-02-09 04:10:33 +01:00
}
}
2013-02-11 00:04:29 +01:00
2013-02-11 03:39:30 +01:00
.description { min-height: 8.5em; }
2013-02-09 04:10:33 +01:00
}