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:07, 8 July 2026 by Scaevus (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.
/* CSS placed here will be applied to all skins */

/* Scaevus horizontal navigation menu */

.scaevus-menu {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: no-wrap;
    gap: 2px;
    margin: 15px 0 25px 0;
    padding: 4px;
    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 {
    flex: 1 1 150px;
    text-align: center;
}

.scaevus-menu-item a {
    display: block;
    padding: 13px 22px;
    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-radius: 3px;
    transition:
        background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.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);
    transform: translateY(-2px);
}

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

@media screen and (max-width: 650px) {
    .scaevus-menu {
        display: block;
    }

    .scaevus-menu-item {
        display: block;
        margin-bottom: 3px;
    }

    .scaevus-menu-item:last-child {
        margin-bottom: 0;
    }
}