Created
August 28, 2012 01:38
-
-
Save hudsonperalta/3494155 to your computer and use it in GitHub Desktop.
Landscape Only
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
| <style type="text/css"> | |
| #landscape { | |
| display:none; | |
| } | |
| @media all and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) { | |
| #app-container { | |
| display:none; | |
| } | |
| #landscape-only { | |
| display:block; | |
| } | |
| } | |
| </style> | |
| <div id="landscape-only">This web app only supports landscape orientation. Please rotate your iPad.</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment