Last active
August 29, 2015 14:06
-
-
Save kmgdevelopment/2b7220c87e791d13cfe8 to your computer and use it in GitHub Desktop.
Retina Media Queries
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
/* small screen, 72ppi */ | |
.banner { | |
background-image: url(/assets/img/tmp/detail-s.jpg); | |
} | |
/* small screen, 192ppi */ | |
@media screen and (max-width: 42.611em) | |
and (-webkit-min-device-pixel-ratio: 2), | |
(min-resolution: 192dppx) { | |
.banner { | |
background-image: url(/assets/img/tmp/detail-s-2x.jpg); | |
} | |
} | |
/* medium screen, 72ppi */ | |
@media screen and (min-width: 42.66667em) { | |
.banner { | |
background-image: url(/assets/img/tmp/detail-m.jpg); | |
} | |
} | |
/* medium screen, 192ppi */ | |
@media screen and (min-width: 42.66667em) | |
and (-webkit-min-device-pixel-ratio: 2), | |
(min-resolution: 192dppx) { | |
.banner { | |
background-image: url(/assets/img/tmp/detail-m-2x.jpg); | |
} | |
} | |
/* large screen, 72ppi */ | |
@media screen and (min-width: 55.11111em) { | |
.banner { | |
background-image: url(/assets/img/tmp/detail-l.jpg); | |
} | |
} | |
/* large screen, 192ppi */ | |
@media screen and (min-width: 55.11111em) | |
and (-webkit-min-device-pixel-ratio: 2), | |
(min-resolution: 192dppx) { | |
.banner { | |
background-image: url(/assets/img/tmp/detail-l-2x.jpg); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment