Repo restructure

This commit is contained in:
Nick Pack
2013-07-15 10:28:06 +01:00
parent 0fcf83793e
commit d8d6f54b67
19 changed files with 6 additions and 6 deletions

48
src/scss/_lists.scss Normal file
View File

@ -0,0 +1,48 @@
// #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 $list_styled_position;
}
ul.circle {
list-style: circle $list_styled_position;
}
ul.disc {
list-style: disc $list_styled_position;
}
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;
}