MediaWiki:Vector.css: Difference between revisions

From bg3.wiki
Jump to navigation Jump to search
(Opacity should be %)
(rgba(hex, opacity) doesn't seem to exist. use rgba(number, number, number, number))
Line 183: Line 183:


:root {
:root {
   --bg3wiki-itemicon-common: #484848;
   --bg3wiki-itemicon-common: 72, 72, 72;
   --bg3wiki-itemicon-uncommon: #01BD39;
   --bg3wiki-itemicon-uncommon: 1, 189, 57;
   --bg3wiki-itemicon-rare: #01BFFF;
   --bg3wiki-itemicon-rare: 1, 191, 255;
   --bg3wiki-itemicon-very-rare: #D1017B;
   --bg3wiki-itemicon-very-rare: 209, 1, 123;
   --bg3wiki-itemicon-legendary: #B7861D;
   --bg3wiki-itemicon-legendary: 183, 134, 29;
   --bg3wiki-itemicon-story: #FF5901;
   --bg3wiki-itemicon-story: 255, 89, 1;
   --bg3wiki-itemicon-gradient-top-opacity: 0%;
   --bg3wiki-itemicon-gradient-top-opacity: 0%;
   --bg3wiki-itemicon-gradient-bot-opacity: 12.5%;
   --bg3wiki-itemicon-gradient-bot-opacity: 12.5%;

Revision as of 14:48, 17 September 2023

/* CSS placed here will affect users of the Vector skin */

html {
	/* This is just for while the background image is loading. */
	background-color: black !important;
	
	/* Whole-page image background */
	background-image: url(/static/background.webp);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: top;
	background-size: cover;
}

body.theme-dark-grey {
	/* Gradient background for centered body. */
	background: linear-gradient(rgba(27 27 27 / 90%) 80%, transparent);
}

.vector-body h3 {
	font-size: 1.25em;
}

.vector-body h4 {
	font-size: 1.2em;
}

.wikitable caption {
	padding: 5px;
}

.wikitable tr :is(th, td) {
	padding-left: 0.8em;
	padding-right: 0.8em;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}

.wikitable tr td :is(ol, ul) {
	margin: 0 0 0 1em;
}

/* 
 * Make some warnings more prominent
 */

body.theme-dark-grey .mw-userconfigpublic {
	color: yellow;
}

body.theme-dark-grey .mw-userconfigdangerous {
	color: red;
	font-weight: bold;
}

/* 
 * Main Page
 */

@media screen and (min-width: 780px) {
	.bg3wiki-mainpage-left {
		float: left;
		padding-left: 10px;
		padding-right: 15px;
		width: calc(50% - 25px);
	}
	.bg3wiki-mainpage-right {
		float: right;
		padding-left: 15px;
		padding-right: 10px;
		width: calc(50% - 25px);
	}
}

body:is(.page-Main_Page, .page-Template_MainPageDesktop) h2 {
	text-align: center;
}

/*
 * Conditionally hiding things on narrow screens
 */

@media screen and (max-width: 1199px) {
	.bg3wiki-minwidth-1200 {
		display: none;
	}
}

/*
 * Feedback Footer
 */

body.theme-dark-grey .bg3wiki-article-footer {
	border: 1px solid var(--bdr-color);
	background-color: var(--bg-dark);
}

.bg3wiki-article-footer {
	font-size: 1.1em;
	margin-top: 1em;
	padding: 0.5em;
}

/*
 * Various elements used across the wiki
 */

/* Info blob */

body.theme-dark-grey .bg3wiki-info-blob {
	background-color: var(--bg-dark);
}
div.bg3wiki-info-blob {
	display: inline-block;
	padding: 0 1em 0 1em;
	border-radius: 20px;
}
span.bg3wiki-info-blob {
	display: inline-block;
	padding: 0 0.5em 0 0.5em;
	border-radius: 10px;
}
.bg3wiki-info-blob {
	font-family: monospace;
}

/* D20 background image for numbers */

.bg3wiki-d20-bg {
    background-image: url('/static/d20-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 35px;
}

/* Coordinates */

body.theme-dark-grey .bg3wiki-coordinates {
	font-family: 'Linux Libertine', 'Georgia', serif;
	text-shadow: 1px 1px 2px #000, -1px -1px 2px #000;
	color: #AB9F89;
	background: #34323285;
	border-radius: 5px;
	padding: 3px 5px;
	box-shadow: 1px 1px 5px #00000030;
}

/* Imitating in-game tooltips and item icons */

body.theme-dark-grey .bg3wiki-tooltip-box {
	background: #1B1A19;
	box-shadow:
	rgba(0, 0, 0, 0.14) 3px 3px 6px 0px inset,
	rgba(0, 0, 0, 0.14) -3px -3px 6px 1px inset;
	border: 0.15rem solid #785000;
	border-radius: 10px;
	padding: 15px;
}

body.theme-dark-grey .bg3wiki-tooltip-gradient-common {
	background: linear-gradient(to bottom, #1B1A1999, #1B1A1999, #1B1A1999, #40295199);
}

body.theme-dark-grey .bg3wiki-tooltip-gradient-uncommon {
	background: linear-gradient(to bottom, #00491599, #1B1A1999, #1B1A1999, #40295199);
}

body.theme-dark-grey .bg3wiki-tooltip-gradient-rare {
	background: linear-gradient(to bottom, #00374999, #1B1A1999, #1B1A1999, #40295199);
}

body.theme-dark-grey .bg3wiki-tooltip-gradient-veryrare {
	background: linear-gradient(to bottom, #54003299, #1B1A1999, #1B1A1999, #40295199);
}

body.theme-dark-grey .bg3wiki-tooltip-gradient-legendary {
	background: linear-gradient(to bottom, #563E0D99, #1B1A1999, #1B1A1999, #40295199);
}

body.theme-dark-grey .bg3wiki-tooltip-gradient-story {
	background: linear-gradient(to bottom, #561D0099, #1B1A1999, #1B1A1999, #40295199);
}

:root {
  --bg3wiki-itemicon-common: 72, 72, 72;
  --bg3wiki-itemicon-uncommon: 1, 189, 57;
  --bg3wiki-itemicon-rare: 1, 191, 255;
  --bg3wiki-itemicon-very-rare: 209, 1, 123;
  --bg3wiki-itemicon-legendary: 183, 134, 29;
  --bg3wiki-itemicon-story: 255, 89, 1;
  --bg3wiki-itemicon-gradient-top-opacity: 0%;
  --bg3wiki-itemicon-gradient-bot-opacity: 12.5%;
  --bg3wiki-itemicon-border-opacity: 60%;
}

.bg3wiki-itemicon-wrapper {
  text-align: center;
  white-space: nowrap;
}

.bg3wiki-itemicon {
  display: inline-block;
  background: linear-gradient(
    rgba(var(--rarity-color), var(--bg3wiki-itemicon-gradient-top-opacity)),
    rgba(var(--rarity-color), var(--bg3wiki-itemicon-gradient-bot-opacity))
  );
  border: solid 1px rgba(var(--rarity-color), var(--bg3wiki-itemicon-border-opacity));
}

/* we will alias the appropriate color to improve readability */
body.theme-dark-grey .bg3wiki-itemicon-common {
  --rarity-color: var(--bg3wiki-itemicon-common);
}

body.theme-dark-grey .bg3wiki-itemicon-uncommon {
  --rarity-color: var(--bg3wiki-itemicon-uncommon);
}

body.theme-dark-grey .bg3wiki-itemicon-rare {
  --rarity-color: var(--bg3wiki-itemicon-rare);
}

body.theme-dark-grey .bg3wiki-itemicon-very-rare {
  --rarity-color: var(--bg3wiki-itemicon-very-rare);
}

body.theme-dark-grey .bg3wiki-itemicon-legendary {
  --rarity-color: var(--bg3wiki-itemicon-legendary);
}

body.theme-dark-grey .bg3wiki-itemicon-story {
  --rarity-color: var(--bg3wiki-itemicon-story);
}

.bg3wiki-book-text {
	padding: 30px 70px;
}

.bg3wiki-book-text p {
	font-family: 'Linux Libertine', 'Georgia', serif;
	font-size: 1.2em;
}