Skip to content

Instantly share code, notes, and snippets.

@0xGGGGG
Created January 8, 2014 19:05
Show Gist options
  • Save 0xGGGGG/8322423 to your computer and use it in GitHub Desktop.
Save 0xGGGGG/8322423 to your computer and use it in GitHub Desktop.
.logo {
background: url("logo.png") no-repeat;
}
@media (min--moz-device-pixel-ratio: 1.3),
(-o-min-device-pixel-ratio: 2.6 / 2),
(-webkit-min-device-pixel-ratio: 1.3),
(min-device-pixel-ratio: 1.3),
(min-resolution: 1.3dppx) {
.logo {
background-image: url("logo2x.png");
background-size: 100px 25px;
}
}
// source: http://37signals.com/svn/posts/3271-easy-retina-ready-images-using-scss
@mixin image-2x($image, $width, $height) {
@media (min--moz-device-pixel-ratio: 1.3),
(-o-min-device-pixel-ratio: 2.6/2),
(-webkit-min-device-pixel-ratio: 1.3),
(min-device-pixel-ratio: 1.3),
(min-resolution: 1.3dppx) {
background-image: url($image);
background-size: $width $height;
}
}
.logo {
background: url("logo.png") no-repeat;
@include image-2x("logo2x.png", 100px, 25px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment