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 */
/* Header */
#mw-head {
#mw-head {
     background-color: #222222;  
     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 */
/* Entire page background */
body {
body {
     background-color: #222222; /* darker background */
     background-color: #222222; /* darker background */
}
}


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


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


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


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


/* Change the text color of links */
/* Links text color */
a {
a {
     color: #BC813B; /* orangy links */
     color: #BC813B;
}
 
a:visited {
    color: #825829; /* Purple for visited links */
}
}

Revision as of 19:30, 14 June 2024

/* Header */
#mw-head {
    background-color: #222222; 
}

/* Entire page background */
body {
    background-color: #222222; /* darker background */
}

/* Content area */
#content {
    background-color: #333333; 
}

/* Menus background */
.vector-menu-content {
    background-color: #222222;
}

/* Text color of the content area */
#content {
    color: #FFFFEE; 
}

/* Header text color */
h1, h2, h3, h4, h5, h6 {
    color: #FFFFEE; 
}

/* Links text color */
a {
    color: #BC813B; 
}

a:visited {
    color: #825829; /* Purple for visited links */
}