Skip to content

Instantly share code, notes, and snippets.

@aderowbotham
Created July 3, 2013 09:19
Show Gist options
  • Save aderowbotham/5916584 to your computer and use it in GitHub Desktop.
Save aderowbotham/5916584 to your computer and use it in GitHub Desktop.
mobile layout not implemented notification message (for sites in development)
/* 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