MediaWiki:Mobile.css: Difference between revisions

From No Man's Land - A Trigun Wiki
Jump to navigation Jump to search
(Created page with "→‎All CSS here will be loaded for users of the mobile site: @media screen and (max-width:700px) { .mw-content-ltr figure[typeof="mw:File/Thumb"], .mw-content-ltr figure[typeof="mw:File/Frame"] { float:none; margin:auto; max-width:100%; } .wikitable.infobox { float:none; width:100%; margin:auto; } }")
(No difference)

Revision as of 20:15, 4 January 2024

/* All CSS here will be loaded for users of the mobile site */
@media screen and (max-width:700px) {
    .mw-content-ltr figure[typeof="mw:File/Thumb"], .mw-content-ltr figure[typeof="mw:File/Frame"] {
        float:none;
        margin:auto;
        max-width:100%;
    }
    .wikitable.infobox {
        float:none;
        width:100%;
        margin:auto;
    }
}