MediaWiki:Common.css: Difference between revisions

947 bytes removed ,  18:02, 26 July 2021
CSS changes from temp site, pending LESS rewrite
imported>HeyTots
No edit summary
(CSS changes from temp site, pending LESS rewrite)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* ------- body ------- */
/* ------- body ------- */
html {
html {
Line 18: Line 19:
/* ------- page structure ------- */
/* ------- page structure ------- */
div#content,
div#content,
div#footer {
footer#footer {
background: var(--content-background);
background: var(--content-background);
border: var(--content-border);
border: var(--content-border);
Line 50: Line 51:
}
}
/** footer **/
/** footer **/
div#footer {
footer#footer {
margin-top: 0.5em;
margin-top: 0.5em;
}
}


div#footer ul li {
footer#footer ul li {
color: var(--body-color);
color: var(--body-color);
}
}
Line 64: Line 65:
div#content h5,
div#content h5,
div#content h6,
div#content h6,
div#pageWrapper div#content,
div#content,
div#pageWrapper div#footer,
footer#footer,
div#pageWrapper div#mw-navigation {
div#mw-navigation {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
color: var(--body-color);
color: var(--body-color);
}
}
Line 84: Line 85:
div#content a.new,
div#content a.new,
div#content li.new a,
div#content li.new a,
div#footer a.new,
footer#footer a.new,
div#footer li.new a,
footer#footer li.new a,
div#mw-navigation a.new,
div#mw-navigation a.new,
div#mw-navigation li.new a {
div#mw-navigation li.new a {
Line 149: Line 150:
div#mw-page-base {
div#mw-page-base {
background: transparent !important;
background: transparent !important;
height: calc(2em + var(--logo-height,160px) + 2 * var(--logo-vertical-space,0.5em) + var(--logo-content-space,0px));
height: calc(2em + var(--logo-height, 160px) + 2 * var(--logo-vertical-space, 0.5em) + var(--logo-content-space, 0px));
}
}


Line 157: Line 158:


div#mw-head {
div#mw-head {
top: calc(var(--logo-height,160px) + 2 * var(--logo-vertical-space,0.5em) + var(--logo-content-space,0px));
top: calc(var(--logo-height, 160px) + 2 * var(--logo-vertical-space, 0.5em) + var(--logo-content-space, 0px));
height: 2em;
height: 2em;
}
}
Line 174: Line 175:
margin-right: 0.5em;
margin-right: 0.5em;
}
}
#p-personal {
top: -2em; /* hack: this only just barely sneaks under the logo */
}
#p-personal #pt-anonuserpage {
/* This lacks a sub-element like its siblings and uses the BG for a user icon,
so it'll be a little more difficult to style it consistently, prob relegate icon to :before/:after */
color: var(--body-color);
background-image: url(/resources/assets/user-avatar.svg);
}
/** basics **/
/** basics **/
#p-search,
#p-search,
div.vectorMenu,
div#mw-head nav.vector-menu {
div.vectorTabs {
background: transparent;
background: transparent;
height: 2em;
height: 2em;
Line 183: Line 195:
}
}


div#mw-head div.vectorMenu h3 span,
div#mw-head nav.vector-menu > h3 > span,
div#mw-head div.vectorTabs span a {
div#mw-head div.vector-menu-content > ul > li > a {
text-transform: uppercase;
text-transform: uppercase;
padding: 0;
padding: 0;
Line 193: Line 205:
}
}


div#mw-head div.vectorMenu h3 span {
div#mw-head nav.vector-menu h3 span {
padding-right: 16px;
padding-right: 16px;
vertical-align: top;
vertical-align: top;
}
}


div#mw-head div.vectorMenu h3 span:after {
div#mw-head nav.vector-menu h3 span:after {
top: 0;
top: 0;
filter: invert(var(--navigation-arrow-invert));
filter: invert(var(--navigation-arrow-invert));
}
}


div#mw-head div.vectorMenu h3,
div#mw-head nav.vector-menu h3,
div#mw-head div.vectorTabs ul li span {
div#mw-head div.vector-menu-content ul li a {
background: var(--navigation-tab-background);
background: var(--navigation-tab-background);
box-shadow: var(--navigation-tab-box-shadow);
box-shadow: var(--navigation-tab-box-shadow);
padding: 0.5em;
padding: 0.5em;
margin: 0 0.25em;
margin: 0 0.25em;
height: 1em;
height: auto;
line-height: 1;
line-height: 1;
overflow: visible;
overflow: visible;
Line 215: Line 227:
}
}


div#pageWrapper div#mw-navigation div.vectorMenu h3 span,
div#mw-navigation nav.vector-menu h3 span,
div#pageWrapper div#mw-navigation li.selected a {
div#mw-navigation li.selected a {
color: var(--navigation-tab-active-color);
color: var(--navigation-tab-active-color);
}
}


div#mw-head div.vectorMenu:hover h3,
div#mw-head nav.vector-menu:hover h3,
div#mw-head div.vectorTabs ul li.selected span,
div#mw-head div.vector-menu-content > ul > li.selected > a,
div.vectorMenu div.menu {
nav.vector-menu div.menu {
background: var(--navigation-tab-active-background);
background: var(--navigation-tab-active-background);
}
}


div#mw-head div.vectorMenu:hover h3 {
div#mw-head nav.vector-menu:hover h3 {
border-bottom-right-radius: 0;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
border-bottom-left-radius: 0;
}
}


div.vectorMenu:hover ul,
nav.vector-menu:hover ul,
div.vectorTabs ul,
div.vector-menu-content ul,
div.vectorTabs ul li,
div.vector-menu-content ul li,
div.vectorTabs ul li.selected {
div.vector-menu-content ul li.selected {
background: transparent;
background: transparent;
}
}


/** vectorMenu **/
/** vector-menu **/
div.vectorMenu div.menu {
nav.vector-menu div.menu {
top: 2em;
top: 2em;
border: 0;
border: 0;
Line 245: Line 257:
}
}


div#mw-navigation div.vectorMenu #ca-unwatch a,
div#mw-navigation nav.vector-menu #ca-unwatch a,
div#mw-navigation div.vectorMenu #ca-watch a,
div#mw-navigation nav.vector-menu #ca-watch a,
div#mw-navigation div.vectorMenu div.menu li a {
div#mw-navigation nav.vector-menu div.menu li a {
padding: 0.3em;
padding: 0.5em;
font-size: 90%;
display: block;
display: block;
height: auto;
height: auto;
width: auto;
margin: auto;
margin: auto;
color: var(--navigation-tab-active-color)!important;
color: var(--navigation-tab-active-color) !important;
}
 
/* hide un/watch star */
#ca-watch.mw-watchlink > a:before,
#ca-unwatch.mw-watchlink > a:before {
display: none;
}
}


Line 298: Line 316:
}
}


div#simpleSearch #searchInput {
div#simpleSearch > #searchInput {
padding: 0.5em 0;
padding: 0.5em 0;
margin: 0;
margin: 0;
border: none;
transition: none;
height: 1em;
height: 1em;
color: var(--navigation-tab-active-color);
color: var(--navigation-tab-active-color);
background-color: transparent;
box-sizing: content-box;
box-sizing: content-box;
text-overflow: ellipsis;
text-overflow: ellipsis;
        font-size: 1em;
font-size: 1em;
}
}


div#simpleSearch #searchInput::placeholder {
div#simpleSearch > #searchInput::placeholder {
color: var(--navigation-tab-active-color);
color: var(--navigation-tab-active-color);
opacity: 0.65;
opacity: 0.65;
Line 314: Line 335:
}
}


#simpleSearch #searchButton {
div#simpleSearch:hover > #searchInput:focus,
filter: brightness(calc(var(--navigation-arrow-invert) + 0.5));
div#simpleSearch > #searchInput:focus {
outline: none;
box-shadow: none;
}
 
#simpleSearch > #searchButton {
background-image: url(/resources/assets/search.svg);
}
}


Line 334: Line 361:


.mediawiki .suggestions-result {
.mediawiki .suggestions-result {
    font-size: 1.15em;
font-size: 1.15em;
}
}


Line 364: Line 391:
/* ------- sidebar ------- */
/* ------- sidebar ------- */
div#mw-panel {
div#mw-panel {
top: calc(var(--logo-height,160px) + 2 * var(--logo-vertical-space,0.5em));
top: calc(var(--logo-height, 160px) + 2 * var(--logo-vertical-space, 0.5em));
padding-top: 0;
padding-top: 0;
}
}
Line 370: Line 397:
#p-logo,
#p-logo,
#p-logo a {
#p-logo a {
height: var(--logo-height,160px);
height: var(--logo-height, 160px);
width: var(--logo-width,160px);
width: var(--logo-width, 160px);
}
}


#p-logo {
#p-logo {
left: calc(50vw * var(--logo-center,0));
left: calc(50vw * var(--logo-center, 0));
margin-left: calc(var(--logo-left,0px) + var(--logo-width,160px) / -2 * var(--logo-center,0));
margin-left: calc(var(--logo-left, 0px) + var(--logo-width, 160px) / -2 * var(--logo-center, 0));
top: 0;
top: 0;
margin-top: calc(0px - var(--logo-height,160px) - var(--logo-vertical-space,0.5em));
position: absolute;
margin-top: calc(0px - var(--logo-height, 160px) - var(--logo-vertical-space, 0.5em));
}
}


Line 385: Line 413:
}
}


div#mw-panel div.portal {
div#mw-panel nav.portal {
background: transparent;
background: transparent;
margin: 0.25em;
margin: 0.25em;
}
}


div#mw-panel #p-logo + div.portal div.body {
div#mw-panel #p-logo + nav.portal div.vector-menu-content {
/* rep:body */
margin: 0;
margin: 0;
}
}


.mediawiki div#mw-panel div.portal h3,
.mediawiki div#mw-panel nav.portal h3,
.mediawiki div#mw-panel.collapsible-nav div.portal h3,
.mediawiki div#mw-panel.collapsible-nav nav.portal h3,
.mediawiki div#mw-panel.collapsible-nav div.portal.collapsed h3 {
.mediawiki div#mw-panel.collapsible-nav nav.portal.collapsed h3 {
font-size: 80%;
font-size: 80%;
padding: 0.5em;
padding: 0.5em;
Line 408: Line 437:


#mw-panel.collapsible-nav .portal.collapsed h3::after {
#mw-panel.collapsible-nav .portal.collapsed h3::after {
content: '+';
content: "+";
float: right;
float: right;
color: var(--sidebar-header-color);
color: var(--sidebar-header-color);
Line 414: Line 443:


#mw-panel.collapsible-nav .portal.expanded h3::after {
#mw-panel.collapsible-nav .portal.expanded h3::after {
content: '-';
content: "-";
float: right;
float: right;
color: var(--sidebar-header-color);
color: var(--sidebar-header-color);
Line 423: Line 452:
}
}


.mediawiki div#mw-panel div.portal h3,
.mediawiki div#mw-panel nav.portal h3,
div#pageWrapper div#mw-panel h3 a {
div#pageWrapper div#mw-panel h3 a {
color: var(--sidebar-header-color);
color: var(--sidebar-header-color);
Line 435: Line 464:
}
}


#mw-panel.collapsible-nav .portal .body ul,
#mw-panel.collapsible-nav .portal .vector-menu-content ul, /* rep:body */
div#mw-panel div.portal div.body ul {
div#mw-panel nav.portal div.vector-menu-content ul {
/* rep:body */
padding-top: 0;
padding-top: 0;
}
}


#mw-panel.collapsible-nav .portal .body ul li,
#mw-panel.collapsible-nav .portal .vector-menu-content ul li,
div#mw-panel div.portal div.body ul li {
div#mw-panel > nav.portal > div > ul > li {
padding: 0.35em 0.5em;
padding: 0.35em 0.5em;
margin: 0.25em 0;
margin: 0.25em 0;
Line 449: Line 479:
}
}


.mediawiki div#mw-panel div.portal div.body ul li a,
.mediawiki div#mw-panel > nav.portal > div > ul > li > a,
div#mw-panel.collapsible-nav div.portal div.body ul li a {
div#mw-panel.collapsible-nav > nav.portal > div > ul > li > a {
color: var(--sidebar-header-color);
color: var(--sidebar-header-color);
}
}


#mw-panel.collapsible-nav .portal .body,
#mw-panel.collapsible-nav .portal .vector-menu-content, /* rep:body */
.mediawiki div#mw-panel div.portal div.body {
.mediawiki div#mw-panel nav.portal div.vector-menu-content {
/* rep:body */
background: transparent;
background: transparent;
margin-left: 0;
margin-left: 0;
Line 461: Line 492:


#mw-panel.collapsible-nav .portal#p-claimWiki h3,
#mw-panel.collapsible-nav .portal#p-claimWiki h3,
div#mw-panel.collapsible-nav div.portal#p-socialProfiles h3 {
div#mw-panel.collapsible-nav nav.portal#p-socialProfiles h3 {
background: transparent;
background: transparent;
display: none;
display: none;
Line 471: Line 502:


#mw-panel.collapsible-nav .portal#p-claimWiki,
#mw-panel.collapsible-nav .portal#p-claimWiki,
div#mw-panel.collapsible-nav div.portal#p-socialProfiles {
div#mw-panel.collapsible-nav nav.portal#p-socialProfiles {
margin: 0.25em;
margin: 0.25em;
}
}
Line 477: Line 508:
.fp-container {
.fp-container {
display: grid;
display: grid;
grid-template-areas: 'h' 'l' 'm' 'r';
grid-template-areas: "h" "l" "m" "r";
grid-template-columns: 100%;
grid-template-columns: 100%;
}
}


@media screen and (min-width:990px) {
@media screen and (min-width: 990px) {
.fp-container {
.fp-container {
grid-template-areas: 'h h' 'l m' 'r m';
grid-template-areas: "h h" "l m" "r m";
grid-template-columns: 50% 50%;
grid-template-columns: 50% 50%;
}
}
}
}


@media screen and (min-width:1350px) {
@media screen and (min-width: 1350px) {
.fp-container {
.fp-container {
grid-template-areas: 'h m r' 'l m r' 'l m r';
grid-template-areas: "h m r" "l m r" "l m r";
grid-template-columns: 33% 33% 33%;
grid-template-columns: 33% 33% 33%;
}
}
Line 641: Line 672:
.fpbox .embedvideo,
.fpbox .embedvideo,
.fpbox .embedvideowrap {
.fpbox .embedvideowrap {
width: 100%!important;
width: 100% !important;
max-width: 480px;
max-width: 480px;
margin: 0 auto;
margin: 0 auto;
Line 647: Line 678:


.fpbox .embedvideowrap iframe {
.fpbox .embedvideowrap iframe {
width: 100%!important;
width: 100% !important;
}
}


Line 657: Line 688:
.fpbox .slideboxlightshow a,
.fpbox .slideboxlightshow a,
.fpbox .slideboxlightshow img {
.fpbox .slideboxlightshow img {
max-width: 100%!important;
max-width: 100% !important;
}
}
/* ------- community portal ------- */
/* ------- community portal ------- */
Line 697: Line 728:
font-size: 95%;
font-size: 95%;
margin: 0 auto 2px;
margin: 0 auto 2px;
    /* fit ambox to 100% minus infobox width - this prevents the amboxes
/* fit ambox to 100% minus infobox width - this prevents the amboxes
    from unintentionally pushing content down below the float:right infoboxes */
* from unintentionally pushing content down below the float:right infoboxes */
    width: calc(100% - 276px - 1em);
width: calc(100% - 276px - 1em);
}
}
@media screen and (max-width: 511px) {
@media screen and (max-width: 511px) {
/* at 511px, mediawiki expands the infobox to full width, so we do the
/* at 511px, mediawiki expands the infobox to full width, so we do the
same with the ambox */
* same with the ambox */
    table.ambox {
table.ambox {
        width: auto;
width: auto;
    }
}
}
}


Line 786: Line 817:


.skin-hydradark .copyright-icon {
.skin-hydradark .copyright-icon {
filter:invert(1);
filter: invert(1);
}
}
/* ------- toc ------- */
/* ------- toc ------- */
Line 793: Line 824:
background-color: var(--toc-background);
background-color: var(--toc-background);
border: var(--toc-border);
border: var(--toc-border);
}
div.toc span.tocnumber {
color: inherit
}
}
/* ------- page history ------- */
/* ------- page history ------- */
Line 861: Line 896:
.mediawiki table.wikitable > * > tr > td {
.mediawiki table.wikitable > * > tr > td {
background: var(--wikitable-background);
background: var(--wikitable-background);
color: var(--body-color);
padding: 0.2em 0.4em;
padding: 0.2em 0.4em;
}
}


.mediawiki table.jquery-tablesorter th.headerSort {
.mediawiki table.jquery-tablesorter th.headerSort {
background-image: none!important;
background-image: none !important;
padding-right: 1.4em;
padding-right: 1.4em;
}
}


.mediawiki table.jquery-tablesorter th.headerSort:after {
.mediawiki table.jquery-tablesorter th.headerSort:after {
content: '\f0dc';
content: "\f0dc";
font-family: 'FontAwesome';
font-family: "FontAwesome";
display: inline-block;
display: inline-block;
width: 1em;
width: 1em;
Line 879: Line 915:


.mediawiki table.jquery-tablesorter th.headerSortUp:after {
.mediawiki table.jquery-tablesorter th.headerSortUp:after {
content: '\f0de';
content: "\f0de";
}
}


.mediawiki table.jquery-tablesorter th.headerSortDown:after {
.mediawiki table.jquery-tablesorter th.headerSortDown:after {
content: '\f0dd';
content: "\f0dd";
}
}


Line 897: Line 933:
}
}


.mediawiki table.cargoTable td.even,
/*.mediawiki table.cargoTable td.even,*/
.mediawiki table.cargoTable td.odd,
/*.mediawiki table.cargoTable td.odd,*/
table.cargoTable.noMerge tr:nth-child(2n+1) {
table.cargoTable tr:nth-child(n),
background: transparent;
table.cargoTable.noMerge tr:nth-child(n) {
}
 
.cargoTable tr:nth-child(even) {
background: transparent;
background: transparent;
}
}
Line 983: Line 1,016:
table.dataTable thead td,
table.dataTable thead td,
table.dataTable thead th {
table.dataTable thead th {
background: var(--wikitable-header-background)!important;
background: var(--wikitable-header-background) !important;
border: var(--wikitable-border)!important;
border: var(--wikitable-border) !important;
}
}


Line 1,023: Line 1,056:


.dataTables_wrapper .dataTables_paginate .paginate_button {
.dataTables_wrapper .dataTables_paginate .paginate_button {
color: var(--link-color)!important;
color: var(--link-color) !important;
}
}


Line 1,039: Line 1,072:
/* widescreen styles for cooking effects page only */
/* widescreen styles for cooking effects page only */
@media screen and (min-width: 1700px) {
@media screen and (min-width: 1700px) {
  body.page-Cooking_effects table.dataTable tr > td:first-child {
body.page-Cooking_effects table.dataTable tr > td:first-child {
    width: 720px;
width: 720px;
  }
}
  body.page-Cooking_effects table.dataTable tr > td:nth-child(2) {
body.page-Cooking_effects table.dataTable tr > td:nth-child(2) {
    white-space: nowrap;
white-space: nowrap;
  }
}
}
}


Line 1,062: Line 1,095:


.mediawiki .TablePager tr:hover td {
.mediawiki .TablePager tr:hover td {
background: var(--wikitable-alt-background)!important;
background: var(--wikitable-alt-background) !important;
color: var(--wikitable-header-color);
color: var(--wikitable-header-color);
}
}
Line 1,178: Line 1,211:
}
}
/** checkboxes **/
/** checkboxes **/
.mediawiki .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:checked+span {
.mediawiki .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:checked + span {
background-color: var(--editor-button-background);
background-color: var(--editor-button-background);
border-color: var(--editor-button-border-color);
border-color: var(--editor-button-border-color);
}
}


.mediawiki .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:hover:checked+span,
.mediawiki .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:hover:checked + span,
.mediawiki .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:focus:checked+span,
.mediawiki .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:focus:checked + span,
.mediawiki .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:active:checked+span,
.mediawiki .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:active:checked + span,
.mediawiki .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:focus:hover:checked+span {
.mediawiki .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type="checkbox"]:focus:hover:checked + span {
background-color: var(--editor-button-border-color);
background-color: var(--editor-button-border-color);
border-color: var(--editor-button-background);
border-color: var(--editor-button-background);
Line 1,221: Line 1,254:
.oo-ui-buttonElement-frameless.oo-ui-widget-enabled > .oo-ui-buttonElement-button > .oo-ui-labelElement-label,
.oo-ui-buttonElement-frameless.oo-ui-widget-enabled > .oo-ui-buttonElement-button > .oo-ui-labelElement-label,
.oo-ui-buttonElement-frameless.oo-ui-widget-enabled > input.oo-ui-buttonElement-button {
.oo-ui-buttonElement-frameless.oo-ui-widget-enabled > input.oo-ui-buttonElement-button {
color: var(--body-color)!important;
color: var(--body-color) !important;
}
}
/* ------- navboxes ------- */
/* ------- navboxes ------- */
Line 1,229: Line 1,262:
font-size: 88%;
font-size: 88%;
margin: auto;
margin: auto;
        margin-top: 1em;
margin-top: 1em;
padding: 1px;
padding: 1px;
text-align: center;
text-align: center;
Line 1,235: Line 1,268:
}
}
/** Border between adjacent navboxes **/
/** Border between adjacent navboxes **/
table.navbox+table.navbox {
table.navbox + table.navbox {
margin-top: -1px;
margin-top: -1px;
}
}
Line 1,455: Line 1,488:
}
}
/* ------- small screen fixes for top nav and sidebar ------- */
/* ------- small screen fixes for top nav and sidebar ------- */
@media screen and (max-width:720px) {
@media screen and (max-width: 720px) {
div#mw-head {
div#mw-head {
position: absolute!important;
position: absolute !important;
top: 0;
top: 0;
}
}
Line 1,465: Line 1,498:
}
}


div#p-cactions,
nav#p-cactions,
div#p-namespaces,
nav#p-namespaces,
div#p-search,
div#p-search,
div#p-variants,
nav#p-variants,
div#p-views {
nav#p-views {
position: relative;
position: relative;
top: 0;
top: 0;
Line 1,482: Line 1,515:
}
}


div.vectorMenu div.menu {
nav.vector-menu div.menu {
left: 0;
left: 0;
right: auto;
right: auto;
Line 1,507: Line 1,540:


div#content,
div#content,
div#footer {
footer#footer {
margin-right: 0;
margin-right: 0;
}
}
Line 1,522: Line 1,555:
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* -------                                       ------- */
/* -------   ------- */
/* ------- CUSTOM & TEMPLATE CSS BELOW THIS LINE ------- */
/* ------- CUSTOM & TEMPLATE CSS BELOW THIS LINE ------- */
/* -------                                       ------- */
/* -------   ------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */


img.scalable { /* class for scalable images (https://help.gamepedia.com/Advanced_images#Using_css-defined_classes) */
img.scalable {
    max-width: 100%;
/* class for scalable images (https://help.gamepedia.com/Advanced_images#Using_css-defined_classes) */
    height:auto;
max-width: 100%;
height: auto;
}
}


Line 1,561: Line 1,595:
}
}
}
}


.moduleinfobox > .infobox-title {
.moduleinfobox > .infobox-title {
Line 1,615: Line 1,648:
#bodyContent .animated > *:not(.animated-active),
#bodyContent .animated > *:not(.animated-active),
#bodyContent .animated > .animated-subframe > *:not(.animated-active) {
#bodyContent .animated > .animated-subframe > *:not(.animated-active) {
display: none
display: none;
}
}
#bodyContent span.animated,
#bodyContent span.animated,
Line 1,628: Line 1,661:


.qud-box-wrapper {
.qud-box-wrapper {
    overflow: hidden;
overflow: hidden;
    line-height: 1.5em;
line-height: 1.5em;
}
}
.qud-box {
.qud-box {
    border: 4px solid #77bfcf;
border: 4px solid #77bfcf;
    border-top: 0;
border-top: 0;
    border-bottom: 0;
border-bottom: 0;
    padding: 0.4em 1em 0.1em 0.5em;
padding: 0.4em 1em 0.1em 0.5em;
    margin: 1em 0 1em 0;
margin: 1em 0 1em 0;
    font-family: Source Code Pro, Lucida Console, Consolas;
font-family: Source Code Pro, Lucida Console, Consolas;
    font-size: medium;
font-size: medium;
    color: #b1c9c3;
color: #b1c9c3;
    background: none;
background: none;
    background: -o-repeating-linear-gradient(transparent 0px, transparent 2px, rgba(0,0,0,0.25) 2px, rgba(0,0,0,0.25) 4px);
background: -o-repeating-linear-gradient(transparent 0px, transparent 2px, rgba(0, 0, 0, 0.25) 2px, rgba(0, 0, 0, 0.25) 4px);
    background: -moz-repeating-linear-gradient(transparent 0px, transparent 2px, rgba(0,0,0,0.25) 2px, rgba(0,0,0,0.25) 4px);
background: -moz-repeating-linear-gradient(transparent 0px, transparent 2px, rgba(0, 0, 0, 0.25) 2px, rgba(0, 0, 0, 0.25) 4px);
    background: -webkit-repeating-linear-gradient(transparent 0px, transparent 2px, rgba(0,0,0,0.25) 2px, rgba(0,0,0,0.25) 4px);
background: -webkit-repeating-linear-gradient(transparent 0px, transparent 2px, rgba(0, 0, 0, 0.25) 2px, rgba(0, 0, 0, 0.25) 4px);
    background: repeating-linear-gradient(transparent 0px, transparent 2px, rgba(0,0,0,0.25) 2px, rgba(0,0,0,0.25) 4px);
background: repeating-linear-gradient(transparent 0px, transparent 2px, rgba(0, 0, 0, 0.25) 2px, rgba(0, 0, 0, 0.25) 4px);
  -o-background-size: 100% 4px;
-o-background-size: 100% 4px;
  -moz-background-size: 100% 4px;
-moz-background-size: 100% 4px;
  -webkit-background-size: 100% 4px;
-webkit-background-size: 100% 4px;
  background-size: 100% 4px;
background-size: 100% 4px;
}
}
.qud-box-header {
.qud-box-header {
    position: relative;
position: relative;
    top: -1em;
top: -1em;
    padding-left: 0.6em;
padding-left: 0.6em;
    padding-right: 0.6em;
padding-right: 0.6em;
    font-size: 1.2rem;
font-size: 1.2rem;
    font-weight: bold;
font-weight: bold;
    display: inline-block;
display: inline-block;
}
}
.qud-box-header:before,
.qud-box-header:before,
.qud-box-header:after {
.qud-box-header:after {
    content: "";
content: "";
    position: absolute;
position: absolute;
    height: 4px;
height: 4px;
    background: #77bfcf;
background: #77bfcf;
    top: .5em;
top: 0.5em;
}
}
.qud-box-header:before {
.qud-box-header:before {
    width: 100px;
width: 100px;
    left: -100px;
left: -100px;
}
}
.qud-box-header:after {
.qud-box-header:after {
    width: 9999px;
width: 9999px;
    right: -9999px;
right: -9999px;
}
}
.qud-box-content {
.qud-box-content {
    margin-top: -0.5em;
margin-top: -0.5em;
    padding-left: 0.3em;
padding-left: 0.3em;
    line-height: 1.5em;
line-height: 1.5em;
}
}
.qud-box-footer-left {
.qud-box-footer-left {
    position: relative;
position: relative;
    top: 0.6em;
top: 0.6em;
    padding-left: 0.1em;
padding-left: 0.1em;
    padding-right: 0.1em;
padding-right: 0.1em;
    font-size:1.2rem;
font-size: 1.2rem;
    font-weight: bold;
font-weight: bold;
    color: #fff;
color: #fff;
}
}
.qud-box-footer-left:before,
.qud-box-footer-left:before,
.qud-box-footer-left:after {
.qud-box-footer-left:after {
    content: "";
content: "";
    position: absolute;
position: absolute;
    height: 4px;
height: 4px;
    background: #77bfcf;
background: #77bfcf;
    top: 50%;
top: 50%;
}
}
.qud-box-footer-left:before {
.qud-box-footer-left:before {
    width: 100px;
width: 100px;
    left: -98px;
left: -98px;
}
}
.qud-box-footer-left:after {
.qud-box-footer-left:after {
    width: 9999px;
width: 9999px;
    right: -9997px;
right: -9997px;
}
}


Line 1,709: Line 1,742:
.white-border .qud-box-header:after,
.white-border .qud-box-header:after,
.white-border .qud-box-footer-left:before,
.white-border .qud-box-footer-left:before,
.white-border .qud-box-footer-left:after
.white-border .qud-box-footer-left:after {
{
background: #b1c9c3;
    background: #b1c9c3;
}
}
.white-border .qud-box {
.white-border .qud-box {
    border: 4px solid #b1c9c3;
border: 4px solid #b1c9c3;
    border-top: 0;
border-top: 0;
    border-bottom: 0;
border-bottom: 0;
}
}


.qud-image-link {
.qud-image-link {
  text-decoration: none;
text-decoration: none;
  cursor: pointer;
cursor: pointer;
  font-weight: bold;
font-weight: bold;
  line-height: 1em;
line-height: 1em;
  height: 1em;
height: 1em;
  display: inline-block;
display: inline-block;
}
}
.qud-image-link-image-container img {
.qud-image-link-image-container img {
  display: inline-block;
display: inline-block;
  position: absolute;
position: absolute;
  top: -100%; left: 0; right: 0; bottom: -100%;
top: -100%;
  margin: auto;
left: 0;
  margin-left: 0;
right: 0;
  margin-right: 0;
bottom: -100%;
  vertical-align: middle;
margin: auto;
  width: 16px;
margin-left: 0;
  height: 24px;
margin-right: 0;
vertical-align: middle;
width: 16px;
height: 24px;
}
}
.qud-image-link-image-container {
.qud-image-link-image-container {
  height: 24px;
height: 24px;
  width: 16px;
width: 16px;
  padding-right: 0.25em;
padding-right: 0.25em;
  text-align: center;
text-align: center;
  vertical-align: middle;
vertical-align: middle;
  display: inline-block;
display: inline-block;
  position: relative;
position: relative;
}
}
.qud-image-link:hover .qud-image-link-image-container {
.qud-image-link:hover .qud-image-link-image-container {
  border-bottom: 0;
border-bottom: 0;
}
}
.qud-image-link span {  
.qud-image-link span {
  text-decoration: underline;
text-decoration: underline;
  text-decoration-style: solid;
text-decoration-style: solid;
}
}
.qud-image {
.qud-image {
  height: 1em;
height: 1em;
  background: transparent;
background: transparent;
  transition: background 0.2s ease-in-out;
transition: background 0.2s ease-in-out;
  display: inline-block;
display: inline-block;
  padding: 0 2px 0.7em 0px;
padding: 0 2px 0.7em 0px;
  margin: 0 0 -0.2em 0;
margin: 0 0 -0.2em 0;
  border-radius: 0.2em;
border-radius: 0.2em;
  white-space: nowrap;
white-space: nowrap;
}
}
.qud-image:hover {
.qud-image:hover {
  background: #0f3b3a;
background: #0f3b3a;
}
}
/*
/*
Line 1,773: Line 1,808:
span.CategoryTreeEmptyBullet,
span.CategoryTreeEmptyBullet,
span.CategoryTreeToggle {
span.CategoryTreeToggle {
    position: relative;
position: relative;
    padding-right:19px;
padding-right: 19px;
    color:transparent;
color: transparent;
}
}
span.CategoryTreeToggle {
span.CategoryTreeToggle {
    color: transparent;
color: transparent;
    position: relative;
position: relative;
    line-height:30px;
line-height: 30px;
}
}
span.CategoryTreeEmptyBullet:before,
span.CategoryTreeEmptyBullet:before,
span.CategoryTreeToggle:before {
span.CategoryTreeToggle:before {
    position: absolute;
position: absolute;
    left:0;
left: 0;
    font-family: var(--qud-font-terminal1);
font-family: var(--qud-font-terminal1);
    font-weight: bold;
font-weight: bold;
    font-size: 18px;
font-size: 18px;
    color: var(--qud-color-y-dark);
color: var(--qud-color-y-dark);
    z-index: 1;
z-index: 1;
}
}
span.CategoryTreeToggle[title="collapse"]:before {
span.CategoryTreeToggle[title="collapse"]:before {
    content:'[-]';
content: "[-]";
}
}
span.CategoryTreeToggle[title="expand"]:before {
span.CategoryTreeToggle[title="expand"]:before {
    content:'[+]';
content: "[+]";
}
}
span.CategoryTreeEmptyBullet:before {
span.CategoryTreeEmptyBullet:before {
    color: var(--qud-color-k);
color: var(--qud-color-k);
    content:'\00a0>';
content: "\00a0>";
    line-height:22px;
line-height: 22px;
}
}
#mw-pages .mw-category li {
#mw-pages .mw-category li {
    position: relative;
position: relative;
    padding-left: 36px;
padding-left: 36px;
    margin-left: -19px;
margin-left: -19px;
}
}
#mw-pages .mw-category li::marker {
#mw-pages .mw-category li::marker {
    position: relative;
position: relative;
    padding-right:19px;
padding-right: 19px;
    color:transparent;
color: transparent;
}
}
#mw-pages .mw-category li:before {
#mw-pages .mw-category li:before {
    position: absolute;
position: absolute;
    left:0;
left: 0;
    font-family: var(--qud-font-terminal1);
font-family: var(--qud-font-terminal1);
    font-weight: bold;
font-weight: bold;
    font-size: 18px;
font-size: 18px;
    z-index: 1;
z-index: 1;
    color: var(--qud-color-k);
color: var(--qud-color-k);
    content:'\00a0>';
content: "\00a0>";
    line-height:22px;
line-height: 22px;
}
}
#mw-subcategories li a,
#mw-subcategories li a,
#mw-pages .mw-category li a {
#mw-pages .mw-category li a {
    font-family: 'Open Sans';
font-family: "Open Sans";
}
}
/*  
/*  
Line 1,833: Line 1,868:
  */
  */
.qud-animated-image-wrap {
.qud-animated-image-wrap {
  position: relative;
position: relative;
}
}
.qud-animated-image-wrap .qud-toggle-for-gif {
.qud-animated-image-wrap .qud-toggle-for-gif {
  position: absolute;
position: absolute;
  top: 0px;
top: 0px;
  right: 0px;
right: 0px;
  font-size: 11px;
font-size: 11px;
  z-index: 10;
z-index: 10;
  font-family: "Open Sans";
font-family: "Open Sans";
}
}
.qud-toggle-for-gif {
.qud-toggle-for-gif {
  display: flex;
display: flex;
  justify-content: center;
justify-content: center;
}
}
.qud-initial-animate-btn {
.qud-initial-animate-btn {
  transition: all 0.5s ease-out;
transition: all 0.5s ease-out;
  display: inline-block;
display: inline-block;
  text-align: center;
text-align: center;
  background-color: var(--qud-bg-color-darker);
background-color: var(--qud-bg-color-darker);
  border: var(--infobox-border);
border: var(--infobox-border);
  padding: 0px 4px 2px 4px;
padding: 0px 4px 2px 4px;
  border-radius: 3px;
border-radius: 3px;
  opacity: 0.8;
opacity: 0.8;
}
}
.qud-initial-animate-btn:hover {
.qud-initial-animate-btn:hover {
  cursor: pointer;
cursor: pointer;
  background-color: var(--qud-color-k);
background-color: var(--qud-color-k);
  color: #fff;
color: #fff;
}
}
.qud-animate-ctrl-down::before {
.qud-animate-ctrl-down::before {
  display: inline-block;
display: inline-block;
  font-style: normal;
font-style: normal;
  font-variant: normal;
font-variant: normal;
  text-rendering: auto;
text-rendering: auto;
  -webkit-font-smoothing: antialiased;
-webkit-font-smoothing: antialiased;
  font-family: "FontAwesome", "Font Awesome 5 Free";
font-family: "FontAwesome", "Font Awesome 5 Free";
  font-weight: 900;
font-weight: 900;
  content: "\f0d7";
content: "\f0d7";
  margin-left: 5px;
margin-left: 5px;
}
}
.qud-infobox-animated-image {
.qud-infobox-animated-image {
  height: 386px; /* extra room to hold gif-play-controls */
height: 386px; /* extra room to hold gif-play-controls */
}
}
.gif-play-controls {
.gif-play-controls {
  font-weight: 700;
font-weight: 700;
  padding-bottom: 10px;
padding-bottom: 10px;
  position: absolute;
position: absolute;
  bottom: 0;
bottom: 0;
  left: 0;
left: 0;
  right: 0;
right: 0;
  color: var(--qud-color-y);
color: var(--qud-color-y);
}
}
.gif-play-controls .play-pause-btn {
.gif-play-controls .play-pause-btn {
  font-size: 2em;
font-size: 2em;
}
}
.gif-play-controls .play-pause-lbl {
.gif-play-controls .play-pause-lbl {
  line-height: 2em;
line-height: 2em;
  font-size: 16px;
font-size: 16px;
}
}
.gif-play-controls .play-pause-warning {
.gif-play-controls .play-pause-warning {
  font-size: 14px;
font-size: 14px;
  font-weight: normal;
font-weight: normal;
  font-family: "Open Sans";
font-family: "Open Sans";
  padding: 0 10px;
padding: 0 10px;
  color: #1c6362; /* slightly brighter than qud-color-k */
color: #1c6362; /* slightly brighter than qud-color-k */
  height: 3.6em;
height: 3.6em;
  line-height: 1.2em;
line-height: 1.2em;
}
}
.gif-play-controls .play-pause-btn::before {
.gif-play-controls .play-pause-btn::before {
  display: inline-block;
display: inline-block;
  font-style: normal;
font-style: normal;
  font-variant: normal;
font-variant: normal;
  text-rendering: auto;
text-rendering: auto;
  -webkit-font-smoothing: antialiased;
-webkit-font-smoothing: antialiased;
  font-family: "FontAwesome", "Font Awesome 5 Free";
font-family: "FontAwesome", "Font Awesome 5 Free";
  font-weight: 900;
font-weight: 900;
  content: "\f144"; /* play icon */
content: "\f144"; /* play icon */
  font-size: 26px;
font-size: 26px;
}
}
.qud-html-summary.qud-html-summary-open
.qud-html-summary.qud-html-summary-open .gif-play-controls .play-pause-btn::before {
  .gif-play-controls
content: "\f04c";
  .play-pause-btn::before {
background-color: white;
  content: "\f04c";
color: black;
  background-color: white;
border-radius: 12px;
  color: black;
height: 20px;
  border-radius: 12px;
width: 22px;
  height: 20px;
padding: 4px 0 0 2px;
  width: 22px;
margin-bottom: 9px;
  padding: 4px 0 0 2px;
font-size: 11px;
  margin-bottom: 9px;
  font-size: 11px;
}
}


Line 1,929: Line 1,962:
.qud-infobox-carousel-static-image,
.qud-infobox-carousel-static-image,
.qud-infobox-animated-image {
.qud-infobox-animated-image {
  display: inline-block;
display: inline-block;
  position: relative;
position: relative;
  width: 100%;
width: 100%;
}
}
.qud-infobox-animated-image-initial img,
.qud-infobox-animated-image-initial img,
.qud-infobox-carousel-static-image img,
.qud-infobox-carousel-static-image img,
.qud-infobox-animated-image img {
.qud-infobox-animated-image img {
  width: 160px;
width: 160px;
}
}
.qud-infobox-animated-image .qud-html-summary {
.qud-infobox-animated-image .qud-html-summary {
  /* the summary element acts as a clickable area over the entire object */
/* the summary element acts as a clickable area over the entire object */
  cursor: pointer;
cursor: pointer;
  position: absolute;
position: absolute;
  top: 0;
top: 0;
  right: 0;
right: 0;
  left: 0;
left: 0;
  bottom: 0;
bottom: 0;
  z-index: 2;
z-index: 2;
  background: transparent;
background: transparent;
}
}
/* for blink/webkit */
/* for blink/webkit */
.qud-infobox-animated-image details .qud-html-summary::-webkit-details-marker {
.qud-infobox-animated-image details .qud-html-summary::-webkit-details-marker {
  display: none;
display: none;
}
}
/* for firefox */
/* for firefox */
.qud-infobox-animated-image details > .qud-html-summary:first-of-type {
.qud-infobox-animated-image details > .qud-html-summary:first-of-type {
  list-style: none;
list-style: none;
}
}
.qud-infobox-animated-image .qud-html-summary + * {
.qud-infobox-animated-image .qud-html-summary + * {
  position: absolute;
position: absolute;
  top: 0;
top: 0;
  left: 0;
left: 0;
  right: 0;
right: 0;
  bottom: 0;
bottom: 0;
  overflow-y: auto;
overflow-y: auto;
}
}
.qud-infobox-animated-image .qud-html-summary + * a {
.qud-infobox-animated-image .qud-html-summary + * a {
  color: #fff; /* unsure if this style is used */
color: #fff; /* unsure if this style is used */
}
}
.qud-infobox-animated-image .qud-html-summary:focus {
.qud-infobox-animated-image .qud-html-summary:focus {
  outline: transparent; /* suppress outline when clicked */
outline: transparent; /* suppress outline when clicked */
}
}
.qud-infobox-animated-image .qud-html-details .animated-image {
.qud-infobox-animated-image .qud-html-details .animated-image {
  text-align: center;
text-align: center;
}
}
.qud-infobox-animated-image .qud-html-details .animated-image img {
.qud-infobox-animated-image .qud-html-details .animated-image img {
  display: inline-block;
display: inline-block;
  overflow: visible;
overflow: visible;
}
}
.qud-html-summary + * {
.qud-html-summary + * {
  z-index: -1;
z-index: -1;
  display: none;
display: none;
}
}
.qud-html-summary-open + * {
.qud-html-summary-open + * {
  z-index: 1;
z-index: 1;
  display: unset;
display: unset;
}
}
/* CAROUSEL STYLES */
/* CAROUSEL STYLES */
.qud-carousel-title {
.qud-carousel-title {
  height: 0px; /* javascript expands this to 25px */
height: 0px; /* javascript expands this to 25px */
  font-size: 16px;
font-size: 16px;
  line-height: 25px;
line-height: 25px;
  color: var(--qud-color-k);
color: var(--qud-color-k);
  overflow: hidden;
overflow: hidden;
}
}
.qud-sprite-carousel {
.qud-sprite-carousel {
  position: relative;
position: relative;
}
}
.qud-sprite-carousel > .qud-carousel-item {
.qud-sprite-carousel > .qud-carousel-item {
  display: block;
display: block;
}
}
.qud-sprite-carousel > .qud-carousel-item ~ .qud-carousel-item {
.qud-sprite-carousel > .qud-carousel-item ~ .qud-carousel-item {
  display: none; /* applied to all but the first .qud-carousel-item */
display: none; /* applied to all but the first .qud-carousel-item */
}
}
.qud-carousel-left,
.qud-carousel-left,
.qud-carousel-right {
.qud-carousel-right {
  display: flex;
display: flex;
  align-items: center;
align-items: center;
  justify-content: center;
justify-content: center;
  position: absolute;
position: absolute;
  top: 0;
top: 0;
  z-index: 5;
z-index: 5;
  font-size: 38px;
font-size: 38px;
  width: 18%;
width: 18%;
  height: 240px;
height: 240px;
}
}
.qud-carousel-left {
.qud-carousel-left {
  left: 0;
left: 0;
}
}
.qud-carousel-right {
.qud-carousel-right {
  right: 0;
right: 0;
}
}
.qud-carousel-btn {
.qud-carousel-btn {
  display: flex;
display: flex;
  align-items: center;
align-items: center;
  justify-content: center;
justify-content: center;
  height: 60%;
height: 60%;
  width: 100%;
width: 100%;
  cursor: pointer;
cursor: pointer;
  color: var(--qud-color-k-dark);
color: var(--qud-color-k-dark);
  color: rgba(108, 180, 122, 0.2);
color: rgba(108, 180, 122, 0.2);
  transition: color 0.3s ease-out;
transition: color 0.3s ease-out;
}
}
.qud-carousel-btn:hover {
.qud-carousel-btn:hover {
  color: var(--qud-color-k);
color: var(--qud-color-k);
  color: rgba(108, 180, 122, 0.5);
color: rgba(108, 180, 122, 0.5);
}
}
/*
/*
Line 2,041: Line 2,074:
  */
  */
.qud-inline-gif {
.qud-inline-gif {
  position: relative;
position: relative;
  display: inline-block;
display: inline-block;
  cursor: pointer;
cursor: pointer;
}
}
.qud-inline-gif-mask {
.qud-inline-gif-mask {
  z-index: 1;
z-index: 1;
  position: absolute;
position: absolute;
  top: 0; bottom: 0; left: 0; right: 0;
top: 0;
  display: flex;
bottom: 0;
  align-items: center;
left: 0;
  justify-content: center;
right: 0;
  background: var(--qud-bg-color-semidark);
display: flex;
align-items: center;
justify-content: center;
background: var(--qud-bg-color-semidark);
}
}
.qud-inline-gif-mask > span {
.qud-inline-gif-mask > span {
  color: var(--qud-color-k-dark);
color: var(--qud-color-k-dark);
  font-weight: bold;
font-weight: bold;
  font-family: var(--qud-font-terminal1);
font-family: var(--qud-font-terminal1);
  font-size: 18px;
font-size: 18px;
  background: var(--qud-color-y);
background: var(--qud-color-y);
  height: 44px;
height: 44px;
  width: 44px;
width: 44px;
  border-radius: 22px;
border-radius: 22px;
  display: flex;
display: flex;
  align-items: center;
align-items: center;
  justify-content: center;
justify-content: center;
}
}
.qud-inline-gif .qud-invisible {
.qud-inline-gif .qud-invisible {
  display: none;
display: none;
}
}
.qud-inline-gif-wrap {
.qud-inline-gif-wrap {
    display: inline-block;
display: inline-block;
    padding: 4px 4px 2px 4px;
padding: 4px 4px 2px 4px;
    border: var(--infobox-border);
border: var(--infobox-border);
}
}
.qud-inline-gif-label {
.qud-inline-gif-label {
    margin-top: 2px;
margin-top: 2px;
    text-align: right;
text-align: right;
    font-size: 80%;
font-size: 80%;
    opacity: 0.5;
opacity: 0.5;
}
}
/*
/*
Line 2,089: Line 2,125:
  */
  */
@media screen and (max-width: 1599px) {
@media screen and (max-width: 1599px) {
    .subtype-infobox {
.subtype-infobox {
    width: unset !important;
width: unset !important;
        max-width: 780px !important;
max-width: 780px !important;
    }
}
    .subtype-items {
.subtype-items {
        flex: 0 0 100% !important;
flex: 0 0 100% !important;
        flex-wrap: wrap !important;
flex-wrap: wrap !important;
    }
}
}
}
@media screen and (max-width: 900px) {
@media screen and (max-width: 900px) {
  .subtype-title {
.subtype-title {
    flex-wrap: wrap;
flex-wrap: wrap;
      justify-content: center;
justify-content: center;
      padding: 0.2em 0 !important;
padding: 0.2em 0 !important;
  }
}
  .subtype-title > div:first-child {
.subtype-title > div:first-child {
      flex: 0 0 100%;
flex: 0 0 100%;
  }
}
  .subtype-title > div:nth-child(2) {
.subtype-title > div:nth-child(2) {
      color: var(--qud-color-k) !important;
color: var(--qud-color-k) !important;
  }
}
  .subtype-title div {
.subtype-title div {
      flex-grow: 1;
flex-grow: 1;
      text-align: center;
text-align: center;
      padding: 0 !important;
padding: 0 !important;
  }
}
  .subtype-image, .subtype-bonus-box {
.subtype-image,
      flex: 0 0 50%;
.subtype-bonus-box {
      justify-content: center;
flex: 0 0 50%;
      margin-right: 0 !important;
justify-content: center;
  }
margin-right: 0 !important;
  .subtype-skill-box {
}
      margin: auto;
.subtype-skill-box {
      flex: 0 0 90%;
margin: auto;
      padding: 0 !important;
flex: 0 0 90%;
  }
padding: 0 !important;
  .subtype-items-list ul {
}
      display: flex !important;
.subtype-items-list ul {
      flex-wrap: wrap;
display: flex !important;
  }
flex-wrap: wrap;
  .subtype-items-list ul li {
}
      flex: 0 0 100% !important;
.subtype-items-list ul li {
  }
flex: 0 0 100% !important;
  .subtype-equip-list, .subtype-items-list {
}
      width: 100%;
.subtype-equip-list,
      padding: 1em !important;
.subtype-items-list {
      text-align: center;
width: 100%;
  }
padding: 1em !important;
  .subtype-equip-list ul, .subtype-items-list ul {
text-align: center;
      list-style-type: none;
}
      margin: 0 !important;
.subtype-equip-list ul,
  }
.subtype-items-list ul {
  .subtype-equip-list div, .subtype-items-list div {
list-style-type: none;
      padding: 0 !important;
margin: 0 !important;
  }
}
  .subtype-footnote {
.subtype-equip-list div,
      justify-content: center !important;
.subtype-items-list div {
  }
padding: 0 !important;
}
}
@media screen and (max-width: 550px) {
.subtype-footnote {
  .subtype-image, .subtype-bonus-box {
justify-content: center !important;
      flex: 0 0 100%;
}
      max-width: unset !important;
}
      margin: 0;
@media screen and (max-width: 550px) {
  }
.subtype-image,
  .subtype-bonus-box {
.subtype-bonus-box {
      text-align: center;
flex: 0 0 100%;
      height: unset !important;
max-width: unset !important;
      padding: 1em 0 !important;
margin: 0;
  }
}
  .subtype-bonus-box div {
.subtype-bonus-box {
      position: static !important;
text-align: center;
  }
height: unset !important;
}
padding: 1em 0 !important;
/*
}
  *  QUD WILLPOWER/COOLDOWN TABLES
.subtype-bonus-box div {
position: static !important;
}
}
/*
  *  QUD WILLPOWER/COOLDOWN TABLES
  *  =============================
  *  =============================
  */
  */
.willpower-cooldown-table {
.willpower-cooldown-table {
    border-collapse: collapse;
border-collapse: collapse;
}
}
.willpower-cooldown-table td,
.willpower-cooldown-table td,
.willpower-cooldown-table th {
.willpower-cooldown-table th {
    padding: 0.3em 0.5em;
padding: 0.3em 0.5em;
    text-align: center;
text-align: center;
    background-color: var(--qud-bg-color-darker);
background-color: var(--qud-bg-color-darker);
    border-bottom: none;
border-bottom: none;
    border-top: none;
border-top: none;
    color: var(--wikitable-color);
color: var(--wikitable-color);
}
}
.willpower-cooldown-table th {
.willpower-cooldown-table th {
    border-bottom: 2px solid var(--qud-color-y-dark);
border-bottom: 2px solid var(--qud-color-y-dark);
}
}
.willpower-cooldown-table .cd-wi-cell {
.willpower-cooldown-table .cd-wi-cell {
    border-bottom: var(--wikitable-border);
border-bottom: var(--wikitable-border);
}
}
.willpower-cooldown-table .cd-wi-cell,
.willpower-cooldown-table .cd-wi-cell,
.willpower-cooldown-table .cd-wi-header {
.willpower-cooldown-table .cd-wi-header {
    background: var(--wikitable-background);
background: var(--wikitable-background);
}
}
.willpower-cooldown-table tr:last-child .cd-wi-cell {
.willpower-cooldown-table tr:last-child .cd-wi-cell {
    border-bottom: none;
border-bottom: none;
}
}
.willpower-cooldown-table .cd-cd-cell {
.willpower-cooldown-table .cd-cd-cell {
    font-weight: bold;
font-weight: bold;
    background-color: var(--wikitable-header-background);
background-color: var(--wikitable-header-background);
    color: var(--wikitable-header-color);
color: var(--wikitable-header-color);
    border-right: 2px solid var(--qud-color-y-dark);
border-right: 2px solid var(--qud-color-y-dark);
    border-left: var(--wikitable-border);
border-left: var(--wikitable-border);
}
}
.willpower-cooldown-table .cd-cd-cell:last-child {
.willpower-cooldown-table .cd-cd-cell:last-child {
    border-right: none;
border-right: none;
}
}
.willpower-cooldown-table .cd-cd-header {
.willpower-cooldown-table .cd-cd-header {
    border-right: 2px solid var(--qud-color-y-dark);
border-right: 2px solid var(--qud-color-y-dark);
    border-left: var(--wikitable-border);
border-left: var(--wikitable-border);
    background: var(--wikitable-header-background);
background: var(--wikitable-header-background);
}
}
.willpower-cooldown-table .cd-cd-header:last-child {
.willpower-cooldown-table .cd-cd-header:last-child {
    border-right: none;
border-right: none;
}
}
.cd-wi-32-cell {
.cd-wi-32-cell {
    position: relative;
position: relative;
}
}
.cd-wi-32-cell:after {
.cd-wi-32-cell:after {
    position: absolute;
position: absolute;
    content:'+';
content: "+";
    font-size: 0.7em;
font-size: 0.7em;
    top:45%;
top: 45%;
    bottom:55%;
bottom: 55%;
    display:flex;
display: flex;
    right:2px;
right: 2px;
    line-height: 0;
line-height: 0;
}
}
/*
/*
Line 2,228: Line 2,269:
  */
  */
:root {
:root {
  --qud-color-y:     #ffffff;
--qud-color-y: #ffffff;
  --qud-color-y-dark: #b1c9c3;
--qud-color-y-dark: #b1c9c3;
  --qud-color-r:     #d74200;
--qud-color-r: #d74200;
  --qud-color-r-dark: #a64a2e;
--qud-color-r-dark: #a64a2e;
  --qud-color-o:     #e99f10;
--qud-color-o: #e99f10;
  --qud-color-o-dark: #f15f22;
--qud-color-o-dark: #f15f22;
  --qud-color-w:     #cfc041;
--qud-color-w: #cfc041;
  --qud-color-w-dark: #98875f;
--qud-color-w-dark: #98875f;
  --qud-color-g:     #00c420;
--qud-color-g: #00c420;
  --qud-color-g-dark: #009403;
--qud-color-g-dark: #009403;
  --qud-color-b:     #0096ff;
--qud-color-b: #0096ff;
  --qud-color-b-dark: #0048bd;
--qud-color-b-dark: #0048bd;
  --qud-color-c:     #77bfcf;
--qud-color-c: #77bfcf;
  --qud-color-c-dark: #40a4b9;
--qud-color-c-dark: #40a4b9;
  --qud-color-m:     #da5bd6;
--qud-color-m: #da5bd6;
  --qud-color-m-dark: #b154cf;
--qud-color-m-dark: #b154cf;
  --qud-color-k:     #155352;
--qud-color-k: #155352;
  --qud-color-k-dark: #0f3b3a;
--qud-color-k-dark: #0f3b3a;


  --qud-font-terminal1: 'Source Code Pro','Consolas','Courier New','Courier','Lucida Console';
--qud-font-terminal1: "Source Code Pro", "Consolas", "Courier New", "Courier", "Lucida Console";
  --qud-font-terminal2: 'Source Code Pro','Consolas','Lucida Console','Courier New','Courier';
--qud-font-terminal2: "Source Code Pro", "Consolas", "Lucida Console", "Courier New", "Courier";
  --qud-font-icon1: 'Source Code Pro','Calibri','Courier New','Courier','Arial';
--qud-font-icon1: "Source Code Pro", "Calibri", "Courier New", "Courier", "Arial";
  --qud-font-icon2: 'Source Code Pro','Calibri','Consolas','Lucida Console';
--qud-font-icon2: "Source Code Pro", "Calibri", "Consolas", "Lucida Console";
  --qud-font-infobox-title: 'Source Code Pro','Open Sans','Segoe UI','Consolas','Lucida Console','Courier New','Courier';
--qud-font-infobox-title: "Source Code Pro", "Open Sans", "Segoe UI", "Consolas", "Lucida Console", "Courier New", "Courier";
  --qud-font-infobox-content: 'Open Sans','Segoe UI','Consolas','Lucida Console','Courier New','Courier','Source Code Pro';
--qud-font-infobox-content: "Open Sans", "Segoe UI", "Consolas", "Lucida Console", "Courier New", "Courier", "Source Code Pro";
  --qud-font-collapser-arrows: 'Source Code Pro, Lucida Console, Consolas';
--qud-font-collapser-arrows: "Source Code Pro, Lucida Console, Consolas";


  --qud-bg-color-ultralight: rgba(6,28,23,0.2);
--qud-bg-color-ultralight: rgba(6, 28, 23, 0.2);
  --qud-bg-color-semidark: rgba(6,28,23,0.7);
--qud-bg-color-semidark: rgba(6, 28, 23, 0.7);
  --qud-bg-color-dark: rgba(6,28,23,0.8);
--qud-bg-color-dark: rgba(6, 28, 23, 0.8);
  --qud-bg-color-darker: rgba(6,28,23,0.9);
--qud-bg-color-darker: rgba(6, 28, 23, 0.9);
}
}
/*
/*
Line 2,265: Line 2,306:
  */
  */
b {
b {
  font-weight: 700; /* fix for firefox additive bolding when there are multiple nested <b> tags */
font-weight: 700; /* fix for firefox additive bolding when there are multiple nested <b> tags */
}
}
/*
/*
Line 2,272: Line 2,313:
  */
  */
.qud-infobox-version {
.qud-infobox-version {
    border-top: var(--infobox-border);
border-top: var(--infobox-border);
    padding-top: 7px;
padding-top: 7px;
    margin-top: 5px;
margin-top: 5px;
    text-align: center;
text-align: center;
    font-weight: normal;
font-weight: normal;
    font-size: 12px;
font-size: 12px;
    font-family: var(--qud-font-infobox-content);
font-family: var(--qud-font-infobox-content);
    color: var(--qud-color-y-dark);
color: var(--qud-color-y-dark);
    opacity: 0.8;
opacity: 0.8;
}
}
.qud-infobox-version > .qud-version-num {
.qud-infobox-version > .qud-version-num {
    font-weight: bold;
font-weight: bold;
}
}
/*  
/*  
Line 2,290: Line 2,331:
  */
  */
.qud-tooltip {
.qud-tooltip {
  position: relative;
position: relative;
  z-index: 11;
z-index: 11;
}
}
.qud-tooltip .qud-tooltip-text {
.qud-tooltip .qud-tooltip-text {
  visibility: hidden;
visibility: hidden;
  width: 120px;
width: 120px;
  background-color: var(--qud-bg-color-darker);
background-color: var(--qud-bg-color-darker);
  color: var(--qud-color-y);
color: var(--qud-color-y);
  text-align: center;
text-align: center;
  padding: 5px 0;
padding: 5px 0;
  border-radius: 6px;
border-radius: 6px;
  font-size: calc(0.23em + 7px);
font-size: calc(0.23em + 7px);
  position: absolute;
position: absolute;
  z-index: 2;
z-index: 2;
  width: 120px;
width: 120px;
  bottom: 100%;
bottom: 100%;
  left: 50%;  
left: 50%;
  margin-left: -60px; /* half of the width */
margin-left: -60px; /* half of the width */
  border: 1px solid rgba(177,201,195,0.1);
border: 1px solid rgba(177, 201, 195, 0.1);
}
}
.qud-quote-box .qud-tooltip-text { /* additional adjustment for qud quote boxes */
.qud-quote-box .qud-tooltip-text {
    font-family: 'Open Sans';
/* additional adjustment for qud quote boxes */
    font-weight: normal;
font-family: "Open Sans";
    font-size: calc(0.23em + 9px);
font-weight: normal;
font-size: calc(0.23em + 9px);
}
}
.qud-tooltip .qud-tooltip-text.qud-tooltip-wide {
.qud-tooltip .qud-tooltip-text.qud-tooltip-wide {
Line 2,320: Line 2,362:
}
}
.qud-tooltip > sup + .qud-tooltip-text {
.qud-tooltip > sup + .qud-tooltip-text {
  font-weight: normal;
font-weight: normal;
}
}
.qud-tooltip:hover .qud-tooltip-text {
.qud-tooltip:hover .qud-tooltip-text {
  visibility: visible;
visibility: visible;
}
}
.qud-tooltip:hover .qud-tooltip-text.delayed-tooltip {
.qud-tooltip:hover .qud-tooltip-text.delayed-tooltip {
  transition-delay: 0.35s; /* delayed-tooltip class to delay the appearance */
transition-delay: 0.35s; /* delayed-tooltip class to delay the appearance */
}
}
.qud-tooltip-ulabel { /* apply ulabel class for dotted underline on tooltip word */
.qud-tooltip-ulabel {
  text-decoration: underline dotted rgba(177,201,195,0.7);
/* apply ulabel class for dotted underline on tooltip word */
text-decoration: underline dotted rgba(177, 201, 195, 0.7);
}
}
.qud-quote-box .qud-tooltip-ulabel { /* additional adjustment for qud quote boxes */
.qud-quote-box .qud-tooltip-ulabel {
    text-underline-position: under;
/* additional adjustment for qud quote boxes */
text-underline-position: under;
}
}
/* extend-line style uses dynamic width extending rightward from tooltip text (instead of fixed width centered tooltip) */
/* extend-line style uses dynamic width extending rightward from tooltip text (instead of fixed width centered tooltip) */
.qud-tooltip > span.qud-tooltip-text.extend-line {  
.qud-tooltip > span.qud-tooltip-text.extend-line {
  width:auto;
width: auto;
  white-space: nowrap;
white-space: nowrap;
  padding: 0.8em 1em;
padding: 0.8em 1em;
  margin-left: -0.5em;
margin-left: -0.5em;
  left:0;
left: 0;
  right:auto;
right: auto;
  top:auto;
top: auto;
  bottom:100%;
bottom: 100%;
  margin-left:unset;
margin-left: unset;
}
}
/* style superscripts - intended to contain a question mark for tooltip hover (other symbols might work but are untested) */
/* style superscripts - intended to contain a question mark for tooltip hover (other symbols might work but are untested) */
.qud-tooltip > sup {
.qud-tooltip > sup {
  display: inline-block;  
display: inline-block;
  width:9px;
width: 9px;
  height:9px;
height: 9px;
  line-height:9px;
line-height: 9px;
  border-radius:20px;
border-radius: 20px;
  margin-left: 3px;
margin-left: 3px;
  margin-right: 3px;
margin-right: 3px;
  border:1px solid #cccccc;
border: 1px solid #cccccc;
  text-align:center;
text-align: center;
  padding:1px;
padding: 1px;
  font-family:'Source Code Pro','Lucida Console',Monaco,'Courier New',Courier;
font-family: "Source Code Pro", "Lucida Console", Monaco, "Courier New", Courier;
  font-size:10px;
font-size: 10px;
  font-weight:100;
font-weight: 100;
}
}
.qud-tooltip sup,
.qud-tooltip sup,
.qud-tooltip .qud-tooltip-ulabel {
.qud-tooltip .qud-tooltip-ulabel {
  transition: all 0.15s;
transition: all 0.15s;
}
}
.qud-tooltip:hover sup {
.qud-tooltip:hover sup {
  transform: scale(1.15, 1.15);
transform: scale(1.15, 1.15);
  color: var(--qud-color-c);
color: var(--qud-color-c);
  border-color: var(--qud-color-c);
border-color: var(--qud-color-c);
  font-weight: bold;
font-weight: bold;
  cursor: help;
cursor: help;
}
}
.qud-tooltip:hover .qud-tooltip-ulabel {
.qud-tooltip:hover .qud-tooltip-ulabel {
  text-decoration-color: var(--qud-color-c);
text-decoration-color: var(--qud-color-c);
}
}
.qud-tooltip-text code {
.qud-tooltip-text code {
    /* override code style in tooltips */
/* override code style in tooltips */
    border: 1px solid var(--qud-color-k-dark);
border: 1px solid var(--qud-color-k-dark);
    padding: 0px 3px 1px 3px;
padding: 0px 3px 1px 3px;
    font-size: 100%;
font-size: 100%;
}
}
/*
/*
Line 2,387: Line 2,431:
  */
  */
.moduleinfobox {
.moduleinfobox {
  font-family: var(--qud-font-infobox-content);
font-family: var(--qud-font-infobox-content);
  overflow: hidden; /* prevents horizontal scrollbar from appearing */
overflow: hidden; /* prevents horizontal scrollbar from appearing */
}
}
.moduleinfobox :focus {
.moduleinfobox :focus {
  outline: 0px solid #000; /* remove focus outline on selected collapsible */
outline: 0px solid #000; /* remove focus outline on selected collapsible */
}
}
.moduleinfobox > .infobox-title {
.moduleinfobox > .infobox-title {
  background: rgba(0,0,0,0.5);
background: rgba(0, 0, 0, 0.5);
  color: var(--qud-color-y);
color: var(--qud-color-y);
  font-family: var(--qud-font-infobox-title);
font-family: var(--qud-font-infobox-title);
  font-size: 1.5em;
font-size: 1.5em;
  line-height: 1.35em;
line-height: 1.35em;
  padding: 0.1em 8px 0.3em 8px;
padding: 0.1em 8px 0.3em 8px;
}
}
.moduleinfobox > .infobox-title,
.moduleinfobox > .infobox-title,
.moduleinfobox > .infobox-imagearea {
.moduleinfobox > .infobox-imagearea {
  text-align: center;
text-align: center;
}
}
.moduleinfobox > .infobox-imagearea > .qud-displaychar-standin-for-image {
.moduleinfobox > .infobox-imagearea > .qud-displaychar-standin-for-image {
  height: 180px;
height: 180px;
  font-size: 140px;
font-size: 140px;
  line-height: 140px;
line-height: 140px;
  overflow: hidden;
overflow: hidden;
}
}
.moduleinfobox > .infobox-rows > tbody > tr > th {
.moduleinfobox > .infobox-rows > tbody > tr > th {
    white-space: normal; /* allow <th> infobox titles to wrap */
white-space: normal; /* allow <th> infobox titles to wrap */
    font-weight: 700;
font-weight: 700;
    color: var(--qud-color-y-dark);
color: var(--qud-color-y-dark);
}
}
.moduleinfobox > .infobox-rows > tbody > tr > th,
.moduleinfobox > .infobox-rows > tbody > tr > th,
.moduleinfobox > .infobox-rows > tbody > tr > th + td {
.moduleinfobox > .infobox-rows > tbody > tr > th + td {
    background: var(--qud-bg-color-ultralight);
background: var(--qud-bg-color-ultralight);
}
}
.moduleinfobox > .infobox-rows > tbody > tr > th + td {
.moduleinfobox > .infobox-rows > tbody > tr > th + td {
  font-size: 1.12em;
font-size: 1.12em;
  word-break: break-word;
word-break: break-word;
  word-wrap: break-word;
word-wrap: break-word;
  overflow-wrap: break-word;
overflow-wrap: break-word;
}
}
.moduleinfobox > .infobox-rows > tbody > tr > th > div {
.moduleinfobox > .infobox-rows > tbody > tr > th > div {
    max-width: 130px; /* limit width of <th> infobox titles */
max-width: 130px; /* limit width of <th> infobox titles */
    text-align: left;
text-align: left;
}
}
/* hover effect for infobox rows */
/* hover effect for infobox rows */
.moduleinfobox > .infobox-rows > tbody > tr:hover > th,
.moduleinfobox > .infobox-rows > tbody > tr:hover > th,
.moduleinfobox > .infobox-rows > tbody > tr:hover > th + td {
.moduleinfobox > .infobox-rows > tbody > tr:hover > th + td {
    background-color: var(--qud-bg-color-darker);
background-color: var(--qud-bg-color-darker);
    color: var(--qud-color-y);
color: var(--qud-color-y);
}
}
.moduleinfobox > .infobox-rows > tbody > tr > th,
.moduleinfobox > .infobox-rows > tbody > tr > th,
.moduleinfobox > .infobox-rows > tbody > tr > th + td {
.moduleinfobox > .infobox-rows > tbody > tr > th + td {
    transition: background-color 0.5s, color 0.5s;
transition: background-color 0.5s, color 0.5s;
}
}
.moduleinfobox > .infobox-rows {  
.moduleinfobox > .infobox-rows {
    border-spacing: 0 1px !important;  
border-spacing: 0 1px !important;
}
}
/* Desktop/fullscreen only styles */
/* Desktop/fullscreen only styles */
Line 2,450: Line 2,494:
.qud-mutation-infobox.moduleinfobox .mobileonly,
.qud-mutation-infobox.moduleinfobox .mobileonly,
.qud-character-infobox.moduleinfobox .mobileonly {
.qud-character-infobox.moduleinfobox .mobileonly {
  display: none !important;
display: none !important;
}
}
@media (min-width: 512px) /* Only for use with desktop/fullscreen */
@media (min-width: 512px) /* Only for use with desktop/fullscreen */ {
{
.qud-item-infobox.moduleinfobox,
  .qud-item-infobox.moduleinfobox,
.qud-food-infobox.moduleinfobox,
  .qud-food-infobox.moduleinfobox,
.qud-effect-infobox.moduleinfobox,
  .qud-effect-infobox.moduleinfobox,
.qud-location-infobox.moduleinfobox,
  .qud-location-infobox.moduleinfobox,
.qud-mutation-infobox.moduleinfobox,
  .qud-mutation-infobox.moduleinfobox,
.qud-character-infobox.moduleinfobox {
  .qud-character-infobox.moduleinfobox {
margin-top: 1em; /* aligns the character infobox with the Qud Look description */
    margin-top: 1em; /* aligns the character infobox with the Qud Look description */
}
  }
}
}
/* prevent long infobox favilinks from over-expanding the width of the entire infobox container: */
/* prevent long infobox favilinks from over-expanding the width of the entire infobox container: */
.moduleinfobox > .infobox-rows > tbody > tr > th + td > p span.qud-image-link {
.moduleinfobox > .infobox-rows > tbody > tr > th + td > p span.qud-image-link {
    max-width: 150px;
max-width: 150px;
    overflow: hidden;
overflow: hidden;
    text-overflow: ellipsis;
text-overflow: ellipsis;
}
}
/*  
/*  
Line 2,475: Line 2,518:
.moduleinfobox > .infobox-rows > tbody > tr > th.qud-collapser,
.moduleinfobox > .infobox-rows > tbody > tr > th.qud-collapser,
.moduleinfobox > .infobox-rows > tbody > tr > td.qud-collapser {
.moduleinfobox > .infobox-rows > tbody > tr > td.qud-collapser {
  position: relative;
position: relative;
  font-weight: bold;
font-weight: bold;
  font-family: 'Open Sans';
font-family: "Open Sans";
  height: 2.6em;
height: 2.6em;
  background: rgba(0,0,0,0.3);
background: rgba(0, 0, 0, 0.3);
  transition: background-color 0.2s, color 0.5s;
transition: background-color 0.2s, color 0.5s;
}
}
.moduleinfobox > .infobox-rows > tbody > tr:hover > th.qud-collapser,
.moduleinfobox > .infobox-rows > tbody > tr:hover > th.qud-collapser,
.moduleinfobox > .infobox-rows > tbody > tr:hover > td.qud-collapser {
.moduleinfobox > .infobox-rows > tbody > tr:hover > td.qud-collapser {
    background: rgba(0,0,0,0.5);
background: rgba(0, 0, 0, 0.5);
}
}
.qud-collapser-content {
.qud-collapser-content {
  padding: 0 4px;
padding: 0 4px;
  background: var(--code-background);
background: var(--code-background);
}
}
.qud-collapser-content div,
.qud-collapser-content div,
.qud-collapser-content span {
.qud-collapser-content span {
    font-family: var(--qud-font-infobox-content);
font-family: var(--qud-font-infobox-content);
}
}
.qud-collapser > .qud-collapser-arrow {
.qud-collapser > .qud-collapser-arrow {
  display: block !important; /* override display:none applied by mw-collapsible */
display: block !important; /* override display:none applied by mw-collapsible */
}
}
.qud-collapser > .qud-collapser-arrow:after {
.qud-collapser > .qud-collapser-arrow:after {
  font-size: 0.95em;
font-size: 0.95em;
  font-weight: normal;
font-weight: normal;
  position: absolute;
position: absolute;
  top: .8em;
top: 0.8em;
  letter-spacing: 0.02em;
letter-spacing: 0.02em;
  content:'[hide]';
content: "[hide]";
  color: var(--qud-color-c-dark);
color: var(--qud-color-c-dark);
  opacity: 0.5;
opacity: 0.5;
  transition: color 0.4s, transform 0.1s;
transition: color 0.4s, transform 0.1s;
  transform: perspective(1px); /* fixes some hover bluriness in Chrome */
transform: perspective(1px); /* fixes some hover bluriness in Chrome */
}
}
.qud-collapser > .qud-collapser-arrow.mw-collapsed:after,  
.qud-collapser > .qud-collapser-arrow.mw-collapsed:after,
.qud-collapser > .qud-collapser-arrow.collapsed:after {
.qud-collapser > .qud-collapser-arrow.collapsed:after {
  content:'[show]';
content: "[show]";
}
}
tr:hover > .qud-collapser > .qud-collapser-arrow:after {
tr:hover > .qud-collapser > .qud-collapser-arrow:after {
  text-decoration: underline;
text-decoration: underline;
  color: var(--qud-color-c);
color: var(--qud-color-c);
  opacity: 1;
opacity: 1;
}
}
.qud-collapser > .qud-collapser-title {
.qud-collapser > .qud-collapser-title {
  margin-left: 0;
margin-left: 0;
  color: var(--qud-color-y-dark);
color: var(--qud-color-y-dark);
  transition: color 0.5s;
transition: color 0.5s;
}
}
tr:hover > .qud-collapser > .qud-collapser-title {
tr:hover > .qud-collapser > .qud-collapser-title {
  color: var(--qud-color-y);
color: var(--qud-color-y);
}
}
/*  
/*  
Line 2,536: Line 2,579:
.qud-attributes-wrapper:hover,
.qud-attributes-wrapper:hover,
.qud-resistances:hover {
.qud-resistances:hover {
  cursor: default;
cursor: default;
}
}
.qud-core-stats-wrapper {
.qud-core-stats-wrapper {
  display: flex;
display: flex;
  padding: 0 1.2em 18px 1.2em;
padding: 0 1.2em 18px 1.2em;
  height: 1.7em;
height: 1.7em;
}
}
.qud-core-stats-entry {
.qud-core-stats-entry {
  flex: 1 0 33%;
flex: 1 0 33%;
  text-align: center;
text-align: center;
  white-space: nowrap;
white-space: nowrap;
  font-size: 1.7em;
font-size: 1.7em;
  font-weight: bold;
font-weight: bold;
  font-family: var(--qud-font-terminal1);
font-family: var(--qud-font-terminal1);
  margin-top: 0px;
margin-top: 0px;
  transition: font-size 0.1s, margin-top 0.1s;
transition: font-size 0.1s, margin-top 0.1s;
}
}
.qud-core-stats-entry:hover {
.qud-core-stats-entry:hover {
  font-size: calc(1.7em + 4px);
font-size: calc(1.7em + 4px);
  margin-top: -2px;
margin-top: -2px;
}
}
.qud-stat-icon{
.qud-stat-icon {
  display: inline-block;
display: inline-block;
  padding-right: 0.2em;
padding-right: 0.2em;
  line-height: 1.2em;
line-height: 1.2em;
  font-size: 1.3em;
font-size: 1.3em;
}
}
.qud-stat-icon img {
.qud-stat-icon img {
  height: .7em;
height: 0.7em;
  width: .57em;
width: 0.57em;
}
}
.qud-stat-value {
.qud-stat-value {
  display: inline-block;
display: inline-block;
  color: var(--qud-color-y);
color: var(--qud-color-y);
}
}
/*  
/*  
Line 2,576: Line 2,619:
  */
  */
