Created
April 11, 2012 09:26
-
-
Save irishstu/2358222 to your computer and use it in GitHub Desktop.
Responsive Zurb Reveal modals
This file contains 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
/* Less than 480px */ | |
@media screen and (max-width: 480px) { | |
.reveal-modal { | |
visibility: hidden; | |
top: 40px; | |
left: 0; | |
margin-left: 0; | |
width: 100%; | |
} | |
} | |
/* Less than 580px */ | |
@media screen and (min-width: 481px) and (max-width: 580px) { | |
.reveal-modal { | |
visibility: hidden; | |
top: 40px; | |
left: 50%; | |
margin-left: -220px; | |
width: 440px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment