Skip to content

Instantly share code, notes, and snippets.

@danilostrazzullo
Forked from twe4ked/input.scss
Last active December 11, 2015 21:58
Show Gist options
  • Save danilostrazzullo/4665837 to your computer and use it in GitHub Desktop.
Save danilostrazzullo/4665837 to your computer and use it in GitHub Desktop.
// RETINA MEDIA QUERY
// '@include background-image-retina('foobar', 'png', 10px, 20px);'
@mixin background-image-retina($file, $type, $width, $height) {
background-image: url($file + '.' + $type);
@media (-webkit-min-device-pixel-ratio: 2), (-moz-min-device-pixel-ratio: 2) {
& {
background-image: url($file + '@2x.' + $type);
-webkit-background-size: $width $height;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment