Created
September 18, 2014 11:10
-
-
Save Stafox/cb21bce3421257874a07 to your computer and use it in GitHub Desktop.
Retina displays
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
@ratio: ''; // default ratio equals to 1 | |
@imagesPath: 'images/'; | |
body { | |
background-image: url('@{imagesPath}bg@{ratio}.jpg'); | |
} | |
@media screen and (-webkit-min-device-pixel-ratio: 2), | |
screen and (~`"-o-min-device-pixel-ratio: 2/1"`), | |
screen and (min--moz-device-pixel-ratio: 2), | |
screen and (-moz-min-device-pixel-ratio: 2), | |
screen and (-ms-min-device-pixel-ratio: 2), | |
screen and (min-device-pixel-ratio: 2), | |
screen and (min-resolution: 192dpi) { | |
@ratio: '@2x'; | |
body { | |
background-image: url('@{imagesPath}bg@{ratio}.jpg'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment