papercss/src/content/_lists.scss

45 lines
686 B
SCSS
Raw Normal View History

2017-12-19 17:52:33 +01:00
ol {
list-style-type: decimal;
ol {
list-style-type: upper-alpha;
ol {
list-style-type: upper-roman;
ol {
list-style-type: lower-alpha;
ol {
list-style-type: lower-roman;
}
}
}
}
}
2017-12-19 17:52:52 +01:00
2017-12-19 17:52:33 +01:00
ul {
list-style: none;
margin-left: 0;
li {
text-indent: -7px;
&:before {
position: relative;
left: -7px;
}
}
@include li-bullet("-");
ul {
@include li-bullet("+");
ul {
@include li-bullet("~");
ul {
@include li-bullet("");
ul {
2017-12-19 17:52:52 +01:00
@include li-bullet("");
2017-12-19 17:52:33 +01:00
}
}
}
}
2017-12-19 17:52:52 +01:00
&.inline li {
display: inline;
2017-12-19 17:52:33 +01:00
margin-left: 5px;
}
}