Skip to content

Instantly share code, notes, and snippets.

@schnell18
Created February 25, 2014 00:50
Show Gist options
  • Save schnell18/9200451 to your computer and use it in GitHub Desktop.
Save schnell18/9200451 to your computer and use it in GitHub Desktop.
CSS skeleton for Responsive Web Design
/* Put your reset styles here */
/* Put styles for desktop and basic styles for all devices here */
body {
/* properties for body here */
}
/* medium display only */
@media (min-width: 481px) and (max-width:768px) {
body {
/* properties that only apply to tablets */
}
}
/* small display only */
@media (max-width:480px) {
body {
/* properties that only apply to phones */
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment