MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


*body {
.body {
  background-image: url("/resources/assets/PageBackgroundHeader.png");
  background-image: url("/resources/assets/PageBackgroundHeader.png");
  background-color: #18191c;
  background-color: #18191c;

Revision as of 02:37, 4 January 2023

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

.body {
 background-image: url("/resources/assets/PageBackgroundHeader.png");
 background-color: #18191c;
 background-size: 100% 400px;
 background-repeat: no-repeat;
 background-position: center top;
}

/* Hide title and edit tools on main page */
.page-Main_Page .mw-side,
.page-Main_Page .firstHeading,
.page-Main_Page .mw-body-header,
.page-Main_Page #siteSub {
	display: none!important;
}