Skip to content

Instantly share code, notes, and snippets.

@wernah
Created November 8, 2012 11:14
Show Gist options
  • Save wernah/4038224 to your computer and use it in GitHub Desktop.
Save wernah/4038224 to your computer and use it in GitHub Desktop.
Responsive mixins
@mixin respond-to($media) {
@if $media == iphone {
@media only screen and (max-width: 640px) { @content }
}
@else if $media == ipad {
@media only screen and (max-width: 980px) { @content }
}
@else if $media == ipad-landscape {
@media only screen and (max-width: 1024px) { @content }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment