Created
July 8, 2014 15:11
-
-
Save derhasi/1265b4d9e776ed5203e0 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> | |
Hello World! | |
</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.3.9) | |
// Compass (v1.0.0.alpha.20) | |
// Breakpoint (v2.4.2) | |
// ---- | |
$mobile: 0px 479px; | |
$mobile_landscape: 480px 767px; | |
$mobile_all: $mobile, $mobile_landscape; | |
$tab: 768px 899px, 1536px 1799px (min-resolution 2dppx); | |
$desk: 900px, 1800px (min-resolution 2dppx); | |
$tab_and_desk: $tab; | |
@import "breakpoint"; | |
@include breakpoint($mobile_all, true) { | |
div { | |
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 (min-width: 0px) and (max-width: 479px), (min-width: 480px) and (max-width: 767px) { | |
div { | |
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
<div> | |
Hello World! | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment