Jump to content

MediaWiki:Vector-2022.css

From Cameroon Heritage Encyclopedia

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* ==============================
   Vector 2022 – Header background
   ============================== */

.mw-header {
    position: relative;
    background-image: url("/wiki/index.php?title=Special:Redirect/file/Bgheader.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* White overlay to brighten the image */
.mw-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6); /* increase/decrease to taste */
    z-index: 0;
}

/* Ensure text/icons stay on top */
.mw-header > * {
    position: relative;
    z-index: 1;
}

/* Make header text dark and readable */
.mw-header,
.mw-header a,
.mw-header .mw-ui-icon {
    color: #1f1f1f !important;
}