MediaWiki:Timeless.css: Difference between revisions

From Solstice
No edit summary
No edit summary
Line 1: Line 1:
/* All CSS here will be loaded for users of the Timeless skin */
/* All CSS here will be loaded for users of the Timeless skin */


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


/* article box */
/* page wrapper */
#mw-page-container {
    background-color: transparent !important;
}
 
/* Article box */
#mw-content-container {
#mw-content-container {
     background-color: #38a48c;
     background-color: rgba(56, 164, 140, 0.95) !important;
}
}


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


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

Revision as of 19:54, 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;
}

/* page wrapper */
#mw-page-container {
    background-color: transparent !important;
}

/* Article box */
#mw-content-container {
    background-color: rgba(56, 164, 140, 0.95) !important;
}

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

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