Created
August 7, 2014 00:25
-
-
Save hatefulcrawdad/b06fc812de724c5640a1 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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