Created
January 4, 2012 16:52
-
-
Save ipetepete/1560933 to your computer and use it in GitHub Desktop.
Tree List
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
/** | |
* Tree List | |
*/ | |
nav{ font: 120%/1.5 sans-serif; } | |
nav ul { -webkit-padding-start: 15px; list-style:none; } | |
nav li { line-height: 1.5em; -webkit-padding-start: 0.8em; display:list-item; } | |
nav li:before { content: "» "; color: lightblue; font-size: 1.1em; margin-top: -5px; margin-right: 5px; vertical-align: middle; display: inline-block;} | |
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
<nav class="category_tree"> | |
<ul> | |
<li><a href="#">Level 1</a> | |
<li class="active"><a href="#">Level 1</a> | |
<ul> | |
<li class="active"><a href="#">Level 2</a> | |
<ul> | |
<li class="active"><a href="#">Level 3</a> | |
</ul> | |
</ul> | |
<li><a href="#">Level 1</a> | |
</ul> | |
</nav> | |
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":"html"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment