Skip to content

Instantly share code, notes, and snippets.

@derhasi
Created July 8, 2014 15:11
Show Gist options
  • Save derhasi/1265b4d9e776ed5203e0 to your computer and use it in GitHub Desktop.
Save derhasi/1265b4d9e776ed5203e0 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div>
Hello World!
</div>
// ----
// 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;
}
}
@media (min-width: 0px) and (max-width: 479px), (min-width: 480px) and (max-width: 767px) {
div {
color: red;
}
}
<div>
Hello World!
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment