Skip to content

Instantly share code, notes, and snippets.

@pixelchar
Created December 4, 2013 14:35
Show Gist options
  • Save pixelchar/7788397 to your computer and use it in GitHub Desktop.
Save pixelchar/7788397 to your computer and use it in GitHub Desktop.
@mixin retina($ratio: 1.3) {
@media only screen and (-webkit-min-device-pixel-ratio: $ratio),
only screen and (min--moz-device-pixel-ratio: $ratio),
only screen and (-o-min-device-pixel-ratio: ($ratio*10)/10),
only screen and (min-resolution: #{round($ratio*96)}dpi),
only screen and (min-resolution: #{$ratio}dppx) {
@content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment