Skip to content

Instantly share code, notes, and snippets.

@greypants
Created October 5, 2012 19:56
Show Gist options
  • Save greypants/3841997 to your computer and use it in GitHub Desktop.
Save greypants/3841997 to your computer and use it in GitHub Desktop.
SCSS: respond-to($query) mixin
@mixin respond-to($query) {
@media only screen and #{$query} {
@content
}
}
//Responsive Sizes
$small: '(max-width: 480px)';
$medium: '(max-width: 480px) and (max-width: 640px)';
@include respond-to($small) {
.whatever {
background: blue;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment