Skip to content

Instantly share code, notes, and snippets.

@JeongInyoung
Created August 3, 2014 07:29
Show Gist options
  • Save JeongInyoung/08c5e93dbcbc83a005b1 to your computer and use it in GitHub Desktop.
Save JeongInyoung/08c5e93dbcbc83a005b1 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.14)
// Compass (v1.0.0.rc.0)
// Breakpoint (v2.4.6)
// ----
@import "breakpoint";
body {
background: url(bg.png);
}
@include breakpoint(min-resolution 1.5dppx) {
body {background: url([email protected]);}
}
body {
background: url(bg.png);
@include breakpoint(min-resolution 1.5dppx) {
background: url([email protected]);
}
}
body {
background: url(bg.png);
}
@media (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
body {
background: url([email protected]);
}
}
body {
background: url(bg.png);
}
@media (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
body {
background: url([email protected]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment