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

MediaWiki:Vector.css: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Line 1: Line 1:
/* All CSS here will be loaded for users of the Vector skin */
/* Change the background color of the entire page */
body {
    background-color: #f0f0f0; /* Light gray background */
}


#mw-body {
/* Optionally, change the background color of the content area */
     background-color: red;
#content {
     background-color: #ffffff; /* White background */
}
}


#content { color: #ffffff; }
/* You can also target other specific elements as needed */
#content p{ color: #c1c1c1; }
.vector-menu-content {
#content h1{ color: #ffffff; }
    background-color: #f0f0f0; /* Adjusting background for menus */
#content h2{ color: #ffffff; }
}

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 */
}