Jump to content

MediaWiki:Vector.css: Difference between revisions

From Chuckipedia
No edit summary
No edit summary
 
(6 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 */


/* Dark mode for Vector skin - Grey background */
/* Change the background color of all elements with IDs starting with "result-card-page-" */
body {
div[id^="result-card-page-"] {
    background-color: #36393f; /* Lighter grey background */
  background-color: rgb(32, 33, 34) !important;
    color: #c9d1d9;
}
}


a {
/* Make the background of the .card-data-section children transparent */
    color: #58a6ff;
div[id^="result-card-page-"] .card-data-section {
}
  background-color: transparent !important;
 
.mw-body {
    background-color: #36393f; /* Consistent grey background */
}
 
.mw-head {
    background-color: #424549; /* Slightly darker grey for header */
}
 
.mw-body-content {
    background-color: #2e3136; /* a slightly darker background for the main content area */
}
 
.mw-body-content a {
    color: #89b3eb; /* a slightly different color for links in the main content area */
}
}
}

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;
}