papercss/src/content/_lists.scss
2018-09-24 10:46:33 -04:00

64 lines
854 B
SCSS
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
}
}
}
}
}
ul {
@include li-bullet('-');
list-style: none;
margin-left: 0;
li {
text-indent: -7px;
.badge,
[popover-bottom]::after,
[popover-left]::after,
[popover-right]::after,
[popover-top]::after {
text-indent: 0;
}
&::before {
left: -7px;
position: relative;
}
}
ul {
@include li-bullet('+');
ul {
@include li-bullet('~');
ul {
@include li-bullet('');
ul {
@include li-bullet('');
}
}
}
}
&.inline li {
display: inline;
margin-left: 5px;
}
}