Ned Zimmerman 86713728a4
⚙️ Add stylelint and base configuration (see #74) (#92)
* tooling: add stylelint and base configuration (see #74)

* Autofix with stylelint on commit
2020-03-07 10:23:05 -08:00

38 lines
471 B
SCSS

ol {
margin: 0;
padding: 0 0 0 1em;
}
li {
list-style: none;
padding-bottom: 0.5em;
&.subterm {
padding-left: pxToRem(10);
}
&:last-child {
padding-bottom: 0;
}
&.subterm:before {
content: '\21B3';
padding-right: pxToRem(5);
}
}
.list-semicolon {
list-style: none;
margin: 0;
padding: 0;
& > li {
display: inline;
&:not(:last-child)::after {
content: '; ';
}
}
}