Skip to content

Instantly share code, notes, and snippets.

@k33
Created September 25, 2014 08:38
Show Gist options
  • Save k33/abd4e289be4966a733b9 to your computer and use it in GitHub Desktop.
Save k33/abd4e289be4966a733b9 to your computer and use it in GitHub Desktop.
Menu Sticky for Bread & Butter (https://github.com/multiple-states/bread-butter)
.first-nav {
display: none;
}
@media (min-width: @break-1) {
/* First level navigation */
.l-first-nav-strip {
position: fixed;
left: 0;
z-index: 1200;
background-color: @highlight-1;
}
.first-nav {
display: block;
width: 100%;
}
.first-nav ul {
display: block;
margin: 0;
width: 100%;
}
.first-nav ul li {
float: left;
}
.first-nav ul li a {
display: block;
padding: 10px 20px;
background-color: @highlight-1;
}
.first-nav ul li a:hover {
background-color: @secondary-light;
}
/* Drop down styles */
.first-nav ul li ul {
display: none;
position: absolute;
width: auto;
}
.first-nav ul li ul>li {
float: left;
clear: both;
width: 100%;
}
.first-nav ul li: hover>ul {
display: block;
}
.first-nav ul li ul li a {
background-color: @highlight-2;
}
.first-nav ul li ul li a:hover {
background-color: @secondary-light;
}
}
<div class="l-strip l-first-nav-strip">
<div class="l-holder">
<div class="first-nav">
<?php include ('includes/menu.php'); ?>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment