Just do the media query for the iPhone 4, not retina macbook

This commit is contained in:
Brett Goulder
2012-06-20 19:16:30 -06:00
parent 352d486ba1
commit c709104418

View File

@@ -198,9 +198,9 @@
img.example_image {
margin: 0px auto;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (min-device-pixel-ratio: 1.5) {
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) and (max-width: 640px),
only screen and (-o-min-device-pixel-ratio: 3/2) and (max-width: 640px),
only screen and (min-device-pixel-ratio: 1.5) and (max-width: 640px) {
img {
max-width: 290px;
}