sass-site/source/assets/stylesheets/foundation/_lists.scss

28 lines
331 B
SCSS
Raw Normal View History

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