Skip to content

Instantly share code, notes, and snippets.

@antlypls
Forked from averyvery/mobile.css.scss
Created August 17, 2013 12:08
Show Gist options
  • Save antlypls/6256614 to your computer and use it in GitHub Desktop.
Save antlypls/6256614 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