Skip to content

Instantly share code, notes, and snippets.

@whistlegraph
Created February 27, 2015 20:46
Show Gist options
  • Save whistlegraph/12a81c722f23072807d5 to your computer and use it in GitHub Desktop.
Save whistlegraph/12a81c722f23072807d5 to your computer and use it in GitHub Desktop.
Gabriela Nav Structure
<nav>
<div class="top">
<ul>
<li data-bottom="one" class="current">One</li>
<li data-bottom="two">Two</li>
<li data-bottom="three">Three</li>
</ul>
</div>
<div class="bottom">
<ul data-top="one" class="showing">
<li>Thing 1</li>
<li>Thing 2</li>
<li>Thing 3</li>
</ul>
<ul data-top="two">
<li></li>
<li></li>
<li></li>
</ul>
<ul data-top="three">
<li></li>
<li></li>
<li></li>
</ul>
</div>
</nav>
.top .current {
font-weight: bold;
}
.bottom ul {
display: none;
}
.bottom ul.showing {
display: block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment