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 61: Line 61:
#mw-panel, #mw-panel a {
#mw-panel, #mw-panel a {
     color: #BC813B; /* Dark gray text */
     color: #BC813B; /* Dark gray text */
}
div#mw-panel div.portal div.body ul li a {
    color: #BC813B;
}
div#mw-panel div.portal div.body ul li a:visited {
    color: #825829;
}
}

Revision as of 09:34, 15 June 2024

table {
    background-color: #333333; /* Light gray background */
}

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

/* Change the text color of the sidebar */
#mw-panel {
    color: #BC813B; /* Dark gray text */

/* Customize other specific elements as needed */
.vector-menu-content {
    color: #BC813B; /* Dark gray text for menus */
}
/* Change the text color of the links in the sidebar */
#mw-panel .portal ul li a {
    color: #BC813B; /* Blue links */
}
/* Change the text color of visited links in the sidebar */
#mw-panel .portal ul li a:visited {
    color: #825829; /* Purple for visited links */
}
/* Change the text color of the sidebar */
#mw-panel, #mw-panel a {
    color: #BC813B; /* Dark gray text */
}
div#mw-panel div.portal div.body ul li a {
    color: #BC813B;
}
div#mw-panel div.portal div.body ul li a:visited {
    color: #825829;
}