ensl.org/app/assets/stylesheets/components/_lists.scss
2014-04-07 11:04:56 +01:00

31 lines
505 B
SCSS

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;
}
}