Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Line 25: Line 25:
background-color: #1E1E1E !important;
background-color: #1E1E1E !important;
color: white !important;
color: white !important;
         border: #a2a9b1;
         border: 2px solid #a2a9b1 !important;
}
}


Line 32: Line 32:
background-color: #1E1E1E !important;
background-color: #1E1E1E !important;
color: white !important;
color: white !important;
         border: #a2a9b1;
         border: 2px solid #a2a9b1 !important;
     }
     }
}
}
Line 38: Line 38:
html.skin-theme-clientpref-night .main-page-block {
html.skin-theme-clientpref-night .main-page-block {
background-color: black !important;
background-color: black !important;
         border: #a2a9b1;
         border: 2px solid #a2a9b1 !important;
}
}


Line 44: Line 44:
html.skin-theme-clientpref-os .main-page-block {
html.skin-theme-clientpref-os .main-page-block {
background-color: black !important;
background-color: black !important;
         border: #a2a9b1;
         border: 2px solid #a2a9b1 !important;
     }
     }
}
}

Revision as of 11:35, 25 February 2025

/* CSS placed here will be applied to all skins */

.infobox-table th {
    vertical-align: top;
}

.infobox-table td {
    vertical-align: top;
}


html.skin-theme-clientpref-night .infobox-table {
		background-color: black !important;
		color: white !important;
}

@media screen and (prefers-color-scheme: dark) {
	html.skin-theme-clientpref-os .infobox-table {
		background-color: black !important;
		color: white !important;
     }
}

html.skin-theme-clientpref-night .main-page-header {
		background-color: #1E1E1E !important;
		color: white !important;
        border: 2px solid #a2a9b1 !important;
}

@media screen and (prefers-color-scheme: dark) {
	html.skin-theme-clientpref-os .main-page-header {
		background-color: #1E1E1E !important;
		color: white !important;
        border: 2px solid #a2a9b1 !important;
     }
}

html.skin-theme-clientpref-night .main-page-block {
		background-color: black !important;
        border: 2px solid #a2a9b1 !important;
}

@media screen and (prefers-color-scheme: dark) {
	html.skin-theme-clientpref-os .main-page-block {
		background-color: black !important;
        border: 2px solid #a2a9b1 !important;
     }
}