sass-site/source/assets/stylesheets/foundation/_lists.scss
2013-02-10 18:40:20 -08:00

28 lines
331 B
SCSS

// ===========================================================================
// LISTS
@mixin reset-list {
list-style: none;
padding: {
top: 0;
bottom: 0;
}
}
ul,
ol {
@extend %block-text;
list-style-position: inside;
nav & { @include reset-list; }
}
dl {
@extend %block-text;
}
dd { margin: 0; }