MediaWiki:Common.css: Difference between revisions

From IdleOn MMO Wiki
mNo edit summary
mNo edit summary
Line 1: Line 1:
@import "UITest.css";
/* --- CUSTOM FONT --- */
/* --- CUSTOM FONT --- */



Revision as of 17:54, 15 February 2023

@import "UITest.css";
/* --- CUSTOM FONT --- */

@font-face {
	font-family: 'Idleon';
	src: url('https://idleon.wiki/wiki/resources/assets/Idleon.ttf') format('truetype');
}

/* --- CSS VARIABLES --- */

:root{
    --base-0: #f9f9f9;
    --base-1: #e7e7e7;
    --base-2: #ffffff;
    --base-3: #f5f5f5;
	--contrast-1: #000;
	--contrast-2: rgb(0 0 0 / 50%);
	--contrast-3: rgb(0 0 0 / 25%);
    --accent-0: #ba68c8;
    --accent-1: #ce93d8;
    --accent-2: rgb(190 128 211 / 50%);
    --accent-3: rgb(190 128 211 / 25%);
    --link: #3366cc;
    --link-hover: #2e47ac;
    --link-new: #d33;
    --box-shadow: rgb(0 0 0 / 15%) 0 0 8px;
    --sidebar-base: rgb(243 243 243 / 90%);
    --table-row-hover: rgb(0 0 0 / 3%);
    --modal-overlay: rgb(255 255 255 / 75%);
}

/* --- DARK MODE --- */

:root.client-darkmode {
	--base-2: #ddd;
	--base-3: #d9dada;
	--link: #f27f21;
	--link-hover: #f4903e;
	--link-new: #ff6e6e;
    --sidebar-base: rgb(243 243 243 / 65%);
}

/* -- Override prepended symbols -- */
.client-darkmode .darkmode-link:before {
    content: '';
}
.darkmode-link:before { 
    content: '';
}

/* --------- GLOBAL STYLES --------- */

.pixelfont,
.mw-body h1,
.mw-body h2,
.mw-body h3,
.mw-body h4,
.mw-body h5,
.Infobox .Header {
	font-family: 'Idleon'
}

body {
	color: var(--contrast-1);
}

.mw-body a,
.mw-body a:visited,
.mw-portlet-body a,
.mw-portlet-body a:visited,
.mw-parser-output a.extiw,
.mw-parser-output a.extiw:active,
.mw-parser-output a.extiw:visited,
.mw-parser-output a.external,
.mw-parser-output a.external:visited,
.client-darkmode a,
.client-darkmode #mw-panel .portal .body li a,
.client-darkmode #mw-panel .portal .body li a:visited,
.client-darkmode .toctogglelabel,
.client-darkmode .mw-parser-output a.external,
.client-darkmode .mw-parser-output a.extiw,
.client-darkmode .mw-parser-output a.extiw:active,
.client-darkmode .mw-parser-output a.extiw:visited{
	color: var(--link);
}

.mw-body a:hover,
.mw-body a:visited:hover,
.mw-portlet-body a:hover,
.mw-portlet-body a:visited:hover,
.mw-parser-output a.extiw:hover,
.mw-parser-output a.extiw:active:hover,
.mw-parser-output a.external:hover,
.mw-parser-output a.extiw:visited:hover,
.mw-parser-output a.external:visited:hover {
	color: var(--link-hover);
}

a.new,
.new a,
.client-darkmode a.new,
.client-darkmode .new a
.new a:hover{
	color: var(--link-new) !important;
}

a.mw-selflink.selflink {
    color: inherit;
}

.transparent {
	background: transparent;
}

input,
select {
	color: var(--contrast-1);
	background: var(--base-3);
	border: 1px solid var(--contrast-3);
	padding: 0.35em;
}

code, pre, .mw-code{
    background:var(--base-2); 
    color:var(--contrast-1); 
    border-color:var(--contrast-3);
}

.mw-content-ltr.mw-highlight-lines pre, 
.mw-content-ltr.content .mw-highlight-lines pre {
    box-shadow: inset 2.75em 0 0 var(--table-row-hover);
}

.CodeMirror pre.CodeMirror-line {
	font-size: 13px;
	line-height: 17px;
}


/* --- IMAGES --- */

img {
	max-width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
}

img[src$="Coin.png"] {
	margin-right: 2px;
	vertical-align: text-bottom;
}

.classimg img {
	width: auto;
	height: 50px;
}

.mw-body .mw-parser-output table a>img,
.mw-body .mw-parser-output table .floatnone>img {
	height: auto !important;
	max-width: 100% !important;
}


/* --- ALIGNMENT --- */

.left {
	text-align: left;
}

.leftImage img {
	display: block;
	float: left;
}

.center {
	text-align: center;
}

.centerImage img {
	display: block;
	margin: 0 auto;
}

.right {
	text-align: right;
}

.rightImage img {
	display: block;
	float: right;
}

/* --------- MAINPAGE --------- */

.mainpage-body {
	display: flex;
}

.mainpage-left {
	max-width: calc(100% - 270px);
}

.mainpage-right .portable-infobox {
	float: none;
}

.mainpage-container {
	border: 1px solid var(--accent-2);
	background: var(--base-2);
	margin: 0 0 1em;
	padding: .5em .8em 0;
	box-shadow: var(--box-shadow);
	border-radius: 5px;
}

.mainpage-container h3 {
	font-size: 1.4em;
	margin: 0 0 .4em;
}

@media screen and (max-width: 850px) {
	.mainpage-body {
		flex-flow: column wrap;
	}
	.mainpage-left {
		max-width: 100%;
	}
}

.twitter-timeline.twitter-timeline-rendered iframe#twitter-widget-0 {
    max-width: 270px;
}


/* --- MAINPAGE FEATURES + BESTIARY --- */

.tile-row {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	width: calc(100% + 1em);
}

.mainpage-features .tile-halves {
	display: flex;
	flex: 1 1 auto;
	flex-flow: column;
	margin-right: 1em;
	overflow: hidden;
	margin-bottom: 1em;
	background: var(--accent-3);
	border-radius: 3px;
}

.mainpage-features .tile-halves:hover {
	background: var(--accent-2);
}

.mainpage-features .tile-halves a,
.mainpage-features .tile-halves:hover a {
	color:var(--contrast-1);
}

.mainpage-features .tile-halves h3 {
	font-size: 1em;
	font-weight: 700;
	font-family: inherit;
	margin: 0;
}

.mainpage-features .tile-top {
	height: 6.5em;
	position: relative;
}

.mainpage-features .tile-top-best {
	height: 8rem;
	position: relative;
}

.mainpage-features .tile-top.tile-image,
.mainpage-features .tile-top-best.tile-image-best {
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 0;
	max-height: 60em;
}

.mainpage-features .tile-top-best.tile-image-best {
	align-items: flex-end;
	padding-bottom: 5px;
}

.tile-top.tile-image a,
.tile-top-best.tile-image-best a {
	width: 100%;
}

.tile-top.tile-image img {
	width: 100%;
	object-fit: cover;
}

.tile-top-best.tile-image-best img {
	margin: auto;
	display: block;
}

.tile-halves .tile-bottom,
.tile-halves .tile-bottom-best {
	width: 100%;
	padding: 0;
	background: var(--accent-2); 
	flex-grow:1; 
	display: flex;
    align-items: center;
    justify-content: center;
}

.tile-halves:hover .tile-bottom,
.tile-halves:hover .tile-bottom-best {
	background: var(--accent-1);
}

.tile-bottom.link-button {
	align-content: flex-end;
	padding: 0;
}

.tile-bottom.link-button a {
	display: block;
	text-align: center;
	text-decoration: none;
	padding: .35em 0;
}

@media screen and (max-width: 850px) {
	.tile-row {
		grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
		width: calc(100% + 0.3em);
	}
	.mainpage-features .tile-halves {
		margin-right: 0.5em;
		margin-bottom: 0.5em;
	}
}


/* --- MAIN PAGE ITEMS & SKILLS --- */

.mainpage-container .tabber__tabs {
	flex: 0 1 100%;
}

.mainpage-container .tabber__tab {
	font-family: 'Idleon';
	font-weight: normal;
	font-size: 16px;
}

.tabber__panel .mainpage-items {
	margin-top: 1em
}

.mainpage-items,
.mainpage-skills {
	padding-bottom: .3em;
}

.mainpage-items ul,
.mainpage-skills ul {
	flex-flow: row wrap;
	display: flex;
	margin: 0;
}

.mainpage-items li,
.mainpage-skills li {
	display: flex;
	flex: 1 0 32.3%;
	margin: 0 .5% .5em;
	flex-grow: unset;
}

.mainpage-items.col4 li {
	flex: 1 0 24%;
	flex-grow: unset;
}

.mainpage-items li img {
	width:36px;
}

.mainpage-items li:hover img,
.mainpage-skills li:hover img {
	transform: scale(1.2);
	transition: 0.2s ease-out;
}

.mainpage-items li a:first-child,
.mainpage-skills li a:first-child {
	border-radius: 3px;
	width: 48px;
	height: 48px;
	min-width: 48px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mainpage-items li a:last-child,
.mainpage-skills li a:last-child {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	color: #000;
	font-size: 1.1em;
	font-weight: 700;
	padding-left: 0.7em;
	text-decoration: none;
}

.mainpage-items li:hover a:first-child,
.mainpage-skills li:hover a:first-child {
	border-radius: 3px 0 0 3px;
}

.mainpage-items li:hover a:last-child,
.mainpage-skills li:hover a:last-child {
	color: #fff;
	border-radius: 0 3px 3px 0;
}

.mainpage-items li a:first-child,
.mainpage-skills li a:first-child {
	background-color: var(--accent-2);
}

.mainpage-items li:hover a:last-child,
.mainpage-skills li:hover a:last-child {
	background-color: var(--accent-0);
}

@media screen and (max-width: 850px) {
	.mainpage-skills li,
	.mainpage-items li,
	.mainpage-items.col4 li {
		flex: 1 0 49%;
		flex-grow: unset;
	}
	.mainpage-skills li a:first-child,
	.mainpage-items li a:first-child {
		width: 40px;
		height: 40px;
	}
	.mainpage-skills li a:last-child,
	.mainpage-items li a:last-child {
		font-size: .9em;
	}
}

/* --- MAIN PAGE SKILL COLORS --- */

.mainpage-skills .skill-Mining a:first-child {
	background-color: #d2b244;
}
.mainpage-skills .skill-Mining:hover a:last-child {
	background-color: #b69213;
}

.mainpage-skills .skill-Choppin a:first-child {
	background-color: #748d36;
}
.mainpage-skills .skill-Choppin:hover a:last-child {
	background-color: #4c6215;
}

.mainpage-skills .skill-Smithing a:first-child {
	background-color: #878787;
}
.mainpage-skills .skill-Smithing:hover a:last-child {
	background-color: #616161;
}

.mainpage-skills .skill-Fishing a:first-child {
	background-color: #3e8e9a;
}
.mainpage-skills .skill-Fishing:hover a:last-child {
	background-color: #1a6671;
}

.mainpage-skills .skill-Catching a:first-child {
	background-color: #b9863b;
}
.mainpage-skills .skill-Catching:hover a:last-child {
	background-color: #7b5b13;
}

.mainpage-skills .skill-Alchemy a:first-child {
	background-color: #6e88e8;
}
.mainpage-skills .skill-Alchemy:hover a:last-child {
	background-color: #304d91;
}

.mainpage-skills .skill-Worship a:first-child {
	background-color: #b769d6;
}
.mainpage-skills .skill-Worship:hover a:last-child {
	background-color: #803a9c;
}

.mainpage-skills .skill-Construction a:first-child {
	background-color: #e27c5d;
}
.mainpage-skills .skill-Construction:hover a:last-child {
	background-color: #ab4d31;
}

.mainpage-skills .skill-Trapping a:first-child {
	background-color: #859ab3;
}
.mainpage-skills .skill-Trapping:hover a:last-child {
	background-color: #476588;
}

.mainpage-skills .skill-Breeding a:first-child { 
	background-color: #c99f4b; 
}
.mainpage-skills .skill-Breeding:hover a:last-child { 
	background-color: #d7b46e;
}

.mainpage-skills .skill-Cooking a:first-child { 
	background-color: #b55305; 
}
.mainpage-skills .skill-Cooking:hover a:last-child { 
	background-color: #d7813d; 
}

.mainpage-skills .skill-Laboratory a:first-child {
	background-color: #67c5df; 
}
.mainpage-skills .skill-Laboratory:hover a:last-child {
	background-color: #34cdf7;
}

.mainpage-skills .skill-Sailing a:first-child {
	background-color: #80FDFF; 
}
.mainpage-skills .skill-Sailing:hover a:last-child {
	background-color: #66CACC;
}

.mainpage-skills .skill-Divinity a:first-child {
	background-color: #FFFF80; 
}
.mainpage-skills .skill-Divinity:hover a:last-child {
	background-color: #CCCC66;
}

.mainpage-skills .skill-Gaming a:first-child {
	background-color: #FF6B66; 
}
.mainpage-skills .skill-Gaming:hover a:last-child {
	background-color: #FF2119;
}
/* --- MAINPAGE EMBEDS --- */

.twitchplayer,
.youtubeplayer {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	margin-bottom: 1em
}

.twitchplayer iframe,
.youtubeplayer iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%!important;
	height: 100%!important;
}

.widget-twitter {
	display: block;
	margin: 0 0 1em 1em;
}


/* --- WORLD HEADERS --- */

.worldheader {
	display: block;
	margin-bottom: 1em;
	width: 100%;
}

.worldheader>.mw-collapsible-toggle {
	display: block;
	float: none;
	box-shadow: var(--box-shadow);
	margin-bottom: 1em;
}

.mw-body .headerimg {
	height: 60px !important;
	width: 100%;
	object-fit: cover;
	object-position: 0;
	border-radius: 5px;
}

.mainpage-container .headerimg {
	margin-top: .3em
}

@media screen and (max-width: 850px) {
	.mw-body .headerimg {
		height: 50px !important;
	}
}


/* --- WORLD BANNERS (couldn't make .banner-image work, using style instead) (where?) --- */

.banner-image {
	position: relative;
	border-radius: 0.4em;
	max-width: 100%;
	overflow: hidden;
	float: left;
	margin: 0 0 3px;
}

.banner-text {
	position: absolute;
	bottom: 10px;
	left: 20px;
	color: white;
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
	font-size: 35px;
	font-weight: bold;
	padding-left: 2px;
	padding-right: 2px;
}

.header-text {
	position: absolute;
	bottom: 2px;
	left: 20px;
	color: white;
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
	font-size: 18px;
	font-weight: bold;
	padding-left: 2px;
	padding-right: 2px;
}


/* --- TOC --- */

.toc,
.client-darkmode .toc {
	padding: 0;
	border-radius: 5px;
	background: var(--base-2);
	border: 1px solid var(--accent-2);
	box-shadow: var(--box-shadow);
}

.toc .toctitle {
	padding: .5em 1em;
}

.toc>ul,
.toc .tocUl {
	padding: .3em 1em;
	margin: 0;
	border-top: 1px solid var(--accent-3);
}

.toc .toctitle {
	text-align: left;
	border: none;
}

.toggleNode {
	position: relative;
	float: right;
	left: unset;
}

.tocnumber {
	display: none;
}

.toc .toctogglelabel, 
.toc .toggleSymbol {
	color:var(--link);
}


/* TABLES */

table:not([class]),
.client-darkmode table:not([class]) {
	background: transparent;
}

.wikitable,
.client-darkmode .wikitable {
	background: var(--base-2);
	box-shadow: var(--box-shadow);
}

.alterrows tr:nth-child(even),
.client-darkmode .alterrows tr:nth-child(even) {
	background-color: var(--base-3);
}

.wikitable>tr>th,
.wikitable>*>tr>th {
	background-color: var(--accent-1);
	white-space: nowrap;
}

.wikitable tr:hover {
	background: var(--table-row-hover);
}

.content-table caption {
	white-space: nowrap;
}

/* CENTER COLUMN TABLE */

.CenterColumn1Image tr td:nth-child(1) img {
	display: block;
	margin: 0 auto;
	max-height: 50px;
	width: auto;
}

.CenterColumn2Image tr td:nth-child(1) img {
	display: block;
	margin: 0 auto;
}

.CenterColumn1Image tr td.drop-separator:nth-child(1) img {
	display: inline-block;
}


/* ----- FIRSTIMAGE TABLES (BOSS, NPC, BUILDING) ----- */

.FirstImage,
.client-darkmode .FirstImage {
	width: 100%;
	background: transparent;
}

.FirstImage td:first-of-type {
	width: 12%;
	min-width: 100px;
}

.FirstImage td:first-of-type img {
	max-height: 100px;
	height: auto;
	width: auto;
	margin: 0 auto;
	display: block;
}

/* ----- RESPONSIVE TABLES ----- */

.content-table-wrapper:not(.overflowed) .content-table-left,
.content-table-wrapper:not(.overflowed) .content-table-right {
	height: auto !important
}

.content-table-wrapper:not(.overflowed) .content-table caption {
	width: auto !important
}

/* --- GENERIC FLEX LAYOUT --- */

.GenericFlex {
	flex-wrap: wrap;
	display: flex;
	justify-content: space-between;
}

.GenericChild {
	display: block;
	flex: 0 1 48%;
	margin: 1em 0;
}

.ThreeCol .GenericChild {
	flex: 0 1 32%;
}

@media screen and (max-width: 850px) {
	.ThreeCol .GenericChild {
		flex: 0 1 48%;
	}
}

@media screen and (max-width: 650px) {
	.GenericChild,
	.ThreeCol .GenericChild {
		flex: 1 1 100%;
	}
}

.GenericChild h2,
.GenericChild h3 {
	margin-top: 0;
}

.GenericChild h3:after {
	content: '';
	display: block;
	border-bottom: solid 2px #c8ccd1;
	overflow: hidden;
}

.GenericChild .valInput {
	display: inline-block;
}

/* --- ALCHEMY TABLES --- */

.bubble-table {
	border: 1px solid var(--accent-2);
	border-radius: 5px;
	background: var(--base-2);
	width: 100%;
	margin: auto;
	box-shadow: var(--box-shadow);
}

.bubble-table th,
.bubble-table td {
	padding: 5px 10px;
}

.bubble-table th.name {
	text-align: center;
}

.bubble-table th.icon {
	padding: 0;
}

.bubble-table td img {
	width: 24px;
}

.bubble-table tr:first-child th:nth-child(1) {
	width: 5%;
	border-top-left-radius: 3px;
}

.bubble-table tr:first-child th:nth-child(2) {
	width: 15%;
}

.bubble-table tr:first-child th:nth-child(3) {
	width: 20%;
}

.bubble-table tr:first-child th:nth-child(4) {
	width: 55%;
	border-top-right-radius: 3px
}

.bubbleDiv table {
	width: 100%;
	background: var(--base-2);
	border-radius: 5px;
	border: 1px solid var(--accent-2);
	box-shadow: var(--box-shadow);
}

.bubbleDiv .bubbleDesc td {
	background: var(--accent-1);
	text-align: center;
	border-radius: 3px 3px 0 0;
	padding: .5em;
}

.bubbleDiv .bubbleDesc h3 {
	margin: 0;
}

.bubbleDiv .bubbleDesc h3:after {
	display: none;
}

.bubbleDiv .bubbleDesc p {
	margin: 0
}

.orange-cauldron, 
.orange .bubbleDiv table {
	border-color: rgb(177 88 0 / 60%);
}

.orange-cauldron tr:first-child, 
.orange .bubbleDiv tr.bubbleDesc td {
    background-color: rgb(255 148 32 / 50%);
}

.orange-cauldron tr:nth-child(2n+3) {
	background-color: rgb(255 148 32 / 15%);
}

.orange-cauldron tr.big {
	background-color: rgb(255 148 32 / 35%);
}

.green-cauldron, 
.green .bubbleDiv table {
	border-color: rgb(49 147 52 / 60%);
}

.green-cauldron tr:first-child, 
.green .bubbleDiv tr.bubbleDesc td {
    background-color: rgb(71 219 90 / 50%);
}

.green-cauldron tr:nth-child(2n+3) {
	background-color: rgb(71 219 90 / 15%);
}

.green-cauldron tr.big {
	background-color: rgb(71 219 90 / 35%);
}

.purple-cauldron tr:first-child, 
.purple .bubbleDiv tr.bubbleDesc td {
    background-color: rgb(208 89 240 / 50%);
}

.purple-cauldron tr:nth-child(2n+3) {
	background-color: rgb(208 89 240 / 15%);
}

.purple-cauldron tr.big {
	background-color: rgb(208 89 240 / 35%);
}

.yellow-cauldron, 
.yellow .bubbleDiv table {
	border-color: rgb(190 131 0 / 60%);
}

.yellow-cauldron tr:first-child, 
.yellow .bubbleDiv tr.bubbleDesc td {
    background-color: rgb(250 208 10 / 50%);
}

.yellow-cauldron tr:nth-child(2n+3) {
	background-color: rgb(250 208 10 / 15%);
}

.yellow-cauldron tr.big {
	background-color: rgb(250 208 10 / 35%);
}

.cauldInput,
.client-darkmode .cauldInput {
	min-width: 50%;
	background: transparent;
}

.cauldInput td:first-child {
	text-align: right;
}

/* --- ACHIEVEMENTS --- */

.secret-achievement,
.steam-exclusive {
	display:block;
	font-size:.8em;
	padding:0 .2em;
	text-transform:uppercase;
	font-weight: 700;
	width:fit-content;
	text-align:center;
	margin-bottom: .3em;
}

.steam-exclusive {
	background: rgb(35 179 172 / 35%);
	border: 1px solid #6aafac;
}

.secret-achievement {
    background: rgb(247 89 126 / 35%);
    border: 1px solid #e56885;
}

/* --- INFOBOX --- */

.Infobox {
	width: 30%;
	min-width: 300px;
	float: right;
	clear: right;
	background: var(--base-2);
	border: 1px solid var(--accent-2);
	border-radius: 5px;
	margin: 0 0 1em 1em;
	padding: 2px;
	box-shadow: var(--box-shadow);
}

.Infobox .Header,
.Infobox .SubHeader {
	background: var(--accent-1);
	text-align: center;
	font-weight: 700;
}


/* Fix for Firefox, <table> doesn't fill the space properly */

.Infobox table {
	width: 100%;
}


/* Affects the very first header of the Infobox */

.Infobox .Header {
	padding: 0.5em;
	border-radius: 3px 3px 0 0;
	font-size: 1.2em;
}

[data-name="headerImg"] .pi-image-thumbnail {
    min-width: 100%;
    max-height: auto;
}

/* Affects all the headers/dividers below the image */

.Infobox .SubHeader {
	margin-top: 2px;
	padding: .2em
}


/* Centers the main image */

.Infobox .HeaderImage {
	text-align: center;
	padding: 5px 0;
}


/* Constraining the max height of images in infoboxes */

.Infobox .HeaderImage img {
	max-height: 300px;
	width: auto;
}


/* --- INFOBOX (TABLE) --- */

table.Infobox {
	padding: 0;
}


/* Affects the left column (purple) */

.Infobox th {
	background: var(--accent-2);
	text-align: left;
	margin-top: 2px;
	padding: .2em;
}


/* Makes width of the two rows more consistent, but allows for flexibility // % gets overriden by colspan, em works // */

.Infobox th,
.Infobox td {
	max-width: 8em;
	min-width: 5em;
}


/* Rounds the last table row to fit with the rounded edge of the Infobox */

.LastTable {
	border-radius: 0 0 0 3px;
}


/* --- INFOBOX (DEFINITION LIST) --- */

.Infobox dl,
.Infobox .dl {
	display: grid;
	grid-template-columns: 40% 60%;
	gap: 2px;
	margin: 0;
}

.Infobox dl:not(:empty){
	margin-top: 2px;
}

.Infobox dt,
.Infobox dd,
.Infobox .dt,
.Infobox .dd {
	margin: 0;
	padding: .2em;
	font-family: inherit;
	display: flex;
	align-items: center;
}

.Infobox dt,
.Infobox .dt {
	line-height: 1.5;
	background: var(--accent-2);
	font-weight: 700
}

.Infobox>:last-child {
	border-radius: 0 0 3px 3px;
	overflow: hidden
}

/* --- PORTABLE INFOBOX --- */

.portable-infobox {
	background: var(--base-2);
	border: 1px solid var(--accent-2);
	border-radius: 5px;
	box-shadow: var(--box-shadow);
}

.mw-body .mw-parser-output .portable-infobox h2:after,
.mw-body .mw-parser-output .portable-infobox h3:after {
	display: none;
}

.portable-infobox div.pi-item {
	font-size: .85rem;
}

.portable-infobox .pi-title,
.portable-infobox .pi-header {
	background: var(--accent-1);
	text-align: center;
}

.portable-infobox .pi-title {
	font-family: 'Idleon';
	padding: 0.5em 0.5em 0.3em;
}

.portable-infobox .pi-border-color {
	border-color: var(--accent-3);
}

.portable-infobox .pi-media {
	padding: 0.5em 0;
}

.portable-infobox .pi-section-navigation,
.portable-infobox .pi-section-navigation,
.portable-infobox .pi-media-collection-tabs {
	border-bottom: 1px solid var(--accent-2);
}

.pi-section-navigation .pi-section-tab,
.pi-media-collection .pi-tab-link {
	background: none;
	border: none;
	color: var(--link);
	font-weight: bold;
}

.pi-section-navigation .pi-section-tab:hover,
.pi-media-collection .pi-tab-link:hover {
	color: var(--link-hover);
	box-shadow: inset 0 -2px 0 0 currentColor;
}

.pi-section-navigation .pi-section-tab.pi-section-active,
.pi-section-navigation .pi-section-tab.current,
.pi-media-collection .pi-tab-link.current {
	background: none;
	box-shadow: inset 0 -2px 0 0 currentColor;
}

.pi-media-collection-tab-content figure {
    vertical-align: text-bottom;
    display: flex;
    justify-content: center;
    align-items: end;
}

.portable-infobox .grid-4, .portable-infobox .grid-5 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 5px 2px;
    margin: auto;
    width:100%;
}
.portable-infobox .grid-5 {
    grid-template-columns: repeat(5,1fr);
}

/* --- MAINPAGE INFOBOX --- */

.portable-infobox.pi-theme-gameinfo .pi-section-active .pi-item {
	padding: 0; 
	border-top: 1px solid var(--accent-0); 
	border-bottom: 1px solid var(--accent-0);
}

/* --- BOSS INFOBOX --- */

.pi-data[data-source="NormalDamages"], .pi-data[data-source="ChaoticDamages"], .pi-data[data-source="NightmareDamages"] {padding:0;}
.pi-data[data-source="NormalDamages"] .pi-data:last-of-type, .pi-data[data-source="ChaoticDamages"] .pi-data:last-of-type, .pi-data[data-source="NightmareDamages"] .pi-data:last-of-type {border:0;}

/* --- SKILL INFOBOX --- */

.portable-infobox.pi-theme-skillinfo .pi-media {
	padding: 0; 
	border-top: 1px solid var(--accent-0); 
	border-bottom: 1px solid var(--accent-0);
}

.portable-infobox.pi-theme-skillinfo ul {
	margin-top: 0;
}

/* --- CLASS INFOBOX (TALENTS) --- */

.InfoboxTalents {
	text-align: center;
	padding: 5px
}

.InfoboxTalents p {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	row-gap: 5px;
	max-width: 300px;
	margin: auto;
}

/* --- INFOBOX EXTRAS --- */

.CardStar {
	max-height: 13px;
	width: auto;
}

.FishDepth {
    max-height: 11px;
    width: auto;
}

.SlabNum {
    position:relative; 
    float:left;
}

.SlabNum span {
    position: absolute;
    font-size: 16px;
    color: #fff;
    min-width: 28px;
    text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;
    font-weight: 400;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.client-darkmode .SlabNum span {
    -webkit-filter: invert(1) hue-rotate(180deg);
    filter: invert(1) hue-rotate(180deg);
}

.Infobox .str, 
.portable-infobox .str {
	color:#ef7600;
}
.Infobox .agi, 
.portable-infobox .agi { 
	color:#19b131;
}
.Infobox .wis, 
.portable-infobox .wis {
	color:#cb50ef;
}
.Infobox .luk, 
.portable-infobox .luk {
	color:#d3a20f;
}

/* --- DETAILBOX INFOBOX --- */

.DetailboxGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(18em, 1fr));
    row-gap: .5em;
    column-gap: .5em;
}

.Infobox.Detailbox {
	float: none;
	margin: 0 0 1em;
	table-layout: fixed;
}

.DetailboxGrid .Infobox.Detailbox {
   min-width: auto;
   width: 100%;
   margin:0;
}

.Infobox.Detailbox .Header {
	font-family: inherit;
	font-size: 1em;
	padding: .2em;
	background: var(--accent-2);
	font-weight: bold;
}

.Infobox.Detailbox .SellPrice {
	text-align: center
}

.Infobox.Detailbox .SubHeader {
	font-size: .9em;
	background: var(--accent-2);
	font-weight: bold;
}

.Infobox.Detailbox dl, 
.Infobox.Detailbox .dl {
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
}

.Infobox.Detailbox dt,
.Infobox.Detailbox dd,
.Infobox.Detailbox .dt,
.Infobox.Detailbox .dd {
	margin: 0;
	font-size: .9em;
	border-bottom: 0; 
	padding: .1em .2em;
}

.Infobox.Detailbox dt,
.Infobox.Detailbox .dt { 
	background:var(--accent-3);
}

.Infobox.Detailbox .start {
	grid-column-start: 1;
}

.Infobox.Detailbox .wide {
	grid-column: span 3;
}

.Infobox.Detailbox .clearfix,
.Infobox.Detailbox hr {
	display:none;
}

/* --- DETAILBOX INFOBOX (TOOLTIP) --- */

.tooltip .Infobox.Detailbox,
.tooltipster-content .Infobox.Detailbox {
	display: block;
	float: none;
	clear: both;
	margin: 0;
	font-size: 1rem;
	width: auto;
	min-width: 200px;
	max-width: 300px;
	color: var(--contrast-1);
	margin: -6px -10px;
	border-color: #808080;
}

.tooltip .Infobox.Detailbox .Header,
.tooltip .Infobox.Detailbox .SellPrice,
.tooltip .Infobox.Detailbox .HeaderImage,
.tooltip .Infobox.Detailbox .SubHeader,
.tooltipster-content .Infobox.Detailbox .Header,
.tooltipster-content .Infobox.Detailbox .SellPrice,
.tooltipster-content .Infobox.Detailbox .HeaderImage,
.tooltipster-content .Infobox.Detailbox .SubHeader{
	display: block;
}

.tooltip .Infobox.Detailbox .HeaderImage,
.tooltipster-content .Infobox.Detailbox .HeaderImage {
	padding: 2px 0;
}

.tooltip .Infobox.Detailbox .HeaderImage img,
.tooltipster-content .Infobox.Detailbox .HeaderImage img {
	max-width: 36px;
}

/* --- GENERAL TOOLTIP --- */

.tooltipster-default .tooltipster-content {
	font-family:inherit; 
}
.tooltipster-content p {
	margin: 0;
}
.tooltipster-base.tooltipster-default.tooltipster-fade.tooltipster-fade-show {
	box-shadow: var(--box-shadow);
}

/* --- DETAILBOX RNG ITEMS --- */

.DetailboxGrid.RNG-Items {
    grid-template-columns: repeat(auto-fill, minmax(15em, 1fr));
}

.Infobox.RNG-Item {
   border-width: 2px;
}

.Infobox.Rarity-Common {
	border-color:#878898;
}
.Infobox.Rarity-Common .Header, .Infobox.Rarity-Common .SubHeader {
	background-color: rgb(135 136 152 / 30%);
}
.Infobox.Rarity-Uncommon {
	border-color:#1a9934;
}
.Infobox.Rarity-Uncommon .Header, .Infobox.Rarity-Uncommon .SubHeader {
	background-color: rgb(26 153 52 / 30%);
}
.Infobox.Rarity-Rare {
	border-color:#3c65cb;
}
.Infobox.Rarity-Rare .Header, .Infobox.Rarity-Rare .SubHeader {
	background-color: rgb(60 101 203 / 30%);
}
.Infobox.Rarity-Epic {
	border-color:#5a3cc9;
}
.Infobox.Rarity-Epic .Header, .Infobox.Rarity-Epic .SubHeader {
	background-color: rgb(90 60 201 / 30%);
}
.Infobox.Rarity-Legendary {
	border-color:#eb7b07;
}
.Infobox.Rarity-Legendary .Header, .Infobox.Rarity-Legendary .SubHeader {
	background-color: rgb(235 123 7 / 30%);
}

/* --- DETAILBOX DUNGEON ENEMIES --- */

.DetailboxGrid.DungeonEnemies {
    grid-template-columns: repeat(auto-fill, minmax(15em, 1fr));
}

/* --- NAVBOX --- */

.Navbox {
	width: 100%;
	background: var(--base-2);
	border: 1px solid var(--accent-2);
	border-radius: 5px;
	margin: 0 0 1em;
	padding: 2px;
	box-shadow: var(--box-shadow);
}

.Navbox th {
	background: var(--accent-1);
	text-align: center;
	font-weight: 700;
}

/* ----- FORGE SLOT ----- */

.forgeslot {
	width: 100%;
	background: var(--base-2);
	border: 1px solid var(--accent-2);
	box-shadow: var(--box-shadow);
	border-radius: 5px;
	margin-bottom: 1em;
	text-align: center;
	max-width: 400px;
}

.forgeslot th {
	background: var(--accent-1);
}

.forgeslot th:first-child {
	border-top-left-radius: 3px;
}

.forgeslot th:last-child {
	border-top-right-radius: 3px;
}

.forgeslot th:first-child,
.forgeslot td:first-child {
	text-align: left;
}

.forgeslot tr:last-child td {
	text-align: right;
}

.forgeslot .anviltab img {
	float: left;
}

.forgeslot .smithreq img {
	float: right;
}

/* ----- BONUS CALCS (GOLD FOOD, STATUES)  ----- */

.bonusDiv {
    width: 100%;
    max-width: 400px;
    background: var(--base-2);
    border: 1px solid var(--accent-2);
    border-radius: 5px;
    margin: 0 0 1em;
    padding: 2px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.bonusDiv .bonusHead {
    background: var(--accent-1);
    font-weight: 700;
    border-radius: 3px 3px 0 0;
    padding: .2em;
    margin-bottom: .5em;
}

.bonusDiv p{
	max-width: 90%; 
	margin: 1em auto;
}

.bonusDiv .valInput {
    vertical-align: middle;
}

.bonusDiv .result, .bonusDiv .result1, .bonusDiv .result2, .bonusDiv .resultB, .bonusDiv .resultM {
    color: #358510; 
    font-weight: bold;
}

/* ----- PATCH NOTES ----- */

.patchnote {
	width: 50%;
	background: var(--base-2);
	border: 1px solid var(--accent-2);
	box-shadow: var(--box-shadow);
	border-radius: 5px;
	margin-bottom: 1em;
}

.patchnote th {
	background: var(--accent-1);
	text-align: center;
	border-radius: 3px 3px 0 0;
}

.GenericChild .patchnote {
	width: 100%;
}

.patchnote .mw-prefixindex-body {
	columns: 8em 3;
    -moz-columns: 8em 3;
    -webkit-columns: 8em 3;
}

.patchnote .mw-prefixindex-body ul {
	margin-top: 0;
}

/* --- SITE NOTICE --- */

#siteNotice {
	border: 1px solid transparent;
	border-spacing: 3px;
	background-image: linear-gradient(#ffcffa 60%, #ee75ff 70%);
	text-align: center;
	border-radius: 5px;
	color: #fff;
	text-shadow: -0.065em 0 #000, 0 0.065em #000, 0.065em 0 #000, 0 -0.065em #000;
	margin: 0 auto 1em !important;
	font-size: 16px;
	font-family: 'Idleon';
}

.client-darkmode #siteNotice, .client-darkmode #siteNotice img {
	filter: none;
}

#siteNotice a {
	color: #94f9ff !important;
	cursor: pointer;
}

#siteNotice .mw-dismissable-notice {
	border: 1px solid #000;
	border-radius: 3px;
	padding: 0 1em;
	background-image: linear-gradient(#a94bc1 30%, #7e38aa 80%);
	margin: 3px;
	outline: 1px solid #000;
	outline-offset: 3px;
}

#siteNotice .mw-dismissable-notice-close {
	margin: 0.5em;
}

#siteNotice .mw-dismissable-notice-body {
	margin: 0;
}

#localNotice p {
	margin: .5em;
}

/* --- MIRAHEZE NOTICES --- */
#siteNotice .wikitable {background:transparent !important; color:inherit !important; border:0 !important; margin:0 !important}
#siteNotice .wikitable td{border:0 !important}

/* --- ANNOUNCEMENT BANNER --- */

.banner {
	border: 1px solid #000;
	border-spacing: 3px;
	background-image: linear-gradient(#d5d5d5 60%, #979797 70%);
	width: 60%;
	text-align: center;
	border-radius: 5px;
	color: #fff;
	font-size: 20px;
	text-shadow: -.065em 0 #000, 0 .065em #000, .065em 0 #000, 0 -.065em #000;
	margin: 0 auto 1em !important;
	padding: 3px;
}

.banner .banner-inner {
	border: 1px solid #000;
	border-radius: 3px;
	background-image: linear-gradient(#828282 30%, #5c5c5c 80%);
	padding: 0 1em;
}

.banner a {
	color: #94f9ff !important;
}

.banner.blue {
	background-image: linear-gradient(#b0fdfe 60%, #2891d8 70%);
}

.banner.blue .banner-inner {
	background-image: linear-gradient(#369de2 30%, #0d578c 80%);
}

.banner.red {
	background-image: linear-gradient(#ffc0b8 60%, #fe7663 70%);
}

.banner.red .banner-inner {
	background-image: linear-gradient(#ff533c 30%, #d4240c 80%);
}

.banner.purple {
	background-image: linear-gradient(#ffcffa 60%, #ee75ff 70%);
}

.banner.purple .banner-inner {
	background-image: linear-gradient(#a94bc1 30%, #7e38aa 80%);
}


/* ----- SECRETS TOGGLE ----- */

.secrets {
	box-sizing: border-box;
	width: 100%;
	border: 1px solid var(--accent-2);
	padding: 1em;
	background-color: var(--base-3);
	margin-bottom: 1em;
	box-shadow: var(--box-shadow);
	border-radius: 3px;
	clear: both;
}

.secrets>h3 {
	margin: 0;
	font-size: 20px;
}

.secrets>.mw-collapsible-content {
	margin-top: 1em;
	overflow: auto;
}

/* ----- ENEMY NAV ----- */

.EnemyNav {
	display: flex;
	background: var(--base-2);
	border: 1px solid var(--accent-2);
	margin-bottom: 1em;
	overflow: auto;
	border-radius: 5px;
	padding: .8em;
	box-shadow: var(--box-shadow);
}

.EnemyNav div {
	display: flex;
	align-items: center;
	flex-basis: 33%;
}

.EnemyNav div a {
	line-height: 1;
	margin: 0 1px;
}

.EnemyNav .EnemyNavCenter {
	justify-content: center;
}

.EnemyNav .EnemyNavRight {
	justify-content: flex-end;
}

/* ----- TABBER NEUE ----- */

.tabber__tab:active,
.tabber__tab:hover,
.tabber__tab--active,
.tabber__tab--active:visited {
	box-shadow: inset 0 -2px 0 0 currentColor;
}

.tabber__section {
	scroll-behavior: unset !important
}

.tabber__panel {
	overscroll-behavior-y: auto !important;
}

.tabber__header {
	box-shadow: inset 0 -1px 0 0 var(--accent-2);
}

/* ----- DETAILED RECIPE TAB ----- */

.detrecipe {
	margin-top: 1em;
}

.detrecipe .tabber__header {
    box-shadow: none;
}

/* --- STICKY HEADER --- */

.stickyHeader th {
	position: sticky;
	top: 20px;
	z-index:100;
}

.sticky-card-nav {
    text-align: center;
    font-size: 1.4em;
    display: block;
    background: var(--base-1);
    position: sticky;
    top: 2em;
    z-index: 100;
    padding: 0.5em 1em;
    margin: 0 -1em;
}

/* --- RESPONSIVE TABLES, INFOBOXES, ETC --- */

@media screen and (max-width: 550px) {
	.Infobox,
	.wikitable,
	.EnemyNav,
	.widget-twitter {
		width: 100%;
		float: none;
		margin: 0 0 1em;
	}
}

/* --- CSS TOOLTIPS --- */

.tooltip {
	display: inline;
	position: relative;
	text-decoration: none; 
	border-bottom: 1px dotted #AAA;
}

.tooltip>span {
	display: none;
}

.tooltip:hover>span {
    display: block;
    position: absolute;
    z-index: 999;
    background: #000;
    color: #fff;
    border-radius: 5px;
    padding: 5px;
    font-size: 12px;
    line-height: 1.2rem;
    min-width: 2em;
    text-align: center;
    top: 0;
    left: 50%;
    transform: translate(-50%, calc(-100% - 8px));
}

.tooltip:hover>span:before {
    display: block;
    content: "";
    border-left: 8px solid transparent !important;
    border-right: 8px solid transparent !important;
    border-top: 8px solid #000;
    bottom: -7px;
    width: 0;
    position: absolute;
    z-index: 999;
    left: calc(50% - 8px);
}

/* --- SIDEBAR --- */

#p-Skills {
    counter-reset: world;
}
#p-Skills li:nth-child(3n-2):before{
    counter-increment: world;
    content: "World " counter(world);
    display:block; 
    font-variant: small-caps; 
    padding-bottom:.5em;
}
#p-Skills li:nth-child(3n) {
    padding-bottom:1em;
}
#p-Skills li:last-child {
    padding-bottom:0;
}

/* Questy Captcha text. To make it more clear. */
div.mw-htmlform-field-HTMLInfoField > div.mw-input {
    color:green;
    font-weight:bold;
    font-style:italic;
}