Created
November 24, 2013 16:04
-
-
Save mturjak/7628729 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.3.0.rc.1) | |
| // Compass (v0.13.alpha.10) | |
| // ---- | |
| $max-mobile: 300px; | |
| @mixin isMobile() { | |
| @media only screen and (max-width: $max-mobile) { @content; } | |
| } | |
| .reset-values { | |
| width: 100%; | |
| height: 100px; | |
| left: auto; | |
| right: auto; | |
| top: auto; | |
| bottom: auto; | |
| } | |
| .box { | |
| top: 0; | |
| left: 0; | |
| width: 25%; | |
| height: 50%; | |
| @extend .reset-values; | |
| @include isMobile() { | |
| /* mobile specific properties */ | |
| } | |
| } |
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
| .reset-values, .box { | |
| width: 100%; | |
| height: 100px; | |
| left: auto; | |
| right: auto; | |
| top: auto; | |
| bottom: auto; | |
| } | |
| .box { | |
| top: 0; | |
| left: 0; | |
| width: 25%; | |
| height: 50%; | |
| } | |
| @media only screen and (max-width: 300px) { | |
| .box { | |
| /* mobile specific properties */ | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment