Created
May 19, 2013 04:50
-
-
Save nhall/5606726 to your computer and use it in GitHub Desktop.
CSS for swapping hi-res background images.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
----------------------------------------------------------------------------- | |
=High Resolution Images | |
----------------------------------------------------------------------------- */ | |
@media screen and (-webkit-min-device-pixel-ratio: 1.3), | |
screen and (min--moz-device-pixel-ratio: 1.3), | |
screen and (-o-min-device-pixel-ratio: 2 / 1), | |
screen and (min-device-pixel-ratio: 1.3), | |
screen and (min-resolution: 192dpi), | |
screen and (min-resolution: 2dppx) { | |
#site-name a { | |
background-image: url(/images/common/bg-logo-2x.png); | |
-webkit-background-size: 303px 25px; | |
-moz-background-size: 303px 25px; | |
-o-background-size: 303px 25px; | |
background-size: 303px 25px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment