Skip to content

Instantly share code, notes, and snippets.

@rolka
Created April 18, 2013 19:42
Show Gist options
  • Save rolka/5415644 to your computer and use it in GitHub Desktop.
Save rolka/5415644 to your computer and use it in GitHub Desktop.
CSS: Media Queries
@media all and (max-width: 600px) {
body {
// Extra styles for mobile
}
}
@media all and (min-width: 600px) {
body {
// Extra styles for desktop
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment