Skip to content

Instantly share code, notes, and snippets.

@lunaroja
Created December 20, 2013 07:31
Show Gist options
  • Save lunaroja/8051536 to your computer and use it in GitHub Desktop.
Save lunaroja/8051536 to your computer and use it in GitHub Desktop.
Retina Mixin
@mixin retina() {
@media only screen and (-webkit-min-device-pixel-ratio: 1.25),
only screen and (min-resolution: 120dpi) {
@content;
}
}
.icon {
background-size: 200px 40px;
background-image: url(img/icons.png);
@include retina() {
background-image: url(img/icons-2x.png);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment