28 lines
331 B
SCSS
Raw Normal View History

// ===========================================================================
// LISTS
2013-02-08 19:10:33 -08:00
@mixin reset-list {
list-style: none;
2013-02-08 19:10:33 -08:00
padding: {
top: 0;
bottom: 0;
}
}
2012-11-28 08:23:08 -08:00
2013-02-10 18:39:30 -08:00
ul,
ol {
2013-02-08 19:10:33 -08:00
@extend %block-text;
list-style-position: inside;
2012-11-28 08:23:08 -08:00
2013-02-08 19:10:33 -08:00
nav & { @include reset-list; }
2012-11-28 08:23:08 -08:00
}
2013-02-08 19:10:33 -08:00
dl {
@extend %block-text;
2013-02-08 19:10:33 -08:00
}
dd { margin: 0; }