Skip to content

Instantly share code, notes, and snippets.

@asha23
Forked from vitalyrotari/nexus7.css
Created October 2, 2013 16:53
Show Gist options
  • Save asha23/6796787 to your computer and use it in GitHub Desktop.
Save asha23/6796787 to your computer and use it in GitHub Desktop.
@media only screen and (min-device-width: 800px) and (orientation: portrait) {
#device:after {
content: "Nexus 7 - portrait - firefox";
}
}
@media screen and (min-device-width : 602px) and (orientation: portrait) {
#device:after {
content: "Nexus 7 - portrait - chrome";
}
}
@media only screen and (min-device-width : 1280px) and (orientation: landscape) {
#device:after {
content: "Nexus 7 - landscape - firefox";
}
}
@media only screen and (min-device-width : 966px) and (orientation: landscape) {
body {
background-color: #008000;
}
#device:after {
content: "Nexus 7 - landscape - chrome";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment