Skip to content

Instantly share code, notes, and snippets.

@nchristus
Created January 23, 2015 15:27
Show Gist options
  • Save nchristus/32b133402b89719736c5 to your computer and use it in GitHub Desktop.
Save nchristus/32b133402b89719736c5 to your computer and use it in GitHub Desktop.
List counter
.ui-modal-list.ordered {
list-style: none;
counter-reset: ol-counter;
> li {
position: relative;
padding-left: rem-calc(20);
&:before {
position: absolute;
top: rem-calc(10);
left: 0;
content: counter(ol-counter) '. ';
counter-increment: ol-counter;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment