awaveWordPress
3/14/2018 - 3:36 PM

Custom orderlist font

ol {
  margin: 1.44em 0 1.44em 0;
  padding: 0;
  counter-reset: item;
  li {
    margin: 0 0 10px 0;
    padding: 0 0 0 0;
    list-style-type: none;
    counter-increment: item;
    &:last-of-type {
      margin: 0 0 0 0;
    }

    &:before {
      display:inline-block;
      content:counter(item) ".";
      margin-right: 5px;
    }
  }
}