Pretty List Item Disc Coloring with SCSS
Since I seem to be asked for these frequently, I am putting this here for quick reference, as well as posterity.
ul {
list-style: none;
margin: 0 0 25px;
padding: 0;
li {
margin: 0;
padding: 0 0 0 30px;
text-indent: -15px;
&::before {
content: "• ";
color: gold; // it's a pretty color
}
}
}
Published on November 6, 2019