Skip to content

Instantly share code, notes, and snippets.

@andrexduarte
Forked from averyvery/mobile.css.scss
Created July 9, 2013 13:04
Show Gist options
  • Save andrexduarte/5957162 to your computer and use it in GitHub Desktop.
Save andrexduarte/5957162 to your computer and use it in GitHub Desktop.
@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