Merge pull request #1432 from brettgoulder/master

Just do the media query on the docs for the iPhone 4, not retina macbook pro
This commit is contained in:
Jeremy Ashkenas
2012-06-20 20:55:43 -07:00

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;
}