Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css

MediaWiki interface page
Revision as of 05:09, 8 July 2026 by Scaevus (talk | contribs) (Changed CSS)

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.
/* CSS placed here will be applied to all skins */

/* Scaevus horizontal navigation menu */

.scaevus-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    margin: 15px 0 25px;
    padding: 4px;
    box-sizing: border-box;

    background: #08080d;
    border: 1px solid #6826c9;
    border-radius: 6px;

    box-shadow:
        0 0 12px rgba(125, 38, 255, 0.45),
        0 0 24px rgba(225, 32, 255, 0.18);
}

.scaevus-menu-item {
    display: block;
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
}

.scaevus-menu-item a {
    display: block;
    height: 100%;
    padding: 13px 8px;
    box-sizing: border-box;

    color: #ffffff !important;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none !important;

    background: linear-gradient(
        135deg,
        #182a75 0%,
        #6021a8 50%,
        #ad168f 100%
    );

    border-right: 2px solid #08080d;
}

.scaevus-menu-item:last-child a {
    border-right: none;
}

.scaevus-menu-item a:hover {
    color: #ffffff !important;

    background: linear-gradient(
        135deg,
        #175bea 0%,
        #8428e8 48%,
        #e322cd 100%
    );

    box-shadow:
        0 0 10px rgba(49, 107, 255, 0.75),
        0 0 18px rgba(219, 38, 255, 0.55);
}

.scaevus-menu-item a:visited {
    color: #ffffff !important;
}