ol {
counter-reset: li;
}
ol > li {
list-style:none;
position: relative;
}
ol > li:before {
content:counter(li);
counter-increment:li;
position: absolute;
left: -2em;
color: red;
font-weight: bold;
}
<ol>
<li><p> First
<li><p> Second
</ol>
ol {
color: red;
font-weight: bold;
}
ol p {
color: black;
font-weight: normal;
}