Skip to content

Instantly share code, notes, and snippets.

@wendyjap
Created September 18, 2016 17:26
Show Gist options
  • Save wendyjap/9243e67d10b82ab44c27841c7b556943 to your computer and use it in GitHub Desktop.
Save wendyjap/9243e67d10b82ab44c27841c7b556943 to your computer and use it in GitHub Desktop.
CSS Responsive Web Skeleton
/* COMMON STYLES
------------------------------------- */
/*--- Screen size code / lg ---*/
@media (min-width: 1281px) {
}
/*--- md --*/
@media (min-width: 992px) and (max-width: 1280px) {
}
/*----sm---*/
@media (min-width: 768px) and (max-width: 992px) {
}
/*----xs---*/
@media (max-width: 767px) {
}
/*mobile portrait */
@media (max-width: 479px) {
}
/* mobile landscape*/
@media (max-width: 767px) and (min-width: 480px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment