Jump to content

MediaWiki:Vector.css: Difference between revisions

From Chuckipedia
Created page with "All CSS here will be loaded for users of the Vector skin: Dark mode for Vector skin: body { background-color: #1e1e1e; color: #c9d1d9; } a { color: #58a6ff; } .mw-body { background-color: #1e1e1e; } .mw-head { background-color: #22272e; }"
 
No edit summary
 
(7 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 */
/* Change the background color of all elements with IDs starting with "result-card-page-" */
body {
div[id^="result-card-page-"] {
    background-color: #1e1e1e;
  background-color: rgb(32, 33, 34) !important;
    color: #c9d1d9;
}
}
a {
 
    color: #58a6ff;
/* Make the background of the .card-data-section children transparent */
}
div[id^="result-card-page-"] .card-data-section {
.mw-body {
  background-color: transparent !important;
    background-color: #1e1e1e;
}
.mw-head {
    background-color: #22272e;
}
}

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