Page 2 of 2

Accessing assets

Posted: Wed Aug 01, 2012 3:46 pm
by maxkatz

Here is an example:

code
/* Portrait /
@media screen and (orientation:portrait) {
/ Portrait styles */
.btnColor {
color: red;
}
@media all and (min-width: 480px){
.btnColor { color: yellow; }
}

}
/* Landscape /
@media screen and (orientation:landscape) {
/ Landscape styles */
.btnColor {
color: blue;
}

}
/code