Skip to content

Instantly share code, notes, and snippets.

@mehedicsit
Created February 11, 2015 05:39
Show Gist options
  • Select an option

  • Save mehedicsit/219a65130b0028fa11b8 to your computer and use it in GitHub Desktop.

Select an option

Save mehedicsit/219a65130b0028fa11b8 to your computer and use it in GitHub Desktop.
My customised css3 queries for my personal use
@media (min-width:960px) and (max-width:1500px){
.slicknav_menu {
background: none repeat scroll 0 0 #4c4c4c;
display: none;
padding: 5px;
}
}
/* #1- Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 1015px) {
}
/* #2- Landscape phone to portrait tablet */
@media (min-width: 481px) and (max-width: 767px) {
}
/* #3- Landscape phones and down */
@media (max-width: 480px) {
}
/* very small devices*/
@media (max-width: 320px){
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment