Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@pascalduez
Created January 31, 2014 13:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pascalduez/8731780 to your computer and use it in GitHub Desktop.
Save pascalduez/8731780 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.2.14)
// Compass (v0.12.2)
// Breakpoint (v2.0.7)
// Singularity.gs (v1.1.2)
// ----
@import "breakpoint";
@import "singularitygs";
$mq-hidpi: min-resolution 1.5dppx;
$grids: 8;
$gutters: 1/2;
.test-before {
@include grid-span(5, 1);
}
.test-mq {
@include breakpoint($mq-hidpi) {
content: "inside mq";
}
}
.test-after {
@include grid-span(5, 1);
}
.test-before {
width: 60.86957%;
float: left;
margin-right: -100%;
margin-left: 0%;
clear: none;
}
@media (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
.test-mq {
content: "inside mq";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment