Skip to content

Instantly share code, notes, and snippets.

@scottymac
Forked from ddemaree/_retina.scss
Created May 1, 2013 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scottymac/5498001 to your computer and use it in GitHub Desktop.
Save scottymac/5498001 to your computer and use it in GitHub Desktop.
@mixin retina($ratio: 1.5) {
$dpi: $ratio * 96;
$opera-ratio: $ratio * 100;
@media only screen and (-webkit-min-device-pixel-ratio: #{$ratio}),
only screen and ( -o-min-device-pixel-ratio: '#{$opera-ratio}/100'),
only screen and ( min-resolution: #{$dpi}dpi),
only screen and ( min-resolution: #{$ratio}dppx) {
@content;
}
}
@import "retina";
.body-text {
font-weight: normal;
@include retina {
font-weight: 300;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment