Created
May 16, 2012 22:00
-
-
Save alexcabrera/2714322 to your computer and use it in GitHub Desktop.
Best. Mixin. Ever.
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
| $break_small: 320px | |
| $break_large: 1024px | |
| @mixin respond-to($media) | |
| @if $media == handhelds | |
| @media only screen and (max-width: $break_small) | |
| @content | |
| @else if $media == medium-screens | |
| @media only screen and (min-width: $break_small + 1) and (max-width: $break_large - 1) | |
| @content | |
| @else if $media == wide-screens | |
| @media only screen and (min-width: $break_large) | |
| @content |
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
| img.avatar | |
| +border-radius(50em) | |
| +respond-to(handhelds) | |
| width: 70px | |
| +respond-to(medium-screens) | |
| max-width: 100% | |
| +respond-to(wide-screens) | |
| max-width: 120px |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment