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: Difference between revisions

MediaWiki interface page
No edit summary
m Changed CSS
Line 5: Line 5:
.scaevus-menu {
.scaevus-menu {
     display: flex;
     display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
     justify-content: center;
     justify-content: center;
     align-items: stretch;
     align-items: stretch;
     flex-wrap: nowrap;
     width: 100%;
    gap: 2px;
     margin: 15px 0 25px;
     margin: 15px 0 25px 0;
     padding: 4px;
     padding: 4px;
    box-sizing: border-box;
     background: #08080d;
     background: #08080d;
     border: 1px solid #6826c9;
     border: 1px solid #6826c9;
     border-radius: 6px;
     border-radius: 6px;
     box-shadow:
     box-shadow:
         0 0 12px rgba(125, 38, 255, 0.45),
         0 0 12px rgba(125, 38, 255, 0.45),
Line 20: Line 24:


.scaevus-menu-item {
.scaevus-menu-item {
     flex: 1 1 150px;
    display: block;
     flex: 1 1 0;
    min-width: 0;
     text-align: center;
     text-align: center;
}
}
Line 26: Line 32:
.scaevus-menu-item a {
.scaevus-menu-item a {
     display: block;
     display: block;
     padding: 13px 22px;
    height: 100%;
     padding: 13px 8px;
    box-sizing: border-box;
 
     color: #ffffff !important;
     color: #ffffff !important;
     font-size: 15px;
     font-size: 15px;
Line 33: Line 42:
     text-transform: uppercase;
     text-transform: uppercase;
     text-decoration: none !important;
     text-decoration: none !important;
     background: linear-gradient(
     background: linear-gradient(
         135deg,
         135deg,
Line 39: Line 49:
         #ad168f 100%
         #ad168f 100%
     );
     );
     border-radius: 3px;
 
    transition:
     border-right: 2px solid #08080d;
        background 0.25s ease,
}
        box-shadow 0.25s ease,
 
        transform 0.25s ease;
.scaevus-menu-item:last-child a {
    border-right: none;
}
}


.scaevus-menu-item a:hover {
.scaevus-menu-item a:hover {
     color: #ffffff !important;
     color: #ffffff !important;
     background: linear-gradient(
     background: linear-gradient(
         135deg,
         135deg,
Line 54: Line 66:
         #e322cd 100%
         #e322cd 100%
     );
     );
     box-shadow:
     box-shadow:
         0 0 10px rgba(49, 107, 255, 0.75),
         0 0 10px rgba(49, 107, 255, 0.75),
         0 0 18px rgba(219, 38, 255, 0.55);
         0 0 18px rgba(219, 38, 255, 0.55);
    transform: translateY(-2px);
}
}


.scaevus-menu-item a:visited {
.scaevus-menu-item a:visited {
     color: #ffffff !important;
     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;
    }
}
}

Revision as of 05:09, 8 July 2026

/* 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;
}