MediaWiki:Vector.css: Difference between revisions
MediaWiki interface page
More actions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
/* | /* Change the background color of the entire page */ | ||
body { | |||
background-color: #f0f0f0; /* Light gray background */ | |||
} | |||
# | /* Optionally, change the background color of the content area */ | ||
background-color: | #content { | ||
background-color: #ffffff; /* White background */ | |||
} | } | ||
/* You can also target other specific elements as needed */ | |||
.vector-menu-content { | |||
background-color: #f0f0f0; /* Adjusting background for menus */ | |||
} |
Revision as of 18:51, 14 June 2024
/* Change the background color of the entire page */ body { background-color: #f0f0f0; /* Light gray background */ } /* Optionally, change the background color of the content area */ #content { background-color: #ffffff; /* White background */ } /* You can also target other specific elements as needed */ .vector-menu-content { background-color: #f0f0f0; /* Adjusting background for menus */ }