
/*
include in header of page
        <meta name="viewport" content="width=device-width, initial-scale=0.75">
*/


/* For Mobile */
@media only screen and (max-width: 600px) {
    .view {
        width: 480px;
        max-width: 600px
    }
}

/* For Tablets */
@media only screen and (min-width: 601px) {
    .view {
        width: 600px;
        max-width: 800px
    }
}
