Last active
August 29, 2015 14:27
-
-
Save domhaase/56b5c66f79b97f739f0c to your computer and use it in GitHub Desktop.
Folding Menu
This file contains hidden or 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
| /** | |
| * Folding Menu | |
| */ | |
| .menu { | |
| color: black; | |
| display: block; | |
| width: 10em; | |
| background-color: #efefef; | |
| padding: 1em 2em; | |
| } | |
| a { | |
| color: black; | |
| display: inline-block; | |
| background-color: #efefef; | |
| padding: 1em 2em; | |
| text-decoration: none; | |
| border: 2px solid #999; | |
| border-radius: 5px; | |
| } |
This file contains hidden or 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
| <!-- content to be placed inside <body>…</body> --> | |
| <a href=#>Menu</a> | |
| <div class="menu"> | |
| <ul> | |
| <li>lorem</li> | |
| <li>ipsum</li> | |
| <li>test</li> | |
| <li>test</li> | |
| <li>test</li> | |
| <li>test</li> | |
| </ul> | |
| </div> |
This file contains hidden or 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
| // alert('Hello world!'); |
This file contains hidden or 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","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment