mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-01-22 17:30:00 +00:00
86713728a4
* tooling: add stylelint and base configuration (see #74) * Autofix with stylelint on commit
38 lines
471 B
SCSS
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: '; ';
|
|
}
|
|
}
|
|
}
|
|
|