ensl.org/app/assets/stylesheets/components/_lists.scss

32 lines
505 B
SCSS
Raw Normal View History

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