Created
July 3, 2012 23:16
-
-
Save averyvery/3044096 to your computer and use it in GitHub Desktop.
Mobile image
This file contains hidden or 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 mobile_bg($file){ | |
background-image: image-url('mobile/standard/#{$file}'); | |
@media screen and (-webkit-min-device-pixel-ratio: 2) { | |
background-image: image-url('mobile/retina/#{$file}'); | |
background-size: image-width('mobile/standard/#{$file}') image-height('mobile/standard/#{$file}'); | |
} | |
} | |
// Usage | |
.footer { | |
@include mobile_bg('footer.png'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment