MediaWiki:Vector.css

From Legendary Hardcore Wiki
Revision as of 09:28, 28 January 2026 by Admin (talk | contribs)
Jump to navigation Jump to search

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.
/* All CSS here will be loaded for users of the Vector skin */
:root {
  --background-top: url("/resources/assets/background_top.png");
  --background-bottom: url("/resources/assets/background_bottom.png");
  --background-top-size: 2000px;
  --background-bottom-size: 2000px;
  --content-border-top-color: #FFFFFF;
  --content-border-left-color: #FFFFFF;
  --content-background-color: #FFFFFF;
}

body {
  background-image: var(--background-top), var(--background-bottom);
  background-repeat: repeat-x, repeat;
  background-position: top center, top center;
  background-size: 100% auto, 100% auto;
  background-position: 0 0 !important;
  image-rendering: pixelated;

}