Created
April 22, 2014 13:57
-
-
Save krisbulman/11180257 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
| <div class="example">Breakpoint Test</div> |
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) | |
| // Breakpoint (v2.0.7) | |
| // ---- | |
| @import "breakpoint"; | |
| // Breakpoint | |
| // ---------- | |
| $breakpoint-to-ems: true; | |
| $breakpoints: 'tablet' 768px, | |
| 'desktop' 1230px; | |
| $breakpoint-no-query-fallbacks: false; | |
| .example { | |
| background: green; | |
| @include respond-to(tablet) { | |
| background: orange; | |
| } | |
| @include respond-to(desktop) { | |
| background: 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
| .example { | |
| background: green; | |
| } | |
| @media (min-width: 48em) { | |
| .example { | |
| background: orange; | |
| } | |
| } | |
| @media (min-width: 76.875em) { | |
| .example { | |
| background: 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
| <div class="example">Breakpoint Test</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment