MediaWiki:Vector.css: Difference between revisions

From Legendary Hardcore Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 8: Line 8:
   --content-border-top-color: #fff4e6;
   --content-border-top-color: #fff4e6;
   --content-border-left-color: #fff4e6;
   --content-border-left-color: #fff4e6;
   --content-background-color: #fff7ee;
   --content-background-color: #fffbf5;
}
}



Revision as of 10:14, 28 January 2026

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

:root {
  --background-top: url("/resources/assets/wiki_background_top.png");
  --background-bottom: url("/resources/assets/wiki_background_bottom.png");
  --background-top-size: 1856;
  --background-bottom-size: 1856;
  --content-border-top-color: #fff4e6;
  --content-border-left-color: #fff4e6;
  --content-background-color: #fffbf5;
}

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;

}

.skin-vector-legacy #mw-page-base {
	background: none;
}

.skin-vector-legacy .mw-body {
    position: relative;
    background-color: var(--content-background-color);
    border: none;
    border-top: 6px solid var(--content-border-top-color);
    border-left: 6px solid var(--content-border-left-color);
}