Last active
December 14, 2015 08:19
-
-
Save almonk/5056933 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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