MediaWiki:Common.css: Difference between revisions

From Structorica Wiki
Jump to navigation Jump to search
m Protected "MediaWiki:Common.css": This page is fully protected because it provides interface text on this wiki. ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will apply to all skins */
/**/
 
/*** BASE STYLES AND SETTINGS ***/
 
/** Color variables that could be changed by various skin themes */
 
/* LIGHT THEME - default */
:root,
.skin-invert,
.notheme {
    --background-color-base: #303031; /* Background Colors for static elements (for page layout, sections, etc.) from here on. */
    --color-base: #303031;
}
 
/* DARK THEME - Structorica Dark Theme */
:root .stw-theme-dark {
    --background-color-base: #161618; /* Background Colors for static elements (for page layout, sections, etc.) from here on. */
    --color-base: #f8f5f4;
}
 
/* Img */
.img-responsive,
.img-responsive img {
    max-width: 100%;
    height: auto;
}

Revision as of 12:30, 30 December 2025

/* CSS placed here will apply to all skins */

/*** BASE STYLES AND SETTINGS ***/

/** Color variables that could be changed by various skin themes */

/* LIGHT THEME - default */
:root,
.skin-invert,
.notheme {
    --background-color-base: #303031; /* Background Colors for static elements (for page layout, sections, etc.) from here on. */
    --color-base: #303031;
}

/* DARK THEME - Structorica Dark Theme */
:root .stw-theme-dark {
    --background-color-base: #161618; /* Background Colors for static elements (for page layout, sections, etc.) from here on. */
    --color-base: #f8f5f4;
}

/* Img */
.img-responsive,
.img-responsive img {
    max-width: 100%;
    height: auto;
}