Jump to content

MediaWiki:Common.css

From Wimbum Vault
Revision as of 09:42, 23 April 2025 by Bosang (talk | contribs)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* Fix logo position and visibility for mobile */
@media screen and (max-width: 768px) {
    #p-logo {
        max-width: 120px;
        height: auto;
        margin: 0 auto;
        padding: 10px 0;
        display: block;
        background: none;
    }

    #p-logo a,
    #p-logo a img {
        display: block;
        margin: 0 auto;
        max-width: 100%;
        height: auto;
    }

    /* Hide tagline on small screens */
    .mw-wiki-logo-tagline {
        display: none;
    }

    /* Push content below logo */
    #mw-panel {
        padding-top: 100px;
    }
}