.qud-character-level-wrapper {
.qud-character-level-wrapper {
  color: var(--qud-color-y-dark);
color: var(--qud-color-y-dark);
  padding: 0em 2em 10px 2em;
padding: 0em 2em 10px 2em;
  font-family: var(--qud-font-terminal1);
font-family: var(--qud-font-terminal1);
  font-size: 1.3em;
font-size: 1.3em;
  font-weight: bold;
font-weight: bold;
  text-align: center;
text-align: center;
}
}
.qud-character-level-text,
.qud-character-level-text,
.qud-character-level-value {
.qud-character-level-value {
  display: inline-block;
display: inline-block;
  padding-right: 0.45em;
padding-right: 0.45em;
}
}
.qud-character-level-value {
.qud-character-level-value {
  color: var(--qud-color-c);
color: var(--qud-color-c);
}
}
/*  
/*  
Line 2,597: Line 2,640:
.qud-attributes-wrapper,
.qud-attributes-wrapper,
.qud-attributes-header-row {
.qud-attributes-header-row {
  color: var(--qud-color-y-dark);
color: var(--qud-color-y-dark);
  padding: 0 1em 4px 1em;
padding: 0 1em 4px 1em;
}
}
.qud-attributes-row,
.qud-attributes-row,
.qud-attributes-header-row {
.qud-attributes-header-row {
  display: flex;
display: flex;
  line-height: 1.6em;
line-height: 1.6em;
  white-space: nowrap;
white-space: nowrap;
}
}
.qud-attributes-header-button {
.qud-attributes-header-button {
  flex: 1 0 50%;
flex: 1 0 50%;
  opacity: 0.5;
opacity: 0.5;
  color: var(--qud-color-c-dark);
color: var(--qud-color-c-dark);
  font-size: 1em;
font-size: 1em;
  font-weight: bold;
font-weight: bold;
  font-family: var(--qud-font-terminal1);
font-family: var(--qud-font-terminal1);
  text-align: center;
text-align: center;
  font-style: italic;
font-style: italic;
  text-decoration: underline;
text-decoration: underline;
  transition: color 0.1s, opacity 0.1s;
transition: color 0.1s, opacity 0.1s;
}
}
.qud-attributes-header-button:hover {
.qud-attributes-header-button:hover {
  opacity: 1;
opacity: 1;
  color: var(--qud-color-c);
color: var(--qud-color-c);
}
}
.qud-attributes-title {
.qud-attributes-title {
  padding: 0 0 0.2em 0;
padding: 0 0 0.2em 0;
  color: var(--qud-color-y-dark);
color: var(--qud-color-y-dark);
  font-size: 1em;
font-size: 1em;
  font-weight:bold;
font-weight: bold;
  font-family: var(--qud-font-terminal1);
font-family: var(--qud-font-terminal1);
}
}
.qud-attribute-entry {
.qud-attribute-entry {
  font-size: 1.3em;
font-size: 1.3em;
  font-weight: bold;
font-weight: bold;
  font-family: var(--qud-font-terminal1);
font-family: var(--qud-font-terminal1);
  transition: transform 0.1s;
transition: transform 0.1s;
  transform: perspective(1px); /* fixes bluriness in Chrome immediately after hover, during transition-delay */
transform: perspective(1px); /* fixes bluriness in Chrome immediately after hover, during transition-delay */
  -webkit-backface-visibility: hidden;
-webkit-backface-visibility: hidden;
  backface-visibility: hidden;
backface-visibility: hidden;
}
}
.qud-attribute-entry {
.qud-attribute-entry {
    flex: 1 0 35%;
flex: 1 0 35%;
}
}
.qud-attribute-entry:nth-child(3) {
.qud-attribute-entry:nth-child(3) {
    flex: 1 0 30%;
flex: 1 0 30%;
}
}
.qud-attribute-entry.qud-tooltip:hover {
.qud-attribute-entry.qud-tooltip:hover {
  transform: scale(1.08,1.08);
transform: scale(1.08, 1.08);
  transition-delay: 0.35s;
transition-delay: 0.35s;
}
}
.qud-attribute-entry.qud-tooltip:hover .qud-tooltip-text {
.qud-attribute-entry.qud-tooltip:hover .qud-tooltip-text {
  transition-delay: 0.35s;
transition-delay: 0.35s;
}
}
.qud-attribute-label {
.qud-attribute-label {
  display: inline-block;
display: inline-block;
  padding-right: 0.45em;
padding-right: 0.45em;
}
}
.qud-attribute-value {
.qud-attribute-value {
  display: inline-block;
display: inline-block;
}
}
.qud-roll-range, .qud-roll-average {
.qud-roll-range,
  font-style: italic;
.qud-roll-average {
  display: block;
font-style: italic;
  color: var(--qud-color-y-dark)
display: block;
color: var(--qud-color-y-dark);
}
}
.qud-roll-raw {
.qud-roll-raw {
  display: none;
display: none;
}
}
div.qud-attribute-st + div.qud-attribute-value,
div.qud-attribute-st + div.qud-attribute-value,
Line 2,672: Line 2,716:
div.qud-attribute-in + div.qud-attribute-value,
div.qud-attribute-in + div.qud-attribute-value,
div.qud-attribute-eg + div.qud-attribute-value {
div.qud-attribute-eg + div.qud-attribute-value {
  color: var(--qud-color-c)
color: var(--qud-color-c);
}
.qud-attribute-st {
color: var(--qud-color-y);
}
.qud-attribute-ag {
color: var(--qud-color-w);
}
.qud-attribute-qn {
color: var(--qud-color-y-dark);
}
.qud-attribute-to {
color: var(--qud-color-r);
}
.qud-attribute-wi {
color: var(--qud-color-g);
}
.qud-attribute-ms {
color: var(--qud-color-y-dark);
}
.qud-attribute-in {
color: var(--qud-color-b);
}
.qud-attribute-eg {
color: var(--qud-color-m);
}
.qud-attribute-ma {
color: var(--qud-color-y-dark);
}
}
.qud-attribute-st { color: var(--qud-color-y); }
.qud-attribute-ag { color: var(--qud-color-w); }
.qud-attribute-qn { color: var(--qud-color-y-dark); }
.qud-attribute-to { color: var(--qud-color-r); }
.qud-attribute-wi { color: var(--qud-color-g); }
.qud-attribute-ms { color: var(--qud-color-y-dark); }
.qud-attribute-in { color: var(--qud-color-b); }
.qud-attribute-eg { color: var(--qud-color-m); }
.qud-attribute-ma { color: var(--qud-color-y-dark); }
.qud-character-xp {
.qud-character-xp {
    text-align: center;
text-align: center;
    position: relative;
position: relative;
    height:1.8em;
height: 1.8em;
    margin-top: 0.4em;
margin-top: 0.4em;
}
}
.qud-xp-wrapper {
.qud-xp-wrapper {
    color: var(--qud-color-y-dark);
color: var(--qud-color-y-dark);
    padding: 0 1em 0 1em;
padding: 0 1em 0 1em;
    font-family: var(--qud-font-terminal1);
font-family: var(--qud-font-terminal1);
    font-size: 1.3em;
font-size: 1.3em;
    font-weight: bold;
font-weight: bold;
    text-align: center;
text-align: center;
    display: inline-block;
display: inline-block;
    font-size: 1.3em;
font-size: 1.3em;
    transition: all 0.1s;
transition: all 0.1s;
    transform: perspective(1px);
transform: perspective(1px);
    -webkit-backface-visibility: hidden;
-webkit-backface-visibility: hidden;
    backface-visibility: hidden;
backface-visibility: hidden;
}
}
.qud-xp-wrapper:hover {
.qud-xp-wrapper:hover {
    transform: scale(1.08,1.08);
transform: scale(1.08, 1.08);
    transition-delay: 0.35s;
transition-delay: 0.35s;
}
}
.qud-xp-label, .qud-xp-value {
.qud-xp-label,
    display: inline-block;
.qud-xp-value {
    padding-right: 0.45em;
display: inline-block;
padding-right: 0.45em;
}
}
.qud-xp-value {
.qud-xp-value {
    color: var(--qud-color-c);
color: var(--qud-color-c);
}
}
.qud-stat-details-entry .qud-xp-table-header {
.qud-stat-details-entry .qud-xp-table-header {
    color: var(--qud-color-k);
color: var(--qud-color-k);
    width: 72%
width: 72%;
}
}
.qud-stat-details-wrapper.xp-stat-details {
.qud-stat-details-wrapper.xp-stat-details {
    margin: 0.9em 10% 0.5em 10%;
margin: 0.9em 10% 0.5em 10%;
    width: 80%;
width: 80%;
}
}
.qud-stat-details-wrapper.xp-stat-details .qud-stat-details-entry > div {
.qud-stat-details-wrapper.xp-stat-details .qud-stat-details-entry > div {
    border-left:0;
border-left: 0;
}
}
/*  
/*  
Line 2,731: Line 2,794:
.qud-attributes #mw-customcollapsible-qud-detailed-attributes,
.qud-attributes #mw-customcollapsible-qud-detailed-attributes,
.qud-attributes #collapsible-qud-detailed-attributes {
.qud-attributes #collapsible-qud-detailed-attributes {
  width: 260px;
width: 260px;
}
}
@media (max-width: 511px)
@media (max-width: 511px) {
{
.qud-attributes #mw-customcollapsible-qud-detailed-attributes,
  .qud-attributes #mw-customcollapsible-qud-detailed-attributes,
.qud-attributes #collapsible-qud-detailed-attributes {
  .qud-attributes #collapsible-qud-detailed-attributes {
width: auto;
    width: auto;
}
  }
}
}
.qud-stat-table-header:first-child {
.qud-stat-table-header:first-child {
  width: 34%;
width: 34%;
}
}
.qud-stat-table-header:nth-child(2) {
.qud-stat-table-header:nth-child(2) {
  width: 17%;
width: 17%;
}
}
.qud-stat-table-header:nth-child(3) {
.qud-stat-table-header:nth-child(3) {
  width: 14%;
width: 14%;
}
}
.qud-stat-details-wrapper {
.qud-stat-details-wrapper {
  color: var(--qud-color-y-dark);
color: var(--qud-color-y-dark);
  margin: 0.5em 0;
margin: 0.5em 0;
  display: table;
display: table;
  border-collapse: collapse;
border-collapse: collapse;
  width: 100%;
width: 100%;
  table-layout: fixed;
table-layout: fixed;
}
}
.qud-stat-details-entry {
.qud-stat-details-entry {
  display: table-row;
display: table-row;
  font-size: 0.9em;
font-size: 0.9em;
  font-weight: bold;
font-weight: bold;
  font-family: var(--qud-font-terminal1);
font-family: var(--qud-font-terminal1);
}
}
.qud-stat-details-entry > div {
.qud-stat-details-entry > div {
  display: table-cell;
display: table-cell;
  text-align: center;
text-align: center;
  padding: 0 0.2em;
padding: 0 0.2em;
  color: var(--qud-color-y-dark);
color: var(--qud-color-y-dark);
  border-left: var(--infobox-border);
border-left: var(--infobox-border);
}
}
.qud-stat-details-entry > div:first-child {
.qud-stat-details-entry > div:first-child {
  border-left: none;
border-left: none;
  text-align: left;
text-align: left;
  padding: 0 0.2em 0 0;
padding: 0 0.2em 0 0;
  overflow: hidden;
overflow: hidden;
  text-overflow: ellipsis;
text-overflow: ellipsis;
  word-wrap: normal;
word-wrap: normal;
}
}
.qud-stat-details-entry > div:nth-child(4) {
.qud-stat-details-entry > div:nth-child(4) {
  padding: 0 0 0 0.2em;
padding: 0 0 0 0.2em;
  word-wrap: break-word;
word-wrap: break-word;
}
}
.qud-stat-details-entry > div.qud-stat-table-header {
.qud-stat-details-entry > div.qud-stat-table-header {
  color: var(--qud-color-k);
color: var(--qud-color-k);
}
}
.qud-stat-name {
.qud-stat-name {
  color: var(--qud-color-y);
color: var(--qud-color-y);
}
}
/*  
/*  
Line 2,793: Line 2,855:
  */
  */
.qud-resistances-wrapper {
.qud-resistances-wrapper {
  color: var(--qud-color-y-dark);
color: var(--qud-color-y-dark);
  padding: 0 1.3em 1.8em 1.6em;
padding: 0 1.3em 1.8em 1.6em;
  display: flex;
display: flex;
  flex-wrap: wrap;
flex-wrap: wrap;
  border-bottom: var(--infobox-border);
border-bottom: var(--infobox-border);
  margin-bottom: 12px;
margin-bottom: 12px;
}
}
.qud-resistance-row {
.qud-resistance-row {
  flex: 1 0 50%;
flex: 1 0 50%;
  font-size: 1em;
font-size: 1em;
  font-weight: bold;
font-weight: bold;
  font-family: var(--qud-font-terminal1);
font-family: var(--qud-font-terminal1);
}
}
.qud-resistance-prefix,
.qud-resistance-prefix,
.qud-resistance-text,
.qud-resistance-text,
.qud-resistance-value {
.qud-resistance-value {
  display: inline-block;
display: inline-block;
  padding-right: 0.45em;
padding-right: 0.45em;
}
}
.qud-resistance-value.positive-value {
.qud-resistance-value.positive-value {
  color: var(--qud-color-g);
color: var(--qud-color-g);
}
}
.qud-resistance-value.negative-value {
.qud-resistance-value.negative-value {
  color: var(--qud-color-r);
color: var(--qud-color-r);
}
}
/*  
/*  
Line 2,823: Line 2,885:
  */
  */
.qud-inv-content-itemlist {
.qud-inv-content-itemlist {
  font-size: 1em;
font-size: 1em;
  font-family: var(--qud-font-infobox-content);
font-family: var(--qud-font-infobox-content);
  padding: 2px 3px 2px 5px;
padding: 2px 3px 2px 5px;
  margin-left: -7px;
margin-left: -7px;
  margin-right: -7px;
margin-right: -7px;
  display: table;
display: table;
  table-layout: fixed;
table-layout: fixed;
  width: auto;
width: auto;
}
}
.qud-inv-content-itemlist > .qud-inv-group {
.qud-inv-content-itemlist > .qud-inv-group {
  display: table;
display: table;
  font-weight: bold;
font-weight: bold;
  border-collapse: collapse;
border-collapse: collapse;
  table-layout: fixed;
table-layout: fixed;
  width: 100%;
width: 100%;
}
}
.qud-equipped {
.qud-equipped {
  border-bottom: var(--infobox-border);
border-bottom: var(--infobox-border);
  padding-bottom: 6px;
padding-bottom: 6px;
}
}
.qud-carried {
.qud-carried {
  border-top: none;
border-top: none;
  padding-bottom: 6px;
padding-bottom: 6px;
}
}
.qud-equipped-title {
.qud-equipped-title {
  color: var(--infobox-details-background);
color: var(--infobox-details-background);
}
}
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item {
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item {
  display: table-row;
display: table-row;
  white-space: nowrap;
white-space: nowrap;
}
}
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item:hover,
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item:hover,
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item:focus {
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item:focus {
  background: var(--qud-bg-color-darker);
background: var(--qud-bg-color-darker);
}
}
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-inv-favilink-wrapper,
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-inv-favilink-wrapper,
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-item-qty {
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-item-qty {
  display: table-cell;
display: table-cell;
  padding-bottom: 0;
padding-bottom: 0;
  vertical-align: middle;
vertical-align: middle;
}
}
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-inv-favilink-wrapper {
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-inv-favilink-wrapper {
  width: 85%;
width: 85%;
  padding-left: 7px;
padding-left: 7px;
  overflow: hidden;
overflow: hidden;
  text-overflow: ellipsis;
text-overflow: ellipsis;
  white-space: nowrap;
white-space: nowrap;
}
}
@media all and (min-width: 512px) {
@media all and (min-width: 512px) {
  .qud-inv-content-itemlist {
.qud-inv-content-itemlist {
    width: 268px;
width: 268px;
  }
}
  .qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-inv-favilink-wrapper {
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-inv-favilink-wrapper {
    width: 79%;
width: 79%;
  }
}
}
}


Line 2,883: Line 2,945:
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-inv-favilink-wrapper > .qud-image:hover,
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-inv-favilink-wrapper > .qud-image:hover,
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-inv-favilink-wrapper > .qud-image:focus {
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-inv-favilink-wrapper > .qud-image:focus {
  background: transparent;
background: transparent;
}
}
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-inv-favilink-wrapper > .qud-image {
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-inv-favilink-wrapper > .qud-image {
  display: inline;
display: inline;
}
}
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-inv-favilink-wrapper > .qud-image > .qud-image-link {
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-inv-favilink-wrapper > .qud-image > .qud-image-link {
  height: 24px;
height: 24px;
}
}
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-inv-favilink-wrapper > .qud-image > .qud-image-link,
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-inv-favilink-wrapper > .qud-image > .qud-image-link,
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-inv-favilink-wrapper > .qud-image > .qud-image-link > a {
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-inv-favilink-wrapper > .qud-image > .qud-image-link > a {
  display: inline;
display: inline;
  padding-top: 0.4em;
padding-top: 0.4em;
}
}
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-inv-favilink-wrapper > .qud-image > .qud-image-link > a {
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-inv-favilink-wrapper > .qud-image > .qud-image-link > a {
  padding-bottom: 0.2em;
padding-bottom: 0.2em;
  margin-bottom: -0.3em;
margin-bottom: -0.3em;
}
}


/* INVENTORY: INLINE WEAPON STATS */
/* INVENTORY: INLINE WEAPON STATS */
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-inv-favilink-wrapper > .qud-inline-weap-stats {
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-inv-favilink-wrapper > .qud-inline-weap-stats {
  font-weight: normal;
font-weight: normal;
  margin-left: 0.5em;
margin-left: 0.5em;
  font-size: 0.9em;
font-size: 0.9em;
  color: var(--qud-color-y-dark);
color: var(--qud-color-y-dark);
  opacity: 0.5;
opacity: 0.5;
  transition: opacity 0.4s;
transition: opacity 0.4s;
}
}
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-inv-favilink-wrapper > .qud-inline-weap-stats > .qud-stat-icon {
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-inv-favilink-wrapper > .qud-inline-weap-stats > .qud-stat-icon {
  padding-right: 1px;
padding-right: 1px;
  font-size: 1.1em;
font-size: 1.1em;
}
}
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-inv-favilink-wrapper > .qud-inline-weap-stats > .qud-inline-pv > span {
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-inv-favilink-wrapper > .qud-inline-weap-stats > .qud-inline-pv > span {
  font-weight: bold;
font-weight: bold;
}
}
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item:hover > .qud-inv-favilink-wrapper > .qud-inline-weap-stats > .qud-inline-pv > span,
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item:hover > .qud-inv-favilink-wrapper > .qud-inline-weap-stats > .qud-inline-pv > span,
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item:focus > .qud-inv-favilink-wrapper > .qud-inline-weap-stats > .qud-inline-pv > span {
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item:focus > .qud-inv-favilink-wrapper > .qud-inline-weap-stats > .qud-inline-pv > span {
  color: #297872 !important;
color: #297872 !important;
  transition: color 0.4s;
transition: color 0.4s;
}
}
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item:hover > .qud-inv-favilink-wrapper > .qud-inline-weap-stats,
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item:hover > .qud-inv-favilink-wrapper > .qud-inline-weap-stats,
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item:focus > .qud-inv-favilink-wrapper > .qud-inline-weap-stats {
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item:focus > .qud-inv-favilink-wrapper > .qud-inline-weap-stats {
  opacity: 1;
opacity: 1;
}
}
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item:hover > .qud-inv-favilink-wrapper > .qud-inline-weap-stats .qud-inline-pv > span,
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item:hover > .qud-inv-favilink-wrapper > .qud-inline-weap-stats .qud-inline-pv > span,
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item:focus > .qud-inv-favilink-wrapper > .qud-inline-weap-stats .qud-inline-pv > span {
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item:focus > .qud-inv-favilink-wrapper > .qud-inline-weap-stats .qud-inline-pv > span {
  color: #155352 !important;
color: #155352 !important;
}
}


/* INVENTORY: ITEM QUANTITY & CHANCE */
/* INVENTORY: ITEM QUANTITY & CHANCE */
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-item-qty {
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-item-qty {
  padding-left: 6px;
padding-left: 6px;
  padding-right: 3px;
padding-right: 3px;
  font-weight: bold;
font-weight: bold;
  font-size: 0.9em;
font-size: 0.9em;
  text-align: right;
text-align: right;
  direction: rtl;
direction: rtl;
  color: var(--qud-color-y-dark);
color: var(--qud-color-y-dark);
  opacity: 0.5;
opacity: 0.5;
  transition: opacity 0.4s;
transition: opacity 0.4s;
}
}
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-item-qty > .qud-item-chance {
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-item-qty > .qud-item-chance {
  color: var(--infobox-details-background);
color: var(--infobox-details-background);
  font-weight: normal;
font-weight: normal;
  display: inline-block;
display: inline-block;
  font-size: 0.95em;
font-size: 0.95em;
  padding: 0 3px;
padding: 0 3px;
  color: var(--qud-color-y-dark);
color: var(--qud-color-y-dark);
}
}
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-item-qty > .qud-item-chance.chance-100 {
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item > .qud-item-qty > .qud-item-chance.chance-100 {
  display: none;
display: none;
}
}
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item:hover > .qud-item-qty,
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item:hover > .qud-item-qty,
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item:focus > .qud-item-qty {
.qud-inv-content-itemlist > .qud-inv-group > .qud-inventory-item:focus > .qud-item-qty {
  opacity: 1;
opacity: 1;
}
}
/*  
/*  
Line 2,965: Line 3,026:
.qud-skills-wrapper,
.qud-skills-wrapper,
.qud-mutations-wrapper {
.qud-mutations-wrapper {
  display: flex;
display: flex;
  flex-direction: row;
flex-direction: row;
  flex-wrap: wrap;
flex-wrap: wrap;
  font-size: 1.1em;
font-size: 1.1em;
  font-weight: bold;
font-weight: bold;
  font-family: var(--qud-font-infobox-content);
font-family: var(--qud-font-infobox-content);
  max-width: 260px;
max-width: 260px;
  padding: 0.4em 0;
padding: 0.4em 0;
}
}
@media (max-width: 511px)
@media (max-width: 511px) {
{
.qud-skills-wrapper,
  .qud-skills-wrapper,
.qud-mutations-wrapper {
  .qud-mutations-wrapper {
max-width: none;
    max-width: none;
}
  }
}
}
.qud-skill-entry,
.qud-skill-entry,
.qud-mutation-entry {  
.qud-mutation-entry {
  flex: 1 0 100%;
flex: 1 0 100%;
  transition: .8s opacity;
transition: 0.8s opacity;
  line-height: 1.2em;
line-height: 1.2em;
  padding: 0.1em 0 0.4em 0.5em;
padding: 0.1em 0 0.4em 0.5em;
  overflow: hidden;
overflow: hidden;
  box-sizing: border-box;
box-sizing: border-box;
  text-overflow: clip;
text-overflow: clip;
  justify-content: center;
justify-content: center;
  align-items: center;
align-items: center;
  border-radius: 2px;
border-radius: 2px;
  transition: background 0.15s;
transition: background 0.15s;
}
}
.qud-skill-entry:hover,
.qud-skill-entry:hover,
.qud-mutation-entry:hover {  
.qud-mutation-entry:hover {
  background: var(--qud-bg-color-dark);
background: var(--qud-bg-color-dark);
}
}
.qud-skill-entry a,
.qud-skill-entry a,
.qud-mutation-entry a {
.qud-mutation-entry a {
  display: block; /* make entire row clickable */
display: block; /* make entire row clickable */
}
}
.qud-mutation-entry {
.qud-mutation-entry {
  display: flex;
display: flex;
  justify-content: left;
justify-content: left;
}
}
.qud-mutation-entry a {
.qud-mutation-entry a {
  width: 100%;
width: 100%;
}
}
.qud-mutation-entry:hover a b {
.qud-mutation-entry:hover a b {
  display: inline-block;
display: inline-block;
  text-decoration: none;
text-decoration: none;
}
}


/* plainlist */
/* plainlist */
.plainlist ul {
.plainlist ul {
    line-height: inherit;
line-height: inherit;
    list-style: none none;
list-style: none none;
    margin: 0;
margin: 0;
}
}
.plainlist ul li {
.plainlist ul li {
    margin-bottom: 0;
margin-bottom: 0;
}
}
/*  
/*  
Line 3,029: Line 3,089:
  */
  */
.qud-item-stats-entry > .qud-tooltip-text {
.qud-item-stats-entry > .qud-tooltip-text {
  transition: all 0.1s;
transition: all 0.1s;
  color: var(--qud-color-y-dark);
color: var(--qud-color-y-dark);
}
}
.qud-item-stats-entry:hover > .qud-tooltip-text {
.qud-item-stats-entry:hover > .qud-tooltip-text {
  transform: scale(0.8695652, 0.8695652) translateY(3px);
transform: scale(0.8695652, 0.8695652) translateY(3px);
}
}
.qud-item-stats {
.qud-item-stats {
  display: flex;
display: flex;
  flex-wrap: wrap;
flex-wrap: wrap;
  align-items: center;
align-items: center;
  color: var(--qud-color-y);
color: var(--qud-color-y);
  padding-bottom: 8px;
padding-bottom: 8px;
  border-bottom: var(--infobox-border);
border-bottom: var(--infobox-border);
  margin-bottom: 12px;
margin-bottom: 12px;
}
}
.qud-item-stats > .qud-item-stats-entry-wrap {
.qud-item-stats > .qud-item-stats-entry-wrap {
  flex: 1 0 50%;
flex: 1 0 50%;
  text-align: center;
text-align: center;
  font-size: 1.7em;
font-size: 1.7em;
  font-family: var(--qud-font-terminal1);
font-family: var(--qud-font-terminal1);
  white-space: nowrap;
white-space: nowrap;
  font-weight: bold;
font-weight: bold;
  margin: 0.1em 0;
margin: 0.1em 0;
}
}
.qud-item-stats-entry {
.qud-item-stats-entry {
  display: inline-block;
display: inline-block;
  transition: all 0.1s;
transition: all 0.1s;
}
}
.qud-item-stats-entry:hover {
.qud-item-stats-entry:hover {
  transform: scale(1.15, 1.15);
transform: scale(1.15, 1.15);
}
}
.qud-item-stats-entry > div {
.qud-item-stats-entry > div {
  display: inline-block;
display: inline-block;
  padding: 0 0.1em;
padding: 0 0.1em;
}
}
.qud-item-stat-value .symbol-vibro {
.qud-item-stat-value .symbol-vibro {
    font-size: 1.35em;
font-size: 1.35em;
    line-height: 1em;
line-height: 1em;
    font-weight: normal;
font-weight: normal;
}
}
.qud-item-stat-symbol.symbol-lb {
.qud-item-stat-symbol.symbol-lb {
  margin-right: -0.3em; /* visual tweak to make this look more "centered" */
margin-right: -0.3em; /* visual tweak to make this look more "centered" */
  padding-left: 0.3em;
padding-left: 0.3em;
  opacity: 0.9;
opacity: 0.9;
}
}
.qud-item-stat-symbol.symbol-dram {
.qud-item-stat-symbol.symbol-dram {
  color: var(--qud-color-b);
color: var(--qud-color-b);
  padding-right: 0;
padding-right: 0;
}
}
.qud-item-stat-symbol.symbol-dram-trade {
.qud-item-stat-symbol.symbol-dram-trade {
  color: var(--qud-color-w);
color: var(--qud-color-w);
  padding-right: 0;
padding-right: 0;
}
}
.symbol-dram + .qud-item-stat-value, .symbol-dram-trade + .qud-item-stat-value {
.symbol-dram + .qud-item-stat-value,
  color: var(--qud-color-c);
.symbol-dram-trade + .qud-item-stat-value {
  padding-left: 0;
color: var(--qud-color-c);
padding-left: 0;
}
}
.qud-item-stat-symbol > .qud-stat-icon {
.qud-item-stat-symbol > .qud-stat-icon {
  padding-right: 0px; /* normalize padding to match non-"qud-stat-icon" symbols */
padding-right: 0px; /* normalize padding to match non-"qud-stat-icon" symbols */
}
}
.qud-max-pv {
.qud-max-pv {
  color: var(--qud-color-k);
color: var(--qud-color-k);
}
}


Line 3,101: Line 3,162:
.world-map-tier-overlay .numeric-tier-rows,
.world-map-tier-overlay .numeric-tier-rows,
.world-map-tier-overlay img {
.world-map-tier-overlay img {
    width: 72vw;
width: 72vw;
    height: 33.75vw; /* width / 2.133333333 */
height: 33.75vw; /* width / 2.133333333 */
}
}


.world-map-tier-overlay {
.world-map-tier-overlay {
    position: relative;
position: relative;
}
}
.world-map-tier-overlay .numeric-tier-rows,
.world-map-tier-overlay .numeric-tier-rows,
.world-map-tier-overlay a,
.world-map-tier-overlay a,
.world-map-tier-overlay:after {
.world-map-tier-overlay:after {
    position: absolute;
position: absolute;
    top: 0;
top: 0;
    right: 0;
right: 0;
    bottom: 0;
bottom: 0;
    left: 0;
left: 0;
}
}
.world-map-tier-overlay:after {
.world-map-tier-overlay:after {
    background: rgba(255, 255, 255, 0.14);
background: rgba(255, 255, 255, 0.14);
    z-index: 1;
z-index: 1;
    content: '';
content: "";
}
}
.world-map-tier-overlay .numeric-tier-rows {
.world-map-tier-overlay .numeric-tier-rows {
    display: grid;
display: grid;
    grid-auto-rows: 1fr;
grid-auto-rows: 1fr;
    left: 0.178vw;
left: 0.178vw;
    top: 0.178vw;
top: 0.178vw;
    line-height: 1;
line-height: 1;
    letter-spacing: 0.178vw;
letter-spacing: 0.178vw;
    font-family: 'Source Code Pro';
font-family: "Source Code Pro";
    font-weight: 700;
font-weight: 700;
    font-size: 1.2vw;
font-size: 1.2vw;
    color: rgba(0, 0, 0, 0.9);
color: rgba(0, 0, 0, 0.9);
    z-index: 2;
z-index: 2;
}
}
@media only screen and (max-width: 720px) {
@media only screen and (max-width: 720px) {
    .world-map-tier-overlay {
.world-map-tier-overlay {
        margin: auto;
margin: auto;
    }
}
    .world-map-tier-overlay,
.world-map-tier-overlay,
    .world-map-tier-overlay:after,
.world-map-tier-overlay:after,
    .world-map-tier-overlay .numeric-tier-rows,
.world-map-tier-overlay .numeric-tier-rows,
    .world-map-tier-overlay img {
.world-map-tier-overlay img {
        width: 90vw;
width: 90vw;
        height: 42.1875vw; /* width / 2.133333333 */
height: 42.1875vw; /* width / 2.133333333 */
    }
}
    .world-map-tier-overlay .numeric-tier-rows {
.world-map-tier-overlay .numeric-tier-rows {
        letter-spacing: 0.406vw;
letter-spacing: 0.406vw;
        top: 0.3vw;
top: 0.3vw;
    }
}
}
}
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
/* This governs the sections on the Community portal */
/* This governs the sections on the Community portal */
.cpbox {
.cpbox {
    display: flex;
display: flex;
    flex-direction: row-reverse;
flex-direction: row-reverse;
    flex-wrap: wrap;
flex-wrap: wrap;
}
}


.cpbox #admins {
.cpbox #admins {
    box-sizing: border-box;
box-sizing: border-box;
    width: calc(33% - 10px);
width: calc(33% - 10px);
    margin: 5px;
margin: 5px;
    flex-grow: 1;
flex-grow: 1;
    min-width: 300px;
min-width: 300px;
}
}


.cpbox #help {
.cpbox #help {
    box-sizing: border-box;
box-sizing: border-box;
    width: calc(67% - 10px);
width: calc(67% - 10px);
    margin: 5px;
margin: 5px;
    flex-grow: 1;
flex-grow: 1;
}
}


Line 3,177: Line 3,238:
/* If modifying these styles, be sure to update the mobile skin! */
/* If modifying these styles, be sure to update the mobile skin! */
.doc {
.doc {
    margin: 0em auto 1em;
margin: 0em auto 1em;
    background-color: rgba(0, 0, 0, 0.1);
background-color: rgba(0, 0, 0, 0.1);
    border: 2px solid #BDCAC3;
border: 2px solid #bdcac3;
    border-radius: 1em;
border-radius: 1em;
    padding: 1em;
padding: 1em;
}
}


.doc-header {
.doc-header {
    padding-bottom: 3px;
padding-bottom: 3px;
    border-bottom: 1px solid #BDCAC3;
border-bottom: 1px solid #bdcac3;
    margin-bottom: 1ex;
margin-bottom: 1ex;
}
}


.doc-footer {
.doc-footer {
    margin: 0;
margin: 0;
    background-color: rgba(0, 0, 0, 0.1);
background-color: rgba(0, 0, 0, 0.1);
    border: 2px solid #BDCAC3;
border: 2px solid #bdcac3;
    border-radius: 1em;
border-radius: 1em;
    padding: 1em;
padding: 1em;
}
}


Line 3,201: Line 3,262:
/* (See .mobileleft, .mobilecenter, .mobileright in MediaWiki:Mobile.css for the mobile equivalents */
/* (See .mobileleft, .mobilecenter, .mobileright in MediaWiki:Mobile.css for the mobile equivalents */
.desktopleft {
.desktopleft {
    text-align: left;
text-align: left;
}
}


.desktopcenter {
.desktopcenter {
    text-align: center;
text-align: center;
}
}


.desktopright {
.desktopright {
    text-align: right;
text-align: right;
}
}


/* Front page structure */
/* Front page structure */
.fpbox {
.fpbox {
    margin: 5px;
margin: 5px;
    padding: 5px;
padding: 5px;
    overflow: auto;
overflow: auto;
    width: calc(100% - 2px);
width: calc(100% - 2px);
}
}


.fpbox.plain {
.fpbox.plain {
    background: transparent;
background: transparent;
    border: none;
border: none;
    box-shadow: none;
box-shadow: none;
}
}


Line 3,229: Line 3,290:
.fpbox .mainheading,
.fpbox .mainheading,
.fpbox .welcome {
.fpbox .welcome {
    margin: 0 0 10px;
margin: 0 0 10px;
    padding: 0 0 5px;
padding: 0 0 5px;
    overflow: auto;
overflow: auto;
}
}


.fpbox .mainheading,
.fpbox .mainheading,
.fpbox .welcome {
.fpbox .welcome {
    font-size: 150%;
font-size: 150%;
    font-weight: bold;
font-weight: bold;
}
}


.fpbox .heading {
.fpbox .heading {
    text-align: center;
text-align: center;
    font-size: 132%;
font-size: 132%;
}
}


.linkslabel {
.linkslabel {
    margin: 15px 5px 5px;
margin: 15px 5px 5px;
    padding: 0 0 5px;
padding: 0 0 5px;
}
}


/* Template:FP links styles */
/* Template:FP links styles */
.fplinks {
.fplinks {
    display: flex;
display: flex;
    flex-wrap: wrap;
flex-wrap: wrap;
    justify-content: space-evenly;
justify-content: space-evenly;
    align-items: stretch;
align-items: stretch;
    text-align: center;
text-align: center;
}
}


.fplink-outer {
.fplink-outer {
    padding: 5px;
padding: 5px;
    flex-basis: calc(25% - 10px);
flex-basis: calc(25% - 10px);
    width: calc(25% - 15px);
width: calc(25% - 15px);
    min-width: 115px;
min-width: 115px;
    display: inline-block;
display: inline-block;
    vertical-align: middle;
vertical-align: middle;
}
}


.fplink-wide {
.fplink-wide {
    flex-basis: calc(33% - 10px);
flex-basis: calc(33% - 10px);
    width: calc(33% - 15px);
width: calc(33% - 15px);
}
}


.fplink-fullwidth {
.fplink-fullwidth {
    flex-basis: 100%;
flex-basis: 100%;
    width: calc(100% - 15px);
width: calc(100% - 15px);
    font-weight: bold;
font-weight: bold;
}
}


.fplink {
.fplink {
    padding: 0.5em;
padding: 0.5em;
    box-sizing: border-box;
box-sizing: border-box;
    width: 100%;
width: 100%;
    height: 100%;
height: 100%;
    display: table;
display: table;
}
}


.fplink-plain {
.fplink-plain {
    background: transparent;
background: transparent;
    border-radius: 0;
border-radius: 0;
    border: 0;
border: 0;
    box-shadow: none;
box-shadow: none;
}
}


.fplink-inner {
.fplink-inner {
    display: table-row;
display: table-row;
}
}


.fplink a {
.fplink a {
    display: table-cell;
display: table-cell;
    vertical-align: middle;
vertical-align: middle;
}
}


.fplink img {
.fplink img {
    max-width: 150px;
max-width: 150px;
    width: 100%;
width: 100%;
    height: auto;
height: auto;
}
}
/* Auto-resize front page video to fit smaller columns */
/* Auto-resize front page video to fit smaller columns */
.fpbox .embedvideowrap {
.fpbox .embedvideowrap {
    width: 100%!important;
width: 100% !important;
    max-width: 480px;
max-width: 480px;
    margin: 0 auto;
margin: 0 auto;
}
}


.fpbox .embedvideowrap iframe {
.fpbox .embedvideowrap iframe {
    width: 100%!important;
width: 100% !important;
}
}


Line 3,322: Line 3,383:
.fp-container main .columns .leftcol,
.fp-container main .columns .leftcol,
.fp-container .columns .rightcol {
.fp-container .columns .rightcol {
    width: 100%;
width: 100%;
    margin: 0;
margin: 0;
    padding: 0;
padding: 0;
}
}


@media (min-width: 990px) {
@media (min-width: 990px) {
    .fp-container .columns .leftcol {
.fp-container .columns .leftcol {
        float: left;
float: left;
        width: 50%;
width: 50%;
    }
}


    .fp-container .columns .rightcol {
.fp-container .columns .rightcol {
        float: right;
float: right;
        width: 50%;
width: 50%;
    }
}
}
}


.fp-section {
.fp-section {
    display: flex;
display: flex;
    flex-wrap: wrap;
flex-wrap: wrap;
}
}


/* ***************************************************** */
/* ***************************************************** */
/* This section affects the main page layout             */
/* This section affects the main page layout */
/*                                                       */
/*   */
/* Both 3 and 2 column layouts are here. Managers should */
/* Both 3 and 2 column layouts are here. Managers should */
/* remove whichever of the two they are not using, as   */
/* remove whichever of the two they are not using, as */
/* well as this comment.                                 */
/* well as this comment. */
/* ***************************************************** */
/* ***************************************************** */


/* This CSS governs the responsive 3 column main page layout */
/* This CSS governs the responsive 3 column main page layout */
#fptweets {
#fptweets {
  min-height:calc(325px + 2.3em);
min-height: calc(325px + 2.3em);
}
}


#fp-3column.fp-container {
#fp-3column.fp-container {
    display: grid;
display: grid;
    grid-template-areas: "a" "b" "c" "d";
grid-template-areas: "a" "b" "c" "d";
    grid-template-columns: 100%;
grid-template-columns: 100%;
}
}
@media screen and (min-width:990px) {
@media screen and (min-width: 990px) {
    #fp-3column.fp-container {
#fp-3column.fp-container {
        grid-template-areas: "a b" "c b" "c d";
grid-template-areas: "a b" "c b" "c d";
        grid-template-columns: 50% 50%;
grid-template-columns: 50% 50%;
    }
}
}
}
@media screen and (min-width:1350px) {
@media screen and (min-width: 1350px) {
    #fp-3column.fp-container {
#fp-3column.fp-container {
        grid-template-areas: "a b c" "d b c";
grid-template-areas: "a b c" "d b c";
        grid-template-columns: 33.3% 33.3% 33.3%;
grid-template-columns: 33.3% 33.3% 33.3%;
    }
}
}
}


#fp-1 {
#fp-1 {
    grid-area: a;
grid-area: a;
}
}


#fp-2 {
#fp-2 {
    grid-area: b;
grid-area: b;
}
}


#fp-3 {
#fp-3 {
    grid-area: c;
grid-area: c;
}
}


#fp-4 {
#fp-4 {
    grid-area: d;
grid-area: d;
}
}


Line 3,395: Line 3,456:
/* this CSS governs the responsive 2 column main page layout */
/* this CSS governs the responsive 2 column main page layout */
#fp-2column.fp-container {
#fp-2column.fp-container {
    display: grid;
display: grid;
    grid-template-areas: "a" "b" "c";
grid-template-areas: "a" "b" "c";
    grid-template-columns: 100%;
grid-template-columns: 100%;
}
}
@media screen and (min-width:990px) {
@media screen and (min-width: 990px) {
    #fp-2column.fp-container {
#fp-2column.fp-container {
        grid-template-areas: "a b" "c c";
grid-template-areas: "a b" "c c";
        grid-template-columns: 50% 50%;
grid-template-columns: 50% 50%;
    }
}
}
}
@media screen and (min-width:1350px) {
@media screen and (min-width: 1350px) {
    #fp-2column.fp-container {
#fp-2column.fp-container {
        grid-template-areas: "a b" "c b";
grid-template-areas: "a b" "c b";
        grid-template-columns: auto 520px;
grid-template-columns: auto 520px;
    }
}
}
}


#fp-top {
#fp-top {
    grid-area: a;
grid-area: a;
}
}


#fp-flex {
#fp-flex {
    grid-area: b;
grid-area: b;
}
}


#fp-bottom {
#fp-bottom {
    grid-area: c;
grid-area: c;
}
}