﻿/* DESKTOP */
@media only screen and (min-width:1025px) {
    .imageUploader {
        height:115px;
        border: 4px double #CCCCCC;
    }
}

/* TABLET */
@media only screen and (min-width:481px) and (max-width:1024px) {
    .imageUploader {
        height:115px;
        border: 4px double #CCCCCC;
    }
}
/* TABLET - VERTICALE*/
@media only screen and (min-width:481px) and (max-width:1024px) and (orientation: portrait) {
}
/* TABLET - ORIZZONTALE*/
@media only screen and (min-width:481px) and (max-width:1024px) and (orientation: landscape) {
}

/* MOBILE */
@media only screen and (max-width:480px) {
    .imageUploader {
        width:100%;
        border: 4px double #CCCCCC;
    }
}