Created
July 14, 2016 12:00
-
-
Save morhetz/0cce0d6ba441ed6401936adc25ccdafc to your computer and use it in GitHub Desktop.
This file contains hidden or 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
.image { | |
background: set('/images/icons/baz.jpg') at-4x; | |
} | |
/* ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ */ | |
.image { | |
background: url('/images/icons/[email protected]'); | |
} | |
@media (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) { | |
.image { | |
background: url('/images/icons/[email protected]'); | |
} | |
} | |
@media (min-device-pixel-ratio: 2.5), (min-resolution: 216dpi), (min-resolution: 2.5dppx) { | |
.image { | |
background: url('/images/icons/[email protected]'); | |
} | |
} | |
@media (min-device-pixel-ratio: 3.5), (min-resolution: 288dpi), (min-resolution: 3.5dppx) { | |
.image { | |
background: url('/images/icons/[email protected]'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment