Skip to content

Instantly share code, notes, and snippets.

@gearmobile
Last active February 29, 2016 16:45
Show Gist options
  • Save gearmobile/72e90dd82380f1efadc4 to your computer and use it in GitHub Desktop.
Save gearmobile/72e90dd82380f1efadc4 to your computer and use it in GitHub Desktop.
Stylus Mixin Static Retina Image
retinaBackground($image, $ext = 'png') {
// pixel ratio of 1; background size is 100% (or 100px image)
background-image url('../images/' + $image + '.' + $ext)
// pixel ratio of 2; background-size is 200% (or 200px image)
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
background-image url('../images/' + $image + '@2x.' + $ext)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment