Customize the appearance of numbers in ordered lists.
Source Code
ol {
counter-reset: list-counter;
list-style: none;
}
ol > li:before {
counter-increment: list-counter;
content: counter(list-counter) ". ";
font-weight: bold;
color: red;
}