Jump to content

MediaWiki:Common.css: Difference between revisions

From ZenithXI
Created page with "CSS placed here will be applied to all skins: Add animated GIF above sidebar navigation: #mw-panel:before { content: ""; display: block; width: 100%; height: 100px; Adjust based on your GIF height: background-image: url("https://wiki.zenithxi.com/db/resources/assets/animatedlogo.gif"); background-repeat: no-repeat; background-position: center; background-size: contain; margin-bottom: 10px; }"
 
No edit summary
 
(71 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
.vector-menu-content a {
/* Add animated GIF above sidebar navigation */
     color: var(--zx-text-muted) !important;
#mw-panel:before {
     content: "";
    display: block;
    width: 100%;
    height: 100px; /* Adjust based on your GIF height */
    background-image: url("https://wiki.zenithxi.com/db/resources/assets/animatedlogo.gif");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-bottom: 10px;
}
}
.vector-main-menu a:hover,
.vector-menu-content a:hover {
    color: var(--zx-gold-bright) !important;
}
.vector-menu-heading {
    font-family: var(--zx-font-display) !important;
    color: var(--zx-gold) !important;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px !important;
}
.mw-logo { display: none !important; }

Latest revision as of 21:44, 5 July 2026

.vector-menu-content a {
    color: var(--zx-text-muted) !important;
}
.vector-main-menu a:hover,
.vector-menu-content a:hover {
    color: var(--zx-gold-bright) !important;
}
.vector-menu-heading {
    font-family: var(--zx-font-display) !important;
    color: var(--zx-gold) !important;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px !important;
}
.mw-logo { display: none !important; }