/**
 * The contents of this file are subject to the license and copyright
 * detailed in the LICENSE and NOTICE files at the root of the source
 * tree and available online at
 *
 * http://www.dspace.org/license/
 */
/*
 * Media queries for responsive design
 */
@media all and (orientation: portrait) {
    /* Style adjustments for portrait mode goes here */
    }
@media all and (orientation: landscape) {
    /* Style adjustments for landscape mode goes here */
    }
/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
    /* Prevent iOS, WinMobile from adjusting font size */
    html {
        -webkit-text-size-adjust: none;
        -ms-text-size-adjust: none
        }
    }