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 16: Line 16:
/* Change the text color of the entire page */
/* Change the text color of the entire page */
body {
body {
     color: #FF8000; /* Dark gray text */
     color: #ff0000; /* Dark gray text */
}
}


/* Change the text color of the content area */
/* Change the text color of the content area */
#content {
#content {
     color: #FF8000; /* Dark gray text */
     color: #ff0000; /* Dark gray text */
}
}

Revision as of 19:12, 14 June 2024

/* Change the background color of the entire page */
body {
    background-color: #222222; /* Light gray background */
}

/* Optionally, change the background color of the content area */
#content {
    background-color: #333333; /* White background */
}

/* You can also target other specific elements as needed */
.vector-menu-content {
    background-color: #222222; /* Adjusting background for menus */
}

/* Change the text color of the entire page */
body {
    color: #ff0000; /* Dark gray text */
}

/* Change the text color of the content area */
#content {
    color: #ff0000; /* Dark gray text */
}