Skip to content

Instantly share code, notes, and snippets.

@neilff
Created August 25, 2014 15:24
Show Gist options
  • Save neilff/3cba4429519c98e4586e to your computer and use it in GitHub Desktop.
Save neilff/3cba4429519c98e4586e to your computer and use it in GitHub Desktop.
Simple mobile first CSS module
/**
* Mobile
*/
.example {
}
/**
* Tablet Vertical
*/
@media screen and (min-width: 768px) {
.example {
}
}
/**
* Tablet Horizontal
*/
@media screen and (min-width: 992px) {
.example {
}
}
/**
* Desktop
*/
@media screen and (min-width: 1200px) {
.example {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment