Jump to content

MediaWiki:Vector.css: Difference between revisions

From Chuckipedia
No edit summary
Tag: Reverted
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* All CSS here will be loaded for users of the Vector skin */
/* All CSS here will be loaded for users of the Vector skin */


/* Softer Dark Mode for Vector Skin */
/* Change the background color of all elements with IDs starting with "result-card-page-" */
body {
div[id^="result-card-page-"] {
    background-color: #2b2b2b; /* Medium-dark gray */
  background-color: rgb(32, 33, 34) !important;
    color: #e0e0e0; /* Light gray text */
}
}


/* Links */
/* Make the background of the .card-data-section children transparent */
a {
div[id^="result-card-page-"] .card-data-section {
    color: #58a6ff; /* Bright blue for normal links */
  background-color: transparent !important;
}
a:visited {
    color: #a182ff; /* Light purple for visited links */
}
a:hover {
    color: #82cfff; /* Lighter blue on hover */
}
a:active {
    color: #ffcc66; /* Orange for active/clicked links */
}
 
/* Main Wiki Content Area */
.mw-body {
    background-color: #333; /* Slightly lighter than body */
}
 
/* Header */
.mw-head {
    background-color: #3a3a3a; /* Medium gray */
}
 
/* Sidebar Navigation */
#mw-panel {
    background-color: #3a3a3a; /* Slightly lighter */
}
}

Latest revision as of 23:14, 26 February 2025

/* All CSS here will be loaded for users of the Vector skin */

/* Change the background color of all elements with IDs starting with "result-card-page-" */
div[id^="result-card-page-"] {
  background-color: rgb(32, 33, 34) !important;
}

/* Make the background of the .card-data-section children transparent */
div[id^="result-card-page-"] .card-data-section {
  background-color: transparent !important;
}