@CHARSET "UTF-8";
body {
background-color: red;
}
@media screen and (orientation:portrait) and (max-width : 800px),
screen and (orientation:landscape) and (max-height : 800px)
{
body {
background-color: orange;
}
}
@media screen and (orientation:portrait) and (max-width : 767px),
screen and (orientation:landscape) and (max-height : 767px)
{
body {
background-color: yellow;
}
}
@media screen and (orientation:portrait) and (max-width : 600px),
screen and (orientation:landscape) and (max-height : 600px)
{
body {
background-color: green;
}
}