?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/themes/quadric/assets/css/scss/modules/shortcodes/



?? Go up: /home/webdevt/www/wdp/wp-content/themes/quadric/assets/css/scss/modules

?? Viewing: _ordered-list.scss

/* ==========================================================================
# Ordered List Style - begin
========================================================================== */
.edgtf-ordered-list ol {
	counter-reset: li;
	display: block;
	list-style-type: none;
	background-position: left center;
	background-repeat: no-repeat;
	margin: 0 0 30px;
    li{
        margin: 0px 0px 5px;
        font-family: inherit;
    }
    >li:before{
        color:$first-main-color;
        content: counter(li, decimal-leading-zero);
        counter-increment: li;
        padding-right: 16px;
    }
}
.edgtf-ordered-list ul{
    counter-reset: li;
	display: block;
	list-style-type: none;
	background-position: left center;
	background-repeat: no-repeat;
	margin: 0 0 30px;
}

/* ==========================================================================
# Ordered List Style - end
========================================================================== */


??

??