Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cobaltapps/6658800 to your computer and use it in GitHub Desktop.
Save cobaltapps/6658800 to your computer and use it in GitHub Desktop.
/* (Primary Navigation) Vertical Toggle Menu Styles: */
.responsive-primary-menu-container {
background: #333333;
border-bottom: 2px solid #DDDDDD;
width: 100%;
padding: 12px 0;
overflow: hidden;
cursor: pointer;
-webkit-box-sizing: border-box;
box-sizing: border-box;
display: none;
}
.responsive-primary-menu-container h3 {
padding-left: 15px;
color: #AAAAAA;
font-size: 16px; font-size: 1.6rem;
font-family: 'PT Sans', sans-serif;
font-weight: normal;
float: left;
}
.responsive-primary-menu-container .responsive-menu-icon {
padding: 5px 15px 0 0;
float: right;
}
.responsive-primary-menu-container .responsive-icon-bar {
display: block;
width: 18px;
height: 3px;
background: #AAAAAA;
margin: 1px 0;
float: right;
clear: both;
-webkit-border-radius: 1px;
border-radius: 1px;
}
/* (Secondary Navigation) Vertical Toggle Menu Styles: */
.responsive-secondary-menu-container {
background: #F5F5F5;
border-bottom: 2px solid #DDDDDD;
width: 100%;
padding: 12px 0;
overflow: hidden;
cursor: pointer;
-webkit-box-sizing: border-box;
box-sizing: border-box;
display: none;
}
.responsive-secondary-menu-container h3 {
padding-left: 15px;
color: #888888;
font-size: 16px; font-size: 1.6rem;
font-family: 'PT Sans', sans-serif;
font-weight: normal;
float: left;
}
.responsive-secondary-menu-container .responsive-menu-icon {
padding: 5px 15px 0 0;
float: right;
}
.responsive-secondary-menu-container .responsive-icon-bar {
display: block;
width: 18px;
height: 3px;
background: #888888;
margin: 1px 0;
float: right;
clear: both;
-webkit-border-radius: 1px;
border-radius: 1px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment