ol.steps { counter-reset: item; }
ol.steps li:before { content: 'Step ' counter(item, decimal) '. '; }
ol.nodot { counter-reset: item; }
ol.nodot li:before { content: 'Step ' counter(item, decimal) ' '; }
ol.styled { counter-reset: item; }
ol.styled li {
background: rgba(78,68,50,.10);
border-radius: 4px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 20px;
line-height: 2;
margin-bottom: 10px;
width: 200px;
padd
}