Skip to content

Instantly share code, notes, and snippets.

@adamstac
Forked from jamesfinley/Hi-res Graphic Mixin
Created September 17, 2011 14:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamstac/1223970 to your computer and use it in GitHub Desktop.
Save adamstac/1223970 to your computer and use it in GitHub Desktop.
A simple way to include both low-res and hi-res graphics for iOS/Desktop/etc.
@mixin hires-graphic($file, $type, $width, $height)
$file-name: $file + "." + $type
$retina-name: $file + "-retina." + $type
@media (-webkit-min-device-pixel-ratio: 2)
&
background-image: image-url($retina-name)
-webkit-background-size: $width $height
.facebook
display: block
width: 20px
height: 20px
background-repeat: no-repeat
@include hires-graphic('icon-facebook', 'png', 20px, 20px)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment