MediaWiki:Timeless.css: Difference between revisions

From Solstice
No edit summary
No edit summary
Line 12: Line 12:
}
}


/* page wrapper */
/* inner wrappers */
#mw-page-container {
#mw-content-container,
     background-color: transparent !important;
#mw-content,
.mw-body {
     background: transparent !important;
}
}


/* Article box */
/* article content box */
#mw-content-container {
.mw-body {
     background-color: rgba(56, 164, 140, 0.95) !important;
     background-color: rgba(56, 164, 140, 0.95) !important;
    border-radius: 6px; /* optional, but looks nicer */
}
}


/* Header bar top of screen */
/* Header bar */
#mw-header-container {
#mw-header-container {
     background-color: #571c56 !important;
     background-color: #571c56 !important;

Revision as of 19:58, 25 May 2026

/* All CSS here will be loaded for users of the Timeless skin */

/* Site background image */
html,
body,
#mw-page-container {
    background-image: url("https://solsticewiki.com/images/8/81/Wikibg1.png") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

/* inner wrappers */
#mw-content-container,
#mw-content,
.mw-body {
    background: transparent !important;
}

/* article content box */
.mw-body {
    background-color: rgba(56, 164, 140, 0.95) !important;
    border-radius: 6px; /* optional, but looks nicer */
}

/* Header bar */
#mw-header-container {
    background-color: #571c56 !important;
}

/* Sidebar panels */
#mw-sidebars .mw-portlet {
    background-color: #f8d092 !important;
    border: 1px solid #159097 !important;
}