@CHARSET "UTF-8";

body {
background-color: red;
}

@media screen and (orientation:portrait) and (max-width:800px),
screen and (orientation:landscape) and (max-height:800px)
{
.touch.dw-cap-handled.dw-cap-movable body {
background-color: orange;
}
}

@media screen and (orientation:portrait) and (max-width:767px),
screen and (orientation:landscape) and (max-height:767px)
{
.touch.dw-cap-handled.dw-cap-movable body {
background-color: yellow;
}
}

@media screen and (orientation:portrait) and (max-width:600px),
screen and (orientation:landscape) and (max-height:600px)
{
.touch.dw-cap-handled.dw-cap-movable body {
background-color: green;
}
}