Skip to content

Instantly share code, notes, and snippets.

@bkenny
Created December 7, 2015 08:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bkenny/2f69781ee9f91c915993 to your computer and use it in GitHub Desktop.
Save bkenny/2f69781ee9f91c915993 to your computer and use it in GitHub Desktop.
@media only screen and (min-width: 1024px) {
/* Add your custom styles here for Desktop */
}
@media only screen and (max-width: 1023px) {
/* Add your custom styles here for Tablet */
}
@media only screen and (max-width: 640px) {
/* Add your custom styles here for Large Mobile */
}
@media only screen and (max-width: 480px) {
/* Add your custom styles here for Small Mobile */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment