Skip to content

Instantly share code, notes, and snippets.

@imlinus
Created November 22, 2013 12:16
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imlinus/7598990 to your computer and use it in GitHub Desktop.
Save imlinus/7598990 to your computer and use it in GitHub Desktop.
Retina mixin
$isRetina: "(-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5)";
@mixin retina {
@media #{$isRetina} { @content; }
}
// usage
.logotype {
width: 100px;
height: 50px;
background-image: url('path/to/image.png');
@include retina {
background-image: url('path/to/retina/image.png');
background-size: 100px 50px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment