Skip to content

Instantly share code, notes, and snippets.

@pablolobos
Created July 23, 2013 13:51
Show Gist options
  • Save pablolobos/6062483 to your computer and use it in GitHub Desktop.
Save pablolobos/6062483 to your computer and use it in GitHub Desktop.
mixin: mediaqueries
@mixin mq($keyword) {
@if $keyword == small {
@media (max-width: 420px) { @content; }
}
@if $keyword == medium {
@media (max-width: 768px) { @content; }
}
@if $keyword == desktop {
@media (max-width: 1100px) { @content; }
}
@if $keyword == large {
@media (min-width: 1400px) { @content; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment