scratchx/sass/base/_lists.scss
2015-05-01 09:39:03 -04:00

31 lines
435 B
SCSS

ul,
ol {
list-style-type: none;
margin: 0;
padding: 0;
&%default-ul {
list-style-type: disc;
margin-bottom: $small-spacing;
padding-left: $base-spacing;
}
&%default-ol {
list-style-type: decimal;
margin-bottom: $small-spacing;
padding-left: $base-spacing;
}
}
dl {
margin-bottom: $small-spacing;
dt {
font-weight: bold;
margin-top: $small-spacing;
}
dd {
margin: 0;
}
}