mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-01-23 01:40:10 +00:00
10843f2909
* 🌈 Organise colors with vars only * ➕ New file structure * File restructuring * ⚒️ Fix build issue * Rearranged files
38 lines
473 B
SCSS
38 lines
473 B
SCSS
ol {
|
|
padding: 0 0 0 1em;
|
|
margin: 0;
|
|
}
|
|
|
|
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 {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
|
|
& > li {
|
|
display: inline;
|
|
|
|
&:not(:last-child)::after {
|
|
content: '; ';
|
|
}
|
|
}
|
|
}
|
|
|