MediaWiki:Vector.css

From PLD Archive
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* Change the background color of the header */
#mw-head {
    background-color: #222222; 
}
/* Customize other specific elements as needed */
.vector-menu-content {
    background-color: #222222; /* Adjusting background for menus */
}

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