Skip to content

Instantly share code, notes, and snippets.

@gabrielgodoy-zz
Last active August 29, 2015 14:01
Show Gist options
  • Save gabrielgodoy-zz/8a6ac28bfcb076bad32d to your computer and use it in GitHub Desktop.
Save gabrielgodoy-zz/8a6ac28bfcb076bad32d to your computer and use it in GitHub Desktop.
ol {
list-style-type: none;
list-style-type: decimal !ie; /*IE 7- hack*/
margin: 0;
margin-left: 3em;
padding: 0;
counter-reset: li-counter;
}
ol > li{
position: relative;
margin-bottom: 20px;
padding-left: 0.5em;
min-height: 3em;
border-left: 2px solid #CCCCCC;
}
ol > li:before {
position: absolute;
top: 0;
left: -1em;
width: 0.8em;
font-size: 3em;
line-height: 1;
font-weight: bold;
text-align: right;
color: #464646;
content: counter(li-counter);
counter-increment: li-counter;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment