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 7: Line 7:
}
}


#p-cactions {
#vector-appearance {
     display: none;
     display: none;
}
}

Revision as of 20:04, 20 February 2025

/* CSS placed here will be applied to all skins */
:root {
	--lt-color-background-default: #37383e;
	--background-color-base: #37383e;
	--font-color: #fff;
	--color-progressive: #a4b9d6;
}

#vector-appearance {
    display: none;
}

/* Change background color */
body {
    background-color: #730c0c !important;
    color: var(--font-color) !important;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--font-color);
}

/* Set background image */
body {
    /*background-image: url('/images/custom-background.png');*/
    background-size: cover;
    background-attachment: fixed;
}

/* Hide some stuff on main page */
.page-Main_page .toc {
	display: none;
}