Skip to content

Instantly share code, notes, and snippets.

@lukevers
Created September 12, 2013 19:46
Show Gist options
  • Save lukevers/6542854 to your computer and use it in GitHub Desktop.
Save lukevers/6542854 to your computer and use it in GitHub Desktop.
Basic
@charset "UTF-8"
/* Computers */
/* Content */
/* Tablets */
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1024px)
{
/* Media Specific Content */
}
/* Mobile Devices */
@media only screen
and (min-device-width: 320px)
and (max-device-width: 480px)
{
/* Media Speficic Content */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment