Bones/scss/_lists.scss
2013-04-23 20:56:43 +01:00

48 lines
667 B
SCSS

/* #Lists
================================================== */
ul, ol {
margin: $list_margin;
}
ul {
list-style: $ul_list_style;
}
ol {
list-style: $ol_list_style;
}
ol, ul.square, ul.circle, ul.disc {
margin: $list_styled_margin;
}
ul.square {
list-style: square outside;
}
ul.circle {
list-style: circle outside;
}
ul.disc {
list-style: disc outside;
}
ul ul, ul ol,
ol ol, ol ul {
margin: $nested_list_margin;
font-size: $nested_list_font_size;
}
li {
line-height: $list_item_line_height;
margin: $list_item_margin;
}
ul.large li {
line-height: $list_large_line_height;
}
li p {
line-height: $list_item_paragraph_line_height;
}