Created
August 10, 2013 22:43
-
-
Save ojacobson/6202515 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
@media (max-width: 767px) { | |
// cribbed from http://ansciath.tumblr.com/post/7347495869/css-aspect-ratio | |
// and also #comment-764668376 on that page. Horrifying CSS. | |
#map-container { | |
display: inline-block; | |
position: relative; | |
} | |
#map-container:before { | |
content: ""; | |
display: block; | |
padding-top: 75%; | |
} | |
svg.map { | |
position: absolute; | |
top: 0; | |
bottom: 0; | |
left: 0; | |
right: 0; | |
width: 100%; | |
height: 100%; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment