Skip to content

Instantly share code, notes, and snippets.

@Stafox
Created September 18, 2014 11:10
Show Gist options
  • Save Stafox/cb21bce3421257874a07 to your computer and use it in GitHub Desktop.
Save Stafox/cb21bce3421257874a07 to your computer and use it in GitHub Desktop.
Retina displays
@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