Skip to content

Instantly share code, notes, and snippets.

@kyleknighted
Created January 17, 2013 16:13
Show Gist options
  • Save kyleknighted/4557111 to your computer and use it in GitHub Desktop.
Save kyleknighted/4557111 to your computer and use it in GitHub Desktop.
@mixin retina-image($img, $img-hires) {
background: url(/images/#{$img}) no-repeat center center !important;
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and ( min--moz-device-pixel-ratio: 2),
only screen and ( -moz-min-device-pixel-ratio: 2),
only screen and ( -o-min-device-pixel-ratio: 2/1),
only screen and ( min-device-pixel-ratio: 2),
only screen and ( min-resolution: 192dpi),
only screen and ( min-resolution: 2dppx) {
background: url(/images/#{$img-hires}) no-repeat center center !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment