MediaWiki:Common.css: Difference between revisions

From Ghost Theory Wiki
No edit summary
Tag: Reverted
mNo edit summary
 
(19 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* === GLOBAL BACKGROUND === */
#ca-talk { display: none !important; }
body {
    background-color: #000000 !important;
    color: #ffffff !important;
}
 
/* === PAGE CONTENT AREA === */
#content,
.mw-body,
.mw-body-content {
    background-color: #111111 !important;
    color: #ffffff !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 1.25rem !important;
    box-sizing: border-box !important;
}
 
/* === LINKS === */
a {
    color: #ffea00 !important; /* yellow links */
}
 
a:visited {
    color: #c0c0c0 !important; /* silver visited links */
}
 
a:hover {
    color: #fff799 !important;
}
 
/* === HEADINGS === */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff !important;
}
 
/* === TABLES, INFOBOXES, BOXES === */
table,
.infobox,
.toc,
.mw-message-box,
.mw-notification {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    border-color: #333333 !important;
}
 
/* === MINERVA HAMBURGER MENU (FULL DARK) === */
.minerva-drawer,
.minerva-drawer__content,
.minerva-drawer__menu,
.minerva-drawer__header,
.minerva-drawer__footer {
    background-color: #000000 !important;
    color: #ffffff !important;
}
 
.minerva-drawer a {
    color: #ffea00 !important;
}
 
.minerva-drawer a:visited {
    color: #c0c0c0 !important;
}
 
/* === SEARCH BAR === */
.minerva-search-box,
.minerva-search-box input {
    background-color: #111111 !important;
    color: #ffffff !important;
    border-color: #333333 !important;
}


/* === FOOTER === */
/* Hide mobile version on desktop */
#footer,
.episode-image-mobile {
#footer-info,
     display: none;
#footer-places {
     background-color: #000000 !important;
    color: #ffffff !important;
}
}


/* === FIX WHITE FLASHES === */
/* Hide desktop version on small screens */
html,
@media screen and (max-width: 600px) {
body {
    .episode-image-desktop {
     background: #000000 !important;
        display: none;
    }
     .episode-image-mobile {
        display: block;
    }
}
}

Latest revision as of 15:11, 17 December 2025

#ca-talk { display: none !important; }

/* Hide mobile version on desktop */
.episode-image-mobile {
    display: none;
}

/* Hide desktop version on small screens */
@media screen and (max-width: 600px) {
    .episode-image-desktop {
        display: none;
    }
    .episode-image-mobile {
        display: block;
    }
}