Struggling with implementing a Metro app and dealing with the view state.
I currently have two view states, one for fullscreen and one for non-full screen.
Below is the code I am using to try to apply the non-fullscreen style by setting the max-width percentage, but it's not working:
/* Default CSS style for full screen */
.class1 {}
.class2 {}
/* Non-fullscreen style */
@media (min-width: 320px) and (max-width: 99%) {
.class1 {}
.class2 {}
}
Any suggestions on how to make this work? Thank you!