﻿
/* ORDERED LISTS */

ol.custom-list {
    list-style: none;
}

    ol.custom-list > li {
        display: table-row;
    }

        ol.custom-list > li:before {
            content: attr(value);
            display: table-cell;
            padding-right: 5px;
        }
