Skip to content

Instantly share code, notes, and snippets.

@hatefulcrawdad
Created August 7, 2014 00:25
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 hatefulcrawdad/b06fc812de724c5640a1 to your computer and use it in GitHub Desktop.
Save hatefulcrawdad/b06fc812de724c5640a1 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.2.19)
// Compass (v0.12.6)
// ----
@mixin media($args)
@if length($args) > 2
@media screen and (#{nth($args, 1)}: nth($args, 2)) and (#{nth($args, 3)}: nth($args, 4))
@content
@else
@media screen and (#{nth($args, 1)}: nth($args, 2))
@content
+media(min-height 400px max-height 800px)
color: red
+media(min-width 400px max-width 800px)
color: red
@media screen and (min-height: 400px) and (max-height: 800px) {
color: red;
}
@media screen and (min-width: 400px) and (max-width: 800px) {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment