Skip to content

Instantly share code, notes, and snippets.

@domhaase
Last active August 29, 2015 14:27
Show Gist options
  • Save domhaase/56b5c66f79b97f739f0c to your computer and use it in GitHub Desktop.
Save domhaase/56b5c66f79b97f739f0c to your computer and use it in GitHub Desktop.
Folding Menu
/**
* 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;
}
<!-- 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>
// alert('Hello world!');
{"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