Skip to content

Instantly share code, notes, and snippets.

@almonk
Last active December 14, 2015 08:19
Show Gist options
  • Save almonk/5056933 to your computer and use it in GitHub Desktop.
Save almonk/5056933 to your computer and use it in GitHub Desktop.
@mixin at2x($image_name, $width, $height, $extention: '.png') {
background-image: image_url($image_name + $extention);
$x2img : $image_name + '@2x' + $extention;
@media (-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),
(min-resolution: 1.5dppx) {
background-image: image_url($x2img);
background-size: $width $height;
}
}
.logo {
@include at2x('logo', 80px, 30px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment