Created
July 3, 2013 09:19
-
-
Save aderowbotham/5916584 to your computer and use it in GitHub Desktop.
mobile layout not implemented notification message
(for sites in development)
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
/* mobile | |
============================================================================================== */ | |
@media screen and (min-width: 0) and (max-width: 700px) { | |
/* hide everything */ | |
div, span, p | |
{ | |
display: none; | |
} | |
body:before { | |
background: #ffc; | |
width: 96%; | |
padding: 1em 2%; | |
float: left; | |
clear: both; | |
font-size: 14px; | |
font-size: .875rem; | |
content: "Mobile layout not implemented"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment