.article-content ol {
 counter-reset: orderList;
}

.article-content ol li:before {
  counter-increment: orderList;
  content: counters(orderList, ".") ".";
  display: block;
  position: absolute;
  left: -3px;
}