MediaWiki:Common.css: Difference between revisions

No edit summary
Tags: Mobile edit Mobile web edit
No edit summary
Line 60: Line 60:
     color: var(--kh-green) !important;
     color: var(--kh-green) !important;
     font-family: 'Cinzel', serif;
     font-family: 'Cinzel', serif;
}
/* FORCE DESKTOP VIEW ON MOBILE */
@media only screen and (max-width: 768px) {
    /* Prevent the container from collapsing */
    #cosmos-content, .mw-body, #content {
        min-width: 1000px !important;
        margin: 10px auto !important;
    }
    /* Keep the header wide enough for the links */
    #cosmos-header, .header-container {
        min-width: 1000px !important;
    }
    /* Ensure the body doesn't zoom in weirdly */
    body {
        min-width: 1000px !important;
        overflow-x: auto !important;
    }
}
}