Created
September 12, 2012 09:57
-
-
Save almonk/3705665 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 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; | |
} | |
} | |
} | |
.logo{ | |
@include background-image-retina('../images/logo', 'png', 80px, 79px); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment