Skip to content

Instantly share code, notes, and snippets.

@sammarks
Created June 14, 2013 17:48
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 sammarks/5783858 to your computer and use it in GitHub Desktop.
Save sammarks/5783858 to your computer and use it in GitHub Desktop.
@media (min-width: 1200px) {
@import "large-display.less";
}
@media (min-width: 980px) and (max-width: 1199px) {
@import "desktop.less";
}
@media (min-width: 768px) and (max-width: 979px) {
@import "portrait-tablets.less";
}
@media (min-width: 480px) and (max-width: 767px) {
@import "phones-to-tablets.less";
}
@media (max-width: 480px) {
@import "phones.less";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment