Created
August 3, 2014 07:29
-
-
Save JeongInyoung/08c5e93dbcbc83a005b1 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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.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]); | |
} | |
} |
This file contains 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
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