Skip to content

Instantly share code, notes, and snippets.

@DriginCode
Created October 20, 2016 21:53
Show Gist options
  • Save DriginCode/d9c740d2a5188306eb0c26b9ac2ef86c to your computer and use it in GitHub Desktop.
Save DriginCode/d9c740d2a5188306eb0c26b9ac2ef86c to your computer and use it in GitHub Desktop.
mediacss-menu
/* Extra Small Devices, Phones */
@media only screen and (max-width : 479px) {
.main_menu ul {
display: none;
width:100%;
background-color: #9d8a71;
}
.main_menu ul li {
display: block;
}
}
/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {
}
/*========== Mobile First Method ==========*/
/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
}
/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
.main_menu_button {
display: none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment