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:
/* Change the background color of the header */
#mw-head {
    background-color: #222222;
}
/* Change the background color of the entire page */
/* Change the background color of the entire page */
body {
body {
     background-color: #222222; /* Light gray background */
     background-color: #222222; /* darker background */
}
}


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


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


Line 26: Line 31:
/* Change the text color of links */
/* Change the text color of links */
a {
a {
     color: #BC813B; /* Blue links */
     color: #BC813B; /* orangy links */
}
}

Revision as of 19:25, 14 June 2024

/* Change the background color of the header */
#mw-head {
    background-color: #222222; 
}

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

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

/* Adjusting background for menus */
.vector-menu-content {
    background-color: #222222;
}

/* Change the text color of the content area */
#content {
    color: #FFFFEE; /* off white */
}

/* Change the text color of headers */
h1, h2, h3, h4, h5, h6 {
    color: #FFFFEE; /* off white */
}

/* Change the text color of links */
a {
    color: #BC813B; /* orangy links */
}