CSS: Styling List Item
/** make regular bullets next to the list items red **/
ul li {
list-style-type: none;
}
ul li:before {
content: counter(item, disc) " ";
color: red;
}
/** make the items in a numbered list red **/
ol li {
list-style-type: none;
counter-increment: item;
}
ol li:before {
content: counter(item) ". ";
color: red;
}