Skip to content

Instantly share code, notes, and snippets.

@zwacky
Last active August 29, 2015 14:07
Show Gist options
  • Save zwacky/1f1f25ff863649d87391 to your computer and use it in GitHub Desktop.
Save zwacky/1f1f25ff863649d87391 to your computer and use it in GitHub Desktop.
/* declaration */
@size-tn: ~"(max-width: 479px)";
@size-xs: ~"(min-width: 480px) and (max-width: 767px)";
@size-sm: ~"(min-width: 768px) and (max-width: 991px)";
@size-md: ~"(min-width: 992px) and (max-width: 1199px)";
@size-lg: ~"(min-width: 1200px)";
/* example usage */
footer {
@media @size-xs {
// input
}
@media @size-md {
// input
}
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment