Created
January 23, 2012 22:18
-
-
Save SBoudrias/1665823 to your computer and use it in GitHub Desktop.
Untitled
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ol { | |
counter-reset: section; /* on instancie un compteur */ | |
padding: 0; | |
/* style */ | |
background-color: #120517 | |
} | |
ol li:before { | |
display: block; | |
float: left; | |
content: counter(section); /* on utilise notre compteur */ | |
counter-increment: section; /* on ajoute +1 au compteur */ | |
width: 35px; | |
/* style */ | |
color: #999; | |
background-color: #150034; | |
} | |
ol li { | |
list-style: none; | |
/* style */ | |
color: #ccc; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ol> | |
<li>a</li> | |
<li>b</li> | |
<li>c</li> | |
<li>d</li> | |
<li>e</li> | |
<li>f</li> | |
<li>g</li> | |
<li>h</li> | |
<li>i</li> | |
<li>j</li> | |
</ol> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"view":"split","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment