26b0b91551
Had to exclude some unfeasible rules however.
48 lines
665 B
SCSS
48 lines
665 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;
|
|
}
|
|
|
|
.large li {
|
|
line-height: $list_large_line_height;
|
|
}
|
|
|
|
li p {
|
|
line-height: $list_item_paragraph_line_height;
|
|
} |