Jump to content

MediaWiki:Common.css

From Wimbum Vault
Revision as of 09:27, 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.
/* GENERAL LOGO FIX */
#p-logo {
    z-index: 1;
    position: relative;
    margin-top: 0;
}

/* Logo behavior on mobile */
@media screen and (max-width: 768px) {
    #p-logo {
        max-width: 120px;
        max-height: 50px;
        margin: 0 auto;
        padding: 10px 0;
        display: block;
        text-align: center;
    }

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

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

    /* Adjust menu so it doesn't overlap */
    #mw-panel {
        padding-top: 60px;
    }
}

/* Make logo clickable back to homepage */
#p-logo a {
    display: block;
    width: 100%;
    height: 100%;
}