MediaWiki:Common.css: Difference between revisions

From Roat Pkz
Jump to navigation Jump to search
No edit summary
(Replaced content with "→‎General body styles: body { background-color: #f9f9f9; →‎Light grey background: color: #333333; →‎Dark grey text: } →‎Content area styles: #content { background-color: #ffffff; →‎White background: border: 1px solid #cccccc; →‎Light grey border: padding: 20px; →‎Spacing inside the content area: } →‎Header styles: #firstHeading { color: #006cb0; →‎Custom color for the first heading: margin-bottom: 10px; /* Spac...")
Tag: Replaced
Line 1: Line 1:
/* <pre> */
/* General body styles */
:root {
body {
     --fact-text-color: #15f;
     background-color: #f9f9f9; /* Light grey background */
    --production-selected-background: #c3e8a3;
     color: #333333; /* Dark grey text */
    --production-selected-color: #000;
    --wikipedia-border: #e0e0e0;
    --wikipedia-background: #f8f8f8;
     --keypress-background: #eee;
    --keypress-border: #ccc;
    --keypress-color: #333;
    --tbz-unlocked-background: repeating-linear-gradient(-45deg, #bfffbd 0 20px, #4cf172 20px 30px);
    --tbz-unlocked-border-color: #012100;
    --tbz-locked-background-color: #ffc3c3;
    --tbz-locked-border-color: #df9090;
    --tbz-partial-unlock-background: #dae8d2;
    --tbz-partial-unlock-border-color: #aeaeae;
}
}


.archivelist {
/* Content area styles */
     background-color: var(--body-light);
#content {
     border: solid 1px var(--body-border);
     background-color: #ffffff; /* White background */
    box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0, 0, 0, 0.1);
     border: 1px solid #cccccc; /* Light grey border */
    float: right;
     padding: 20px; /* Spacing inside the content area */
    margin: 5px;
     padding: 5px;
    text-align: center;
    width: 120px;
}
}


.collapsed-sec {
/* Header styles */
     font-family: 'PT Serif', 'Palatino', 'Georgia', serif;
#firstHeading {
     font-weight: bold;
     color: #006cb0; /* Custom color for the first heading */
    text-shadow: 1px 1px #fff;
     margin-bottom: 10px; /* Space below the heading */
}
}


.combat-styles-icons a {
/* Link styles */
     display: inline-block;
a {
    text-align: center;
     color: #0645ad; /* Blue links */
    min-width: 26px;
}
}


.combat-styles-header a {
a:visited {
     color: var(--text-color);
     color: #0b0080; /* Darker blue for visited links */
}
}


.fact-text {
/* Table styles */
    color: var(--fact-text-color);
table.wikitable {
    font-style: italic;
     border-collapse: collapse; /* Collapse borders between table cells */
    cursor: help;
     border-bottom: dotted 1px;
}
}


.production-selected {
table.wikitable, table.wikitable th, table.wikitable td {
     background: var(--production-selected-background);
     border: 1px solid #aaaaaa; /* Light grey borders */
    color: var(--production-selected-color);
}
}


.relative-location {
table.wikitable th {
     background: var(--body-light);
     background-color: #f2f2f2; /* Light grey background for table headers */
    border: 1px solid var(--body-border);
     text-align: left; /* Align text to the left in headers */
    border-spacing: 0;
    box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0, 0, 0, 0.1);
    margin: 5px;
     text-align: center;
}
}


.relative-location-txt {
/* Infobox styles */
     color: var(--text-color);
.infobox {
     border: 1px solid #aaaaaa; /* Light grey border */
    background-color: #f9f9f9; /* Slightly grey background */
    padding: 10px; /* Spacing inside the infobox */
    width: 300px; /* Fixed width */
}
}


.relative-location-header {
/* Custom classes for text styling */
     background: var(--body-dark);
.text-bold {
     font-weight: bold; /* Bold text */
}
}


#musicMap data {
.text-italic {
     display: none;
     font-style: italic; /* Italic text */
}
}


.musicMap-buttons {
/* Adjustments for mobile view */
    text-align: center;
@media screen and (max-width: 768px) {
    margin: 0.7em;
     #content {
}
        padding: 10px; /* Smaller padding on mobile devices */
 
.talkheader {
    text-align: center;
    background-color: var(--body-dark);
}
 
.shortcut {
    border: 1px solid var(--body-border);
    background: var(--body-light);
    float: right;
    font-size: 0.8em;
    margin: 0.5em 0em 0.5em 1em;
    padding: 0.5em;
    text-align: center;
}
 
.succession {
    width: 50%;
    text-align: center;
}
 
.succession th {
    width: 33%;
    font-size: 90%;
    background: var(--body-mid);
}
 
.succession td {
    background: var(--body-light);
}
 
.update {
    border-radius: 2px;
    background: var(--body-mid);
    box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0, 0, 0, 0.1);
    margin: 1em 0;
    padding: 0.25em 1em;
    text-align: center;
}
 
.pollwrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    counter-reset: question;
}
 
.pollbox {
    position: relative;
    padding: 1em 0.7em;
    margin: 0.7em;
    margin-bottom: 1.2em;
    width: 700px;
    font-size: 16px;
    border: 2px solid var(--body-border);
    background: var(--body-light);
}
 
.pollbox::before {
    content: "Question " counter(question);
    counter-increment: question;
    position: absolute;
    font-size: 16px;
    font-weight: bold;
    top: -0.5em;
    margin-top: -2px;
    left: 0.6em;
    line-height: 1em;
    background: linear-gradient(0deg, var(--body-light), var(--body-light) 50%, rgba(0, 0, 0, 0) 50%);
    padding: 0 0.6em;
}
 
.pollbox table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
 
.pollbox caption {
    text-align: left;
    margin-bottom: 4px;
}
 
.pollbox td {
    padding: 0px;
}
 
.pollquestion td:first-child::before {
    content: "";
    background: url('filepath://Poll_shield.png');
    background-repeat: no-repeat;
    background-position: top;
    width: 10px;
    height: 14px;
    position: absolute;
    top: 4px;
    left: 0;
}
 
.pollquestion td:first-child {
    position: relative;
    width: 32%;
    padding-right: 0.7em;
    padding-left: 16px;
}
 
.pollquestion td.pollpercent {
    box-sizing: border-box;
    padding-left: 17px;
    padding-right: 8px;
}
 
.pollquestion td:last-child {
    width: 22%;
    padding-left: 0.7em;
}
 
.pollquestion .pollnote td {
    width: 100%;
    padding: 20px 5px;
    padding-bottom: 5px;
}
 
.pollquestion .pollnote td::before {
    content: none;
}
 
.pollquestion data {
    display: block;
    height: 15px;
    background-image: url('filepath://Poll_sword2.png');
    position: relative;
}
 
.pollquestion data::before,
.pollquestion data::after {
    content: "";
    height: inherit;
    position: absolute;
    height: 15px;
}
 
.pollquestion data::before {
    background: url('filepath://Poll_sword1.png');
    width: 17px;
    right: 100%;
}
 
.pollquestion data::after {
    background: url('filepath://Poll_sword3.png');
    width: 8px;
    left: 100%;
}
 
.archivepollq th {
    text-align: left;
    font-weight: normal;
    padding: 15px 0 0 0;
}
 
.archivepollq td:first-child {
    position: relative;
    width: 80%;
    padding-right: 0.7em;
    padding-left: 16px;
}
 
.archivepollq td.archivepollpercent {
    box-sizing: border-box;
    padding: 2px;
    border: 1px solid var(--body-border);
}
 
.archivepollq td:last-child {
    text-align: right;
    padding-left: 0.7em;
}
 
.archivepollq .archivepollnote > td {
    text-align: left;
    width: 100%;
    padding: 20px 5px;
    padding-bottom: 5px;
}
 
.archivepollq data {
    display: block;
    height: 25px;
    background: var(--body-border);
    position: relative;
}
 
.archivepollq.e {
    border: 2px solid var(--errorbox-border);
    background: var(--errorbox-bg);
}
 
.archivepollq.e::before {
    content: "Error";
    background: linear-gradient(0deg, var(--errorbox-bg), var(--errorbox-bg) 50%, rgba(0, 0, 0, 0) 50%);
}
 
.wikipedia {
    border: 1px solid var(--wikipedia-border);
    background-color: var(--wikipedia-background);
}
 
.hatnote,
.seealso {
    font-style: italic;
}
 
.hatnote i,
.seealso i {
    font-style: normal;
}
 
div.hatnote,
div.seealso {
    margin: 0.5em 1.6em;
}
 
div.hatnote + div.hatnote,
div.hatnote + div.seealso,
div.seealso + div.hatnote,
div.seealso + div.seealso {
    margin-top: -0.5em;
}
 
.extimage div,
.extimage a,
.extimage img {
    width: inherit;
    height: inherit;
}
 
.tbz-region {
    background-color: var(--table-na-background);
    display: inline-block;
    white-space: nowrap;
    border: 1px solid var(--body-border);
    border-radius: 6px;
    width: 110px;
    padding: 0.35em 0.45em 0.25em;
    margin: 1px;
}
 
.tbz-check {
    display: none;
}
 
.tbz-badge {
    background-color: var(--table-na-background);
    display: inline-block;
    border: 1px solid var(--body-border);
    border-radius: 6px;
    padding: 0.3em 0.35em 0.2em;
}
 
.tbz-badge + .tbz-badge {
     margin-left: 1px;
}
 
.tbz-badge.tbz-badge-wrapper {
    padding: 0.2em;
}
 
.tbz-check {
    display: none;
}
 
.tbz-unlocked {
    background: var(--tbz-unlocked-background);
    border-color: var(--tbz-unlocked-border-color);
}
 
.tbz-unlocked a {
    color: var(--text-color);
}
 
.tbz-unlocked .tbz-check {
    display: inline-block;
    padding-left: 5px;
}
 
.tbz-locked {
    background-color: var(--tbz-locked-background-color);
    border-color: var(--tbz-locked-border-color);
}
 
.tbz-locked a {
    color: var(--text-color);
}
 
.tbz-locked .tbz-unlocked {
    background: var(--tbz-partial-unlock-background);
    border-color: var(--tbz-partial-unlock-border-color);
}
 
.combatinfo {
    width: 160px;
    text-align: center;
    float: right;
    clear: right;
}
 
.combatinfo.combatinfo-left {
    float: left;
    clear: left;
}
 
.combatinfo td {
    width: 25%;
}
 
.wikitable.combatinfo > caption {
    font-weight: normal;
}
 
.growth-stage-table td.growth-stage {
    text-align: center;
    vertical-align: bottom;
}
 
.keypress {
    background: var(--keypress-background);
    color: var(--keypress-color);
    font-family: inherit;
    border: 1px solid var(--keypress-border);
    border-radius: 2px;
    font-size: 0.9em;
    margin: 0 0.1em;
    padding: 0.1em 0.4em;
    white-space: nowrap;
}
 
.rsw-music-player {
    height: 2em;
    vertical-align: middle;
}
 
.item-drops .beast-version {
    font-size: smaller;
    font-style: italic;
}
 
td.famtreesub {
    margin: 0;
    padding: 0;
}
 
td.famtreesub table {
    border-spacing: 0;
    margin: 0;
    padding: 0;
}
 
td.famtreesub table td {
    height: 1em;
    width: 1em;
}
 
td.famtreeleaf {
    background: var(--body-light);
    border: 1px solid var(--body-border);
    padding: 0.2em;
}
 
:root {
    --infobox-text-color: var(--text-color);
    --infobox-room-poh-color: #ccc;
}
 
:root {
    --coins-color: green;
    --coins-pos-color: #014cc0;
    --coins-neg-color: #c02614;
}
 
.coins {
    color: var(--coins-color);
    background-position: 0% 50%;
    background-repeat: no-repeat;
    display: inline-block;
    padding: 0;
}
 
.coins-pos {
    color: var(--coins-pos-color);
}
 
.coins-neg {
    color: var(--coins-neg-color);
}
 
.coins-10000 {
    background-image: url('filepath://Coins_10000.png');
    padding: 3px 0 3px 35px;
}
 
.coins-1000 {
    background-image: url('filepath://Coins_1000.png');
    padding: 1px 0 1px 35px;
}
 
.coins-250 {
    background-image: url('filepath://Coins_250.png');
    padding: 1px 0 1px 35px;
}
 
.coins-100 {
    background-image: url('filepath://Coins_100.png');
    padding: 1px 0px 1px 32px;
}
 
.coins-25 {
    background-image: url('filepath://Coins_25.png');
    padding-left: 30px;
}
 
.coins-5 {
    background-image: url('filepath://Coins_5.png');
    padding-left: 30px;
}
 
.coins-4 {
    background-image: url('filepath://Coins_4.png');
    padding-left: 30px;
}
 
.coins-3 {
    background-image: url('filepath://Coins_3.png');
    padding-left: 30px;
}
 
.coins-2 {
    background-image: url('filepath://Coins_2.png');
    padding-left: 23px;
}
 
.coins-1 {
    background-image: url('filepath://Coins_1.png');
    padding-left: 15px;
}
 
:root {
    --documentation-background: #f9fafa;
    --documentation-link-color: #e4eaee;
    --documentation-headers-color: #fff;
    --documentation-header-background: #949eaa;
    --documentation-subheader-background: #808c9a;
    --documentation-border: #e4eaee;
}
 
.documentation {
    background: var(--documentation-background);
    box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0, 0, 0, 0.1);
    margin: 1em 0;
}
 
.documentation pre,
.documentation code {
    background-color: var(--documentation-background);
    border-color: var(--documentation-border);
}
 
.documentation h2,
.documentation hr {
    border-color: var(--documentation-border);
}
 
.documentation-header {
    color: var(--documentation-headers-color);
    background: var(--documentation-header-background);
    font-weight: bold;
    padding: 1em 1.5em;
}
 
.documentation-title {
    font-size: 1.25em;
}
 
.documentation-subheader {
    color: var(--documentation-headers-color);
    background: var(--documentation-subheader-background);
    padding: 0.5em 1.5em;
}
 
.documentation-subheader a,
.documentation-subheader a:visited,
.documentation-subheader a:active {
    color: var(--documentation-link-color);
}
 
.documentation-documentation,
.documentation-links {
    font-size: 0.85em;
}
 
.documentation-content {
    padding: 1em 1.5em;
}
 
.mw-templatedata-doc-params dl:not(:empty) {
    column-count: 3;
    border-top: 1px solid var(--body-border);
    margin-bottom: 0.5em;
}
 
.mw-templatedata-doc-params dt::after {
    content: ":";
}
 
.mw-templatedata-doc-params dd,
.mw-templatedata-doc-params dt {
    margin: 0.1em 2em;
    min-width: auto;
}
 
.mw-templatedata-doc-muted {
    color: var(--subtle-color);
    font-style: italic;
}
 
.fairycode {
    font-family: 'PT Serif', 'Palatino', 'Georgia', serif;
    font-size: 120%;
    font-weight: bold;
    text-transform: lowercase;
    letter-spacing: 1px;
}
 
.fairycode b ~ b:before {
    content: "•";
}
 
.floornumber > .floornumber-us,
#toc li a span.toctext span span:nth-child(2),
.floornumber-setting-gb .floornumber > .floornumber-us,
.floornumber-setting-gb #toc li a span.toctext span span:nth-child(2),
.floornumber-setting-us .floornumber > .floornumber-gb,
.floornumber-setting-us #toc li a span.toctext span span:nth-child(1) {
    display: none;
}
 
.floornumber-setting-gb .floornumber > .floornumber-gb,
.floornumber-setting-gb #toc li a span.toctext span span:nth-child(1),
.floornumber-setting-us .floornumber > .floornumber-us,
.floornumber-setting-us #toc li a span.toctext span span:nth-child(2) {
    display: inline;
}
 
.floornumber-override-gb .floornumber > .floornumber-us,
.floornumber-override-gb #toc li a span.toctext span span:nth-child(2),
.floornumber-override-us .floornumber > .floornumber-gb,
.floornumber-override-us #toc li a span.toctext span span:nth-child(1) {
    display: none !important;
}
 
.floornumber-override-gb .floornumber > .floornumber-gb,
.floornumber-override-gb #toc li a span.toctext span span:nth-child(1),
.floornumber-override-us .floornumber > .floornumber-us,
.floornumber-override-us #toc li a span.toctext span span:nth-child(2) {
    display: inline !important;
}
 
.musicplayer {
    border: 1px solid var(--body-border);
    font-size: 90%;
    background: var(--body-light);
    box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0, 0, 0, 0.1);
    max-width: 300px;
    margin: 0 0 1em 1em;
    padding: 5px;
}
 
.musicplayer audio,
.infobox audio {
    max-width: 298px;
    margin-left: auto;
    margin-right: auto;
}
 
.plink-template + a {
    margin-left: 0.25em;
}
 
.plinkt-image {
    text-align: center;
}
 
:root {
    --questdetails-header-background: #cfc2aa;
    --questdetails-header-background-alt: #cfbda1;
}
 
.questdetails {
    width: 100%;
    background-color: var(--body-light);
    border: 1px solid var(--body-border);
    border-collapse: separate;
}
 
.questdetails th {
    text-align: left;
}
 
.questdetails-header {
    padding: 0.5em 1em;
    background-color: var(--questdetails-header-background);
    width: 125px;
}
 
.questdetails tr:nth-child(odd) .questdetails-header {
    background-color: var(--questdetails-header-background-alt);
}
 
.questdetails-info {
    padding-left: 1em;
    padding-right: 2em;
}
 
ol.references,
.reflist {
    font-size: 90%;
}
 
.reflist {
    list-style-type: decimal;
}
 
.reflist .references {
    font-size: 100%;
    list-style-type: inherit;
}
 
.reflist-lower-alpha {
    list-style-type: lower-alpha;
}
 
ol.references li:target,
sup.reference:target {
    background-color: var(--body-light);
}
 
.hideQuotes .refhide {
    display: none;
}
 
.editnotice {
    font-size: 0.9em;
    padding-bottom: 0.75em;
    margin-bottom: 0.6em;
}
 
.editnotice .editnotice-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 0.4em;
}
 
:root {
    --messagebox-obsolete-background: #cfcfcf;
    --messagebox-obsolete-border: #464646;
    --messagebox-obsolete-color: var(--text-color);
    --messagebox-obsolete-link-color: #6c6c6c;
    --messagebox-info-background: #ebebeb;
    --messagebox-info-border: #898989;
    --messagebox-info-color: var(--text-color);
    --messagebox-info-link-color: #6c6c6c;
    --messagebox-action-background: #c7e8fa;
    --messagebox-action-border: #0b5884;
    --messagebox-action-color: var(--text-color);
    --messagebox-action-link-color: #03436b;
    --messagebox-warn-background: #dfc0ba;
    --messagebox-warn-border: #861c10;
    --messagebox-warn-color: var(--text-color);
    --messagebox-warn-link-color: #8e221a;
    --messagebox-safe-background: #d8f0d3;
    --messagebox-safe-border: #1b8408;
    --messagebox-safe-color: var(--text-color);
    --messagebox-safe-link-color: #1b8408;
    --messagebox-disambig-background: #ebebeb;
    --messagebox-disambig-border: #898989;
    --messagebox-disambig-color: var(--text-color);
    --messagebox-disambig-link-color: #6c6c6c;
    --messagebox-discord-background: #5865f2;
    --messagebox-discord-border: #4c57d0;
    --messagebox-discord-link-color: #d2e5fc;
}
 
.mw-message-box,
.mw-message-box-error,
.mw-message-box-warning,
.mw-message-box-success,
.usermessage {
    color: var(--text-color);
}
 
.messagebox {
    width: 65%;
    margin: 0.5em auto;
    border-left: 15px solid;
    border-color: var(--body-dark);
    background-color: var(--body-light);
    box-sizing: border-box;
}
 
.messagebox.obsolete {
    background-color: var(--messagebox-obsolete-background);
    border-color: var(--messagebox-obsolete-border);
    color: var(--messagebox-obsolete-color);
}
 
.messagebox.obsolete a,
.messagebox.obsolete a:visited,
.messagebox.obsolete a:active {
    color: var(--messagebox-obsolete-link-color);
}
 
.messagebox.info {
    background-color: var(--messagebox-info-background);
    border-color: var(--messagebox-info-border);
    color: var(--messagebox-info-color);
}
 
.messagebox.info a,
.messagebox.info a:visited,
.messagebox.info a:active {
    color: var(--messagebox-info-link-color);
}
 
.messagebox.action {
    background-color: var(--messagebox-action-background);
    border-color: var(--messagebox-action-border);
    color: var(--messagebox-action-color);
}
 
.messagebox.action a,
.messagebox.action a:visited,
.messagebox.action a:active {
    color: var(--messagebox-action-link-color);
}
 
.messagebox.warn {
    background-color: var(--messagebox-warn-background);
    border-color: var(--messagebox-warn-border);
    color: var(--messagebox-warn-color);
}
 
.messagebox.warn a,
.messagebox.warn a:visited,
.messagebox.warn a:active {
    color: var(--messagebox-warn-link-color);
}
 
.messagebox.safe {
    background-color: var(--messagebox-safe-background);
    border-color: var(--messagebox-safe-border);
    color: var(--messagebox-safe-color);
}
 
.messagebox.safe a,
.messagebox.safe a:visited,
.messagebox.safe a:active {
    color: var(--messagebox-safe-link-color);
}
 
.messagebox.disambig {
    background-color: var(--messagebox-disambig-background);
    border-color: var(--messagebox-disambig-border);
    color: var(--messagebox-disambig-color);
}
 
.messagebox.disambig a,
.messagebox.disambig a:visited,
.messagebox.disambig a:active {
    color: var(--messagebox-disambig-link-color);
}
 
.messagebox.discord {
    background-color: var(--messagebox-discord-background);
    border-color: var(--messagebox-discord-border);
    color: #fff;
}
 
.messagebox.discord a,
.messagebox.discord a:visited,
.messagebox.discord a:active {
    color: var(--messagebox-discord-link-color);
}
 
.messagebox.discord a.external,
.messagebox.discord a:visited.external,
.messagebox.discord a:active.external {
    font-style: italic;
}
 
.messagebox.stub {
    width: 40%;
}
 
.messagebox.hasdialogue {
    padding: 0 10px;
    width: auto;
}
 
:root {
    --ajaxpoll-background: #fafafa;
    --ajaxpoll-text-color: var(--byline-color);
    --ajaxpoll-answerbar-background: var(--body-light);
    --ajaxpoll-answerbar-border: var(--body-border);
}
 
.ajaxpoll {
    background: var(--ajaxpoll-background);
}
 
.ajaxpoll .ajaxpoll-hover-vote,
.ajaxpoll .ajaxpoll-hover-revoke,
.ajaxpoll .ajaxpoll-ajax {
    background: none;
}
 
.ajaxpoll .ajaxpoll-answer-vote {
    border-color: var(--ajaxpoll-answerbar-border);
}
 
.ajaxpoll .ajaxpoll-answer-vote div {
    background: var(--ajaxpoll-answerbar-background);
    border-color: var(--ajaxpoll-answerbar-border);
}
 
.ajaxpoll .ajaxpoll-our-vote div {
    border-color: #3c780a;
}
 
.ajaxpoll .ajaxpoll-misc,
.ajaxpoll .ajaxpoll-info,
.ajaxpoll .ajaxpoll-ajax {
    color: var(--ajaxpoll-text-color);
}
 
.ajaxpoll-id-info {
    display: none;
}
 
.inventorytable,
.lootingbagtable,
.runepouchtable {
    background-repeat: no-repeat;
    background-position: top left;
    height: auto;
    border-spacing: 0;
    border-collapse: separate;
    margin-top: 7px;
    margin-bottom: 7px;
}
 
.inventorytable.storage-left,
.lootingbagtable.storage-left,
.runepouchtable.storage-left {
    float: left;
    clear: left;
    margin-right: 7px;
}
 
.inventorytable.storage-center,
.lootingbagtable.storage-center,
.runepouchtable.storage-center {
    margin-left: auto;
    margin-right: auto;
}
 
.inventorytable.storage-right,
.lootingbagtable.storage-right,
.runepouchtable.storage-right {
    float: right;
    clear: right;
    margin-left: 7px;
}
 
.inventorytable td,
.lootingbagtable td,
.runepouchtable td {
    padding: 0;
    border: 0;
    text-align: center;
    position: relative;
}
 
.inventorytable {
    background-image: url('filepath://Inventory_tab.png');
    width: 204px;
    padding: 13px 16px 10px;
}
 
.inventorytable td {
    width: 43px;
    height: 36px;
}
 
.lootingbagtable {
    background-image: url('filepath://Looting_bag_tab.png');
    width: 204px;
    padding: 31px 17px 20px 12px;
}
 
.lootingbagtable td {
    width: 44px;
    height: 32px;
}
 
.runepouchtable {
    background-image: url('filepath://Rune_pouch_background.png');
    width: 158px;
    padding: 24px 7px 6px;
}
 
.runepouchtable.storage-left {
    margin-left: 23px;
}
 
.runepouchtable.storage-right {
    margin-right: 23px;
}
 
.runepouchtable td {
    width: 32px;
    height: 32px;
    line-height: 1.6em;
}
 
.runepouchtable td.middle-rune {
    padding-left: 24px;
    padding-right: 24px;
}
 
.divinerunepouch td.middle-rune {
    padding-left: 6px;
    padding-right: 6px;
}
 
.divinerunepouch td.middle-rune + td.middle-rune {
    padding-left: 0;
}
 
.menagerietable {
    background-image: url('filepath://Menagerie_interface.png');
    background-repeat: no-repeat;
    background-position: top left;
    width: 300px;
    height: 250px;
    padding: 56px 28px 34px 6px;
    border-spacing: 0;
}
 
.menagerietable td {
    padding: 0;
    border: 0;
    text-align: center;
    position: relative;
    width: 46px;
    height: 32px;
}
 
.inventorytable .inv-quantity-text,
.lootingbagtable .inv-quantity-text,
.runepouchtable .inv-quantity-text,
.equipment .inv-quantity-text {
    font-family: 'RuneScape Small';
    font-size: 12pt;
    position: absolute;
    top: -8px;
    left: 4px;
    text-shadow: #000 1px 1px;
    color: #ffff00;
    pointer-events: none;
}
 
.inventorytable .inv-quantity-text.qty-1,
.lootingbagtable .inv-quantity-text.qty-1,
.runepouchtable .inv-quantity-text.qty-1,
.equipment .inv-quantity-text.qty-1 {
    color: #ffff00;
}
 
.inventorytable .inv-quantity-text.qty-100k,
.lootingbagtable .inv-quantity-text.qty-100k,
.runepouchtable .inv-quantity-text.qty-100k,
.equipment .inv-quantity-text.qty-100k {
    color: #fff;
}
 
.inventorytable .inv-quantity-text.qty-10m,
.lootingbagtable .inv-quantity-text.qty-10m,
.runepouchtable .inv-quantity-text.qty-10m,
.equipment .inv-quantity-text.qty-10m {
    color: #01ff80;
}
 
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .inventorytable img,
    .lootingbagtable img,
    .runepouchtable img,
    .equipment img {
          image-rendering: pixelated;
          image-rendering: crisp-edges;
     }
     }


}
     .infobox {
 
        width: 100%; /* Full width on mobile devices */
.runepouchtable .inv-quantity-text {
    left: -1px;
}
 
.runepouchtable td.middle-rune .inv-quantity-text {
    left: 23px;
}
 
.divinerunepouch td.middle-rune .inv-quantity-text {
    left: 5px;
}
 
.divinerunepouch td.middle-rune + td.middle-rune .inv-quantity-text {
    left: 0;
}
 
.equipment .inv-quantity-text {
     top: -3px;
}
 
span.noted-item {
    width: 30px;
    height: 29px;
    text-align: center;
    display: inline-block;
}
 
span.noted-item a {
    width: 30px;
    height: 29px;
}
 
.noted-item a {
    background-image: url('filepath://Bank_note.png');
    background-repeat: no-repeat;
    display: inline-block;
    background-position: center;
}
 
td.noted-item a {
    width: 32px;
    line-height: 28px;
}
 
.noted-item img {
    transform: scale(0.65);
}
 
.equipment {
    background: #3e3529;
    border: 9px solid transparent;
    border-image-source: url("filepath://Interface border.png");
    border-image-slice: 9;
    border-image-width: 9px;
    border-image-outset: 0;
    border-image-repeat: repeat;
    margin: 7px 0;
    padding: 0 2px 0 3px;
}
 
@media all and (max-width: 720px) {
    table.equipment {
          width: initial !important;
     }
     }
}
.equipment-div,
.equipment-div-buttons {
    background-repeat: no-repeat;
    background-position: top left;
    position: relative;
    width: 175px;
    display: flex;
}
.equipment-div {
    background-image: url("filepath://Worn_equipment_tab_(no_buttons).png");
    height: 222px;
    margin: 15px 0 14px;
}
.equipment-div-buttons {
    background-image: url("filepath://Worn_equipment_tab_(borderless).png");
    height: 244px;
    margin: 4px 0 3px;
}
.equipment-blank {
    background-image: url('filepath://Blank_slot.png');
    width: 36px;
    height: 36px;
}
.equipment-left {
    float: left;
    clear: left;
    margin-right: 7px;
}
.equipment-center {
    margin-left: auto;
    margin-right: auto;
}
.equipment-right {
    float: right;
    clear: right;
    margin-left: 7px;
}
.equipment-stats,
.equipment-ikod {
    font-family: RuneScape;
    font-size: 16px;
    line-height: 14px;
    color: #ff981f;
    text-shadow: 1px 1px 0 black;
}
td.equipment-stats b {
    font-family: RuneScape;
    font-weight: bold;
    display: block;
    margin-top: 2px;
}
td.equipment-stats data {
    display: block;
    padding-left: 8px;
}
td.equipment-stats data img {
    vertical-align: bottom;
}
td.equipment-ikod {
    max-width: 325px;
}
td.equipment-ikod em {
    font-style: normal;
    display: block;
    margin-bottom: 3px;
}
td.equipment-ikod b {
    font-weight: normal;
    color: white;
}
td.equipment-ikod strong {
    font-weight: normal;
    color: red;
}
td.equipment-ikod ul {
    list-style: none;
    margin: 0;
}
td.equipment-ikod li {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    margin: 0;
    margin-right: 14px;
}
td.equipment-ikod img {
    cursor: help;
}
td.equipment-ikod hr {
    border-top: 1px solid #0e0e0c;
    border-bottom: 1px solid #474745;
    margin: 7px 0;
}
.equipment-plinkp {
    position: absolute;
    width: 36px;
    height: 36px;
    left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.equipment-head,
.equipment-cape,
.equipment-neck,
.equipment-ammo,
.equipment-weapon,
.equipment-torso,
.equipment-shield,
.equipment-legs,
.equipment-gloves,
.equipment-boots,
.equipment-ring,
.equipment-statsbutton,
.equipment-ikodbutton {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}
.equipment-head {
    left: 70px;
    top: 0px;
}
.equipment-cape {
    left: 29px;
    top: 39px;
}
.equipment-neck {
    left: 70px;
    top: 39px;
}
.equipment-ammo {
    left: 111px;
    top: 39px;
}
.equipment-weapon {
    left: 14px;
    top: 78px;
}
.equipment-torso {
    left: 70px;
    top: 78px;
}
.equipment-shield {
    left: 126px;
    top: 78px;
}
.equipment-legs {
    left: 70px;
    top: 118px;
}
.equipment-gloves {
    left: 14px;
    top: 158px;
}
.equipment-boots {
    left: 70px;
    top: 158px;
}
.equipment-ring {
    left: 126px;
    top: 158px;
}
.equipment-statsbutton {
    top: 204px;
    left: 0px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    box-shadow: 2px 2px 3px black;
}
.equipment-ikodbutton {
    top: 204px;
    left: 90px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    box-shadow: 2px 2px 3px black;
}
:root {
    --transcript-border-color: #b4a36a;
    --transcript-border-hover-color: #876f1d;
    --transcript-strikethrough-color: #800000;
}
.transcript {
    background: var(--body-light);
    border-radius: 0 0 120px 120px / 0 0 8px 8px;
    box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0, 0, 0, 0.3);
    max-width: 90ch;
    overflow: hidden;
    margin-bottom: 1em;
    padding: 0.5em 1em 1em;
    clear: left;
}
.transcript.godletter {
    margin: 1em auto;
    padding: 1em 1.5em;
    max-width: 60ch;
}
.quest-action {
    text-align: center;
    font-style: italic;
    margin: 0 5%;
}
.quest-action:before,
.quest-action:after {
    content: '———';
    margin: 4px;
    letter-spacing: -1px;
}
.transcript-chatbox-image {
    display: inline-block;
    margin-right: 5px;
    position: relative;
    text-align: center;
    width: 32px;
}
.transcript-chatbox-image + .transcript-chatbox-image {
    left: -10px;
    top: 10px;
    margin-right: 0;
}
.transcript-opt::before {
    display: inline-block;
    content: '';
    background: currentcolor;
    -webkit-mask: url("filepath://Black-chevron.svg") no-repeat 50% 50% / contain;
    mask: url("filepath://Black-chevron.svg") no-repeat 50% 50% / contain;
    width: 7px;
    height: 10px;
    margin-right: 5px;
}
.transcript-opt.disabled {
    filter: opacity(0.5);
}
.ns-120 .mw-parser-output s,
.transcript s {
    text-decoration-color: var(--transcript-strikethrough-color);
}
.ns-120 .mw-parser-output .template-colour,
.transcript .template-colour {
    text-shadow: 1px 1px #000a;
}
:root {
    --byline-arrow-filter: invert(29%) sepia(0%) saturate(376%) hue-rotate(172deg) brightness(87%) contrast(80%);
    --tile-border-color: #cabe9b;
    --tile-background-color: #f9f3eb;
    --tile-link-button-color: #f5e9db;
    --tile-link-button-highlight-color: #dfccb0;
    --tile-dark-color: #fff;
    --tile-dark-bg: #5d6773;
    --tile-dark-link-color: #ccc;
    --tile-dark-byline-color: rgba(255, 255, 255, 0.7);
    --tile-dark-header-color: #fff;
}
.tile {
    background: var(--tile-background-color);
    border: 1px solid var(--tile-border-color);
    box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0, 0, 0, 0.1);
    padding: 1.5em 2em 1em;
    max-width: 40em;
}
.tile h2 {
    font-size: 1.4em;
    font-weight: bold;
    border: none;
    margin: 0 0 0.4em;
}
.tile .byline + h2 {
    margin-top: -0.5em;
}
.tile.dark {
    color: var(--tile-dark-color);
    background: var(--tile-dark-bg);
    border: none;
    box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0, 0, 0, 0.3);
}
.tile.dark h2 {
    color: var(--tile-dark-header-color);
}
.tile.dark a {
    color: var(--tile-dark-link-color);
}
.tile.dark .byline {
    color: var(--tile-dark-byline-color);
}
.byline {
    font-size: 0.9em;
    color: var(--byline-color);
}
.byline a {
    color: var(--byline-color);
}
.tile-row {
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 1em;
}
.tile-halves {
    display: flex;
    flex-flow: row wrap;
    border: 1px solid var(--tile-border-color);
    background: var(--tile-background-color);
    box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0, 0, 0, 0.1);
}
.tile-halves h2 {
    font-size: 1.4em;
    font-weight: bold;
    border: none;
    margin: 0 0 0.4em;
}
.tile-halves .byline + h2 {
    margin-top: -0.5em;
}
.tile-top {
    width: 100%;
    padding: 1.3rem 1.5rem 0.6rem;
}
.tile-top.tile-image {
    display: flex;
    align-items: center;
    background-color: var(--byline-color);
    overflow: hidden;
    padding: 0;
    height: 13vw;
    max-height: 12em;
    transition: 0.4s ease-out;
}
.tile-halves:hover .tile-top.tile-image img {
    transform: scale(1.1);
    transition: 0.5s ease-out;
}
.tile-top.tile-image a {
    width: 100%;
}
.tile-top.tile-image img {
    width: 100%;
    object-fit: cover;
    max-height: 200px;
    transition: 0.4s ease-out;
}
.tile-bottom {
    background: var(--tile-background-color);
    border-top: 1px solid var(--tile-border-color);
    width: 100%;
    padding: 1rem 1.5rem 0.6rem;
}
.tile-bottom.link-button {
    align-self: flex-end;
    padding: 0;
}
.tile-bottom.link-button a {
    display: block;
    text-align: center;
    padding: 0.75em 1.5em 0.8em;
    text-decoration: none;
}
.tile-bottom.read-more {
    background: var(--tile-link-button-color);
    transition: 0.3s ease-out;
}
.tile-bottom.read-more a {
    color: var(--byline-color);
    font-weight: bold;
    text-align: right;
}
.tile-bottom.read-more:hover {
    background: var(--tile-link-button-highlight-color);
}
.tile-bottom.read-more:hover .arrow {
    transform: translateX(50%);
}
.tile-bottom.read-more .arrow {
    filter: var(--byline-arrow-filter);
    margin-left: 0.4em;
    transition: 0.3s ease-out;
}
.tile.oswf-day {
    margin-left: 0.5em;
}
.oswf-tile {
    margin: 1em;
}
.oswf-tile.oswf-complete {
    opacity: 0.65;
}
.oswf-tile .oswf-summary {
    font-size: 105%;
    line-height: 1.6;
    margin-top: -0.4em;
}
.oswf-tile .oswf-img {
    display: block;
    max-width: 75px;
    float: right;
}
.oswf-tile .oswf-img img {
    max-width: 100%;
    height: auto;
}
.oswf-tile .oswf-guidance {
    border-top: 1px solid #eee;
    padding-top: 1em;
}
body.page-Old_School_RuneScape_Wiki .mw-parser-output {
    max-width: 75em;
    margin: 0 auto;
}
body.page-Old_School_RuneScape_Wiki.action-view .catlinks,
body.page-Old_School_RuneScape_Wiki.action-view #contentSub,
body.page-Old_School_RuneScape_Wiki.action-view #siteNotice {
    display: none;
}
.mainpage-header {
    display: flex;
    margin: 2.6em 1.75em 1.5em;
}
.mainpage-header .header-intro {
    flex: 2;
}
.mainpage-header .header-intro h1 {
    font-size: 2.5em;
    font-weight: bold;
    border: none;
    margin: 0 0 0.15em;
}
.mainpage-header .header-intro p {
    font-size: 1.1em;
    line-height: 1.7em;
}
.mainpage-header .header-stats {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -1em;
}
.mainpage-body {
    display: grid;
    grid-template-areas: "event event event" "update update update" "content content content" "left left right";
    gap: 0.9rem;
    grid-template-columns: repeat(3, 1fr);
}
.mainpage-body h2 a {
    color: var(--text-color);
}
.mainpage-body .tile {
    padding-left: 1.75em;
    padding-right: 1.75em;
    max-width: 100%;
}
.mainpage-body .tile-row {
    width: 100%;
    margin-bottom: 0;
}
.mainpage-body .tile-row {
    display: grid;
    gap: 0.9rem;
}
.mainpage-left {
    grid-area: left;
    flex: 2;
    display: flex;
    flex-flow: column wrap;
}
.mainpage-left > * {
    margin: 0 0 0.9rem;
}
.mainpage-right {
    grid-area: right;
    flex: 1;
    display: flex;
    flex-flow: column wrap;
}
.mainpage-right > * {
    margin: 0 0 0.9rem;
}
.arrow {
    background: url('filepath://White-chevron.svg') no-repeat;
    display: inline-block;
    height: 0.7rem;
    width: 0.45rem;
    vertical-align: middle;
}
.arrow.dark {
    filter: invert(80%);
}
.mainpage-recent-updates {
    grid-area: update;
    grid-template-columns: repeat(3, 1fr);
}
.mainpage-recent-updates .tile-halves {
    flex: 1;
    align-content: flex-start;
}
.mainpage-recent-updates .tile-halves:hover .tile-top img {
    transform: scale(1.04);
}
.mainpage-recent-updates .tile-bottom.link-button a {
    text-align: left;
    padding: 1rem 1.5rem 0.75rem;
}
.mainpage-recent-updates h2 {
    margin: -0.5em 0 0.3em;
}
.mainpage-recent-updates p:not(.byline) {
    font-size: 0.9em;
    line-height: 1.75em;
    color: var(--text-color);
}
.mainpage-contents {
    grid-area: content;
    grid-template-columns: repeat(6, 1fr);
}
.mainpage-contents .tile-halves {
    flex: 1;
}
.mainpage-contents .tile-top {
    position: relative;
}
.mainpage-contents h2 {
    margin: 0;
    padding: 0;
}
.mainpage-contents .tile-bottom.link-button a {
    padding: 0.75em 0.2em;
}
.mainpage-skills ul {
    columns: 3 9em;
    margin: 1em 0.7em 0.7em 1em;
}
.mainpage-skills li {
    display: flex;
    margin-bottom: 0.29em;
}
.mainpage-skills li a:first-child {
    border-radius: 2px;
    padding: 4px;
    width: 25px;
    height: 25px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mainpage-skills li a:last-child {
    flex: 1;
    display: flex;
    align-items: center;
    font-weight: bold;
    padding-left: 0.7em;
    text-decoration: none;
}
.mainpage-skills li:hover a:first-child {
    border-radius: 2px 0 0 2px;
}
.mainpage-skills li:hover a:last-child {
    color: rgba(255, 255, 255, 0.9);
    border-radius: 0 2px 2px 0;
}
.skill-agility a:first-child,
.skill-melee a:first-child {
    background: #bc483d;
}
.skill-agility:hover a:last-child,
.skill-melee:hover a:last-child {
    background: #932419;
}
.skill-ranged a:first-child {
    background: #748d36;
}
.skill-ranged:hover a:last-child {
    background: #4c6215;
}
.skill-magic a:first-child {
    background: #6274ab;
}
.skill-magic:hover a:last-child {
    background: #304791;
}
.skill-fishing a:first-child,
.skill-fletching a:first-child {
    background: #3e8e9a;
}
.skill-fishing:hover a:last-child,
.skill-fletching:hover a:last-child {
    background: #1a6671;
}
.skill-cooking a:first-child,
.skill-thieving a:first-child {
    background: #91689e;
}
.skill-cooking:hover a:last-child,
.skill-thieving:hover a:last-child {
    background: #713684;
}
.skill-farming a:first-child,
.skill-woodcutting a:first-child {
    background: #59924f;
}
.skill-farming:hover a:last-child,
.skill-woodcutting:hover a:last-child {
    background: #306f25;
}
.skill-mining a:first-child {
    background: #6385a8;
}
.skill-mining:hover a:last-child {
    background: #315f8d;
}
.skill-smithing a:first-child {
    background: #d2b244;
}
.skill-smithing:hover a:last-child {
    background: #b69213;
}
.popular-pages ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0.6em;
    margin: 1em 0 0.7em 0;
}
.mp-popular-page-light {
    display: flex;
    align-items: center;
    background-color: var(--button-background);
    transition: 100ms;
}
.mp-popular-page-light a {
    flex: 1;
    display: block;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    padding: 0.7em 1em;
}
.mp-popular-page-light:hover {
    filter: brightness(115%);
    transition: 100ms;
}
.mainpage-discord {
    border: none;
    box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0, 0, 0, 0.3);
}
.mainpage-discord .tile-top {
    display: flex;
    align-items: center;
    background: #5865f2;
    padding: 1em 1.75em;
}
.mainpage-discord .tile-top a {
    flex: 1;
    position: relative;
    text-decoration: none;
}
.mainpage-discord .tile-top a:hover .arrow {
    transform: translateX(50%);
}
.mainpage-discord .tile-bottom {
    background: #525ee0;
    border: none;
    padding: 1em 1.75em;
}
.mainpage-discord .tile-bottom p {
    color: #fff;
    font-weight: bold;
    font-size: 0.9em;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0;
}
.mainpage-discord .partner-icon {
    margin-right: 0.75em;
}
.mainpage-discord .server-name {
    color: #fff;
    font-weight: bold;
    font-size: 1.25em;
    margin: 0.5em 0 -0.15em;
}
.mainpage-discord .server-tagline {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5em;
}
.mainpage-discord .arrow {
    position: absolute;
    top: calc(50% - .5em);
    right: 0;
    height: 1em;
    width: 0.7em;
    background-size: 0.7em 1em;
    transition: 0.3s ease-out;
}
.mainpage-twitter {
    border: none;
    box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0, 0, 0, 0.3);
}
.mainpage-twitter .tile-top {
    display: flex;
    align-items: center;
    background: #00aced;
    padding: 1em 1.75em;
}
.mainpage-twitter .tile-top a {
    flex: 1;
    position: relative;
    text-decoration: none;
}
.mainpage-twitter .tile-top a:hover .arrow {
    transform: translateX(50%);
}
.mainpage-twitter .tile-bottom {
    background: #0084b4;
    border: none;
    padding: 1em 1.75em;
}
.mainpage-twitter .tile-bottom p {
    color: #fff;
    font-weight: bold;
    font-size: 0.9em;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0;
}
.mainpage-twitter .twitter-logo {
    margin-right: 0.75em;
}
.mainpage-twitter .twitter-name {
    color: #fff;
    font-weight: bold;
    font-size: 1.25em;
    margin: 0.5em 0 -0.15em;
}
.mainpage-twitter .twitter-tagline {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5em;
}
.mainpage-twitter .arrow {
    position: absolute;
    top: calc(50% - .5em);
    right: 0;
    height: 1em;
    width: 0.7em;
    background-size: 0.7em 1em;
    transition: 0.3s ease-out;
}
.mainpage-editing {
    border: none;
    box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0, 0, 0, 0.3);
}
.mainpage-editing .tile-top {
    background: #438ab5;
}
.mainpage-editing .tile-bottom {
    background: #3980ab;
    border: none;
    padding: 0.8rem 1.5rem 0.4rem;
}
.mainpage-editing h2,
.mainpage-editing a {
    color: #fff;
}
.mainpage-editing p {
    color: rgba(255, 255, 255, 0.9);
}
.mainpage-editing ul {
    list-style-image: url('filepath://Transparent-chevron.svg');
}
.mainpage-poll .ajaxpoll {
    border: none;
    background: none;
    padding: 0;
    width: auto;
}
.mainpage-trailblazer {
    grid-area: event;
}
.mainpage-trailblazer .tb-logo {
    margin-bottom: 0.9rem;
}
.mainpage-trailblazer .tile-row {
    grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 720px) {
    .mainpage-trailblazer .tile-row {
          grid-template-columns: none;
    }
    .mainpage-trailblazer .tile-row .tile-top {
          height: 20vw;
          min-height: 9em;
    }
}
@media only screen and (max-width: 1200px) {
    .mainpage-contents {
          grid-template-columns: repeat(3, 1fr);
    }
}
@media only screen and (max-width: 1000px) {
    .mainpage-body {
          grid-template-areas: "event event event" "update update update" "content content content" "left left left" "right right right";
    }
    .mainpage-recent-updates {
          grid-template-columns: repeat(2, 1fr);
    }
    .mainpage-recent-updates .tile-halves:last-child {
          display: none;
    }
    .mainpage-recent-updates .tile-halves:hover .tile-top img {
          transform: scale(1.04);
    }
    .mainpage-recent-updates .tile-top {
          height: 18vw;
          min-height: 9em;
    }
    .mainpage-header .header-stats {
          display: none;
    }
    .mainpage-left > *:last-child,
    .mainpage-right > *:last-child {
          margin-bottom: 0;
    }
    .popular-pages ul {
          grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 720px) {
    .mainpage-recent-updates {
          grid-template-columns: none;
    }
    .mainpage-recent-updates .tile-halves:last-child {
          display: flex;
    }
    .mainpage-contents {
          grid-template-columns: repeat(2, 1fr);
    }
}
.mw-prefs-buttons {
    background-color: var(--body-main);
    border-top-color: var(--body-border);
    box-shadow: none;
}
.mw-prefs-tabs-wrapper.oo-ui-panelLayout-framed,
.mw-prefs-tabs > .oo-ui-menuLayout-content > .oo-ui-indexLayout-stackLayout > .oo-ui-tabPanelLayout {
    border-color: var(--body-border);
}
.mw-htmlform-ooui .mw-htmlform-matrix tbody tr:nth-child(even) td {
    background-color: var(--body-light);
}
.mw-htmlform-ooui .mw-htmlform-matrix tbody tr:hover td {
    background-color: var(--body-mid);
}
:root {
    --rc-positive-color: #407813;
    --rc-negative-color: #b41e0f;
}
.mw-plusminus-pos {
    color: var(--rc-positive-color);
}
.mw-plusminus-neg {
    color: var(--rc-negative-color);
}
.client-js .mw-recentchanges-toplinks:not(.mw-recentchanges-toplinks-collapsed) {
    border-color: var(--body-border);
    background-color: var(--body-light);
    border-radius: 2px;
}
.mw-rcfilters-ui-filterTagMultiselectWidget-wrapper-content-title {
    color: var(--text-color);
}
.mw-rcfilters-ui-filterTagMultiselectWidget-emptyFilters {
    color: var(--byline-color);
}
.mw-rcfilters-ui-filterTagMultiselectWidget.oo-ui-widget-enabled .oo-ui-tagMultiselectWidget-handle {
    background-color: var(--ooui-interface);
    border-color: var(--ooui-interface-border);
}
.mw-rcfilters-ui-filterTagMultiselectWidget-views-select-widget.oo-ui-widget {
    border-color: var(--ooui-interface-border);
}
.mw-rcfilters-collapsed .mw-rcfilters-ui-filterTagMultiselectWidget {
    border-bottom-color: var(--ooui-interface-border);
}
.mw-rcfilters-ui-menuSelectWidget-footer {
    background-color: var(--ooui-interface);
    border-color: var(--ooui-interface-border);
}
.mw-rcfilters-ui-viewSwitchWidget label.oo-ui-labelWidget {
    color: var(--byline-color);
}
.mw-rcfilters-ui-tagItemWidget-popup-content {
    color: var(--ooui-text);
}
.mw-changeslist-legend,
.mw-rcfilters-ui-changesListWrapperWidget .mw-changeslist-legend {
    background-color: var(--body-light);
    border-color: var(--body-dark);
}
.mw-rcfilters-ui-changesListWrapperWidget-previousChangesIndicator {
    border-color: var(--sidebar);
}
.client-js .mw-changeslist ul,
.client-js .mw-changeslist table.mw-enhanced-rc {
    margin-left: 0;
}
.mw-rcfilters-ui-watchlistTopSectionWidget-separator {
    border-color: var(--sidebar);
}
.mw-rcfilters-ui-itemMenuOptionWidget-header {
    border-bottom-color: var(--ooui-interface);
    background-color: var(--ooui-interface-border);
}
.mw-rcfilters-ui-itemMenuOptionWidget:not(:last-child):not(.mw-rcfilters-ui-itemMenuOptionWidget-identifier-talk) {
    border-bottom-color: var(--ooui-normal-border);
}
.mw-rcfilters-ui-itemMenuOptionWidget-label-title,
.mw-rcfilters-ui-itemMenuOptionWidget-label-desc {
    color: var(--text-color);
}
.mw-rcfilters-ui-filterMenuOptionWidget.oo-ui-flaggedElement-muted:not(.oo-ui-optionWidget-selected) {
    background-color: var(--body-main);
}
.mw-rcfilters-ui-filterMenuOptionWidget.oo-ui-flaggedElement-muted .mw-rcfilters-ui-itemMenuOptionWidget-label-title,
.mw-rcfilters-ui-filterMenuOptionWidget.oo-ui-flaggedElement-muted .mw-rcfilters-ui-itemMenuOptionWidget-label-desc {
    color: var(--subtle-color);
}
.mw-rcfilters-ui-filterMenuSectionOptionWidget {
    background-color: var(--body-mid);
}
.mw-rcfilters-ui-filterMenuSectionOptionWidget-header-title.oo-ui-labelElement-label {
    color: var(--ooui-text);
}
.mw-rcfilters-ui-filterMenuHeaderWidget-title {
    color: var(--ooui-text);
}
.mw-rcfilters-ui-filterMenuHeaderWidget-header {
    border-bottom-color: var(--ooui-interface-border);
    background-color: var(--ooui-interface);
}
.mw-rcfilters-ui-itemMenuOptionWidget-view-namespaces {
    border-top-color: var(--ooui-interface-border);
}
.mw-rcfilters-ui-datePopupWidget {
    border-color: var(--ooui-interface-border);
}
.mw-rcfilters-ui-datePopupWidget .mw-rcfilters-ui-valuePickerWidget-title {
    color: var(--byline-color);
}
.mw-rcfilters-ui-savedLinksListItemWidget-label {
    color: var(--ooui-accent);
}
.client-js .mw-changeslist.mw-rcfilters-ui-changesListWrapperWidget-highlighted ul,
.client-js .mw-changeslist.mw-rcfilters-ui-changesListWrapperWidget-highlighted table.mw-enhanced-rc {
    margin-left: 1.5em;
}
.page-Special_CreateAccount .mw-ui-container,
.page-Special_UserLogin .mw-ui-container {
    max-width: 64rem;
    margin: 0 auto;
}
.mw-number-text {
    color: var(--byline-color);
}
.mw-body-content .mw-number-text h3 {
    color: var(--text-color);
}
#mw-indicator-mw-helplink a {
    background: none;
    padding: 0;
    display: flex;
    align-items: center;
}
#mw-indicator-mw-helplink a::before {
    content: '';
    margin-right: 5px;
    -webkit-mask: url("/resources/src/mediawiki.helplink/images/helpNotice.svg?46d34") no-repeat 50% 50% / contain;
    mask: url("/resources/src/mediawiki.helplink/images/helpNotice.svg?46d34") no-repeat 50% 50% / contain;
    background: var(--text-color);
    height: 20px;
    width: 20px;
}
.results-info {
    color: inherit;
}
.mw-search-profile-tabs {
    background-color: var(--body-mid);
    border-color: transparent;
}
.search-types .current a {
    color: inherit;
}
#mw-searchoptions {
    background-color: var(--body-mid);
    border-color: transparent;
}
#mw-searchoptions .divider {
    border-color: var(--body-border);
}
#mw-searchoptions h4 {
    font-family: inherit;
}
#mw-searchoptions .oo-ui-labelElement:nth-of-type(odd) {
    font-weight: bold;
}
.searchresult {
    line-height: 1.5;
}
.searchalttitle,
#mw-search-interwiki li {
    font-size: 90%;
}
.mw-search-result-data {
    color: var(--byline-color);
}
.page-Special_ListFiles a.image img {
    width: inherit;
    height: inherit;
}
.page-Special_ListFiles .TablePager_col_thumb {
    text-align: center;
}
#editcount table[border="1"] {
    background-color: var(--body-main) !important;
    border-color: var(--wikitable-border) !important;
    margin-top: 0.5em;
}
#editcount table[border="1"] th,
#editcount table[border="1"] td {
    padding: 0.2em 0.4em;
}
#editcount table[border="1"] th {
    background-color: var(--wikitable-header-bg);
    border: 1px solid var(--wikitable-border);
}
#editcount table[border="1"] td {
    border: 1px solid var(--wikitable-border);
}
#editcount table[border="1"] tr:nth-child(odd) {
    background-color: var(--body-light);
}
.mw-echo-ui-notificationBadgeButtonPopupWidget-popup > .oo-ui-popupWidget-popup .mw-echo-ui-placeholderItemWidget {
    background-color: inherit;
}
table.mw-interwikitable.body td.mw-interwikitable-local-yes {
    background-color: var(--table-yes-background);
    color: var(--table-yes-color);
}
.mw-protectedpages-unknown {
    color: var(--byline-color);
}
.watchlistredir,
.allpagesredirect {
    font-style: italic;
}
.allpagesredirect:after {
    color: var(--byline-color);
    content: " (redirect)";
}
.mw-apisandbox-toolbar {
    background: var(--body-main);
}
.oo-ui-menuOptionWidget .mw-apisandbox-flag {
    color: var(--byline-color);
}
tr.mw-abusefilter-list-disabled,
tr.mw-abusefilter-list-disabled td {
    color: var(--byline-color);
}
table.mw-abuselog-details {
    background: var(--wikitable-bg);
    border-color: var(--wikitable-border);
}
table.mw-abuselog-details th {
    background: var(--wikitable-header-bg);
}
table.mw-abuselog-details th,
table.mw-abuselog-details td {
    border-color: var(--wikitable-border);
}
.mw-abusefilter-log-hidden-entry {
    color: var(--subtle-color);
}
body td.mw-abusefilter-history-changed {
    background: var(--table-no-background);
}
div.mw-abusefilter-editor,
#mw-abusefilter-warn-preview,
#mw-abusefilter-disallow-preview {
    border-color: var(--ooui-input-border);
}
.mw-destfile-warning {
    border-color: var(--warningbox-border);
    color: var(--text-color);
    background-color: var(--warningbox-bg);
}
span.fileinput-button {
    background-color: var(--ooui-normal);
    border-color: var(--ooui-normal-border);
    color: var(--ooui-text);
}
ul.fileupload-results li.ful-success {
    background-color: var(--successbox-bg);
}
ul.fileupload-results li.ful-success a {
    color: var(--link-color);
}
ul.fileupload-results li.ful-error {
    background-color: var(--errorbox-bg);
}
#siteNotice {
    text-align: center;
}
#siteNotice ul {
    list-style: none;
}
.sitedir-ltr .mw-dismissable-notice-body {
    margin: 0;
}
.sitedir-ltr .mw-dismissable-notice-close {
    float: none;
    text-align: right;
}
.mw-dismissable-notice-close-parent {
    min-height: 1em;
}
.mmg-xpline:after {
    content: ', ';
}
.mmg-xpline:last-child:after {
    content: '';
}
.mmg-itemline {
    display: block;
}
.discussiontable th {
    background-color: var(--body-dark);
}
.discussiontable .topic,
.discussiontable .edited,
.discussiontable .edited-by,
.discussiontable .rg-archive {
    background-color: var(--body-mid);
}
.dpltable {
    margin-top: -30px;
}
.dpltable td {
    padding-left: 5px;
}
.dpltable,
.discussiontable {
    width: 100%;
}
.dpltable .topic,
.discussiontable .topic {
    width: 40%;
}
.dpltable .edited,
.discussiontable .edited,
.dpltable .edited-by,
.discussiontable .edited-by {
    width: 30%;
}
.dpltable .rg-archive,
.discussiontable .rg-archive {
    width: 20%;
}
body.ns-110 #ca-talk {
    display: none;
}
:root {
    --gemw-positive-color: #6bc71f;
    --gemw-unchanged-color: #3ea6e6;
    --gemw-negative-color: #ee4231;
    --gemw-historical-border-color: #000;
}
.gemw-container {
    max-width: 60em;
    margin: 4em auto;
}
.gemw-header {
    display: flex;
    border-left-width: 0.25em;
    border-left-style: solid;
    padding-left: 1em;
    margin-bottom: 3em;
}
.gemw-header.positive {
    border-color: var(--gemw-positive-color);
}
.gemw-header.negative {
    border-color: var(--gemw-negative-color);
}
.gemw-header.unchanged {
    border-color: var(--gemw-unchanged-color);
}
.gemw-header .gemw-section-left {
    flex: 1;
}
.gemw-header .gemw-name {
    font-size: 1.15em;
    font-weight: bold;
    margin-bottom: 0;
}
.gemw-header .gemw-name a {
    color: inherit;
}
.gemw-header .gemw-examine {
    color: var(--byline-color);
    font-size: 1.05em;
    font-style: italic;
    margin: 0 1em 1.25em 0;
}
.gemw-header .gemw-price {
    display: inline-block;
    font-size: 2.75em;
    font-weight: bold;
}
.gemw-header .gemw-price::after {
    content: ' coins';
    color: var(--byline-color);
    font-size: 1rem;
    font-weight: normal;
    word-spacing: 0.25em;
}
.gemw-header .gemw-change {
    display: inline-block;
    font-size: 1rem;
    font-weight: bold;
    margin-left: 2em;
    word-spacing: 0.5em;
}
.gemw-header .gemw-change img {
    vertical-align: baseline;
}
.gemw-header .gemw-section-right {
    text-align: right;
}
.gemw-header .gemw-updated {
    color: var(--byline-color);
    line-height: 1.5em;
    margin-top: 0.25em;
}
.gemw-header .gemw-time {
    color: var(--byline-color);
    font-weight: bold;
}
.gemw-body {
    display: flex;
}
.gemw-body .gemw-section-left {
    width: 40%;
    margin-right: 2em;
}
.gemw-body .gemw-section-left dl {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-bottom: -1.25em;
}
.gemw-body .gemw-section-left > div {
    margin-top: 2em;
}
.gemw-body .gemw-section-left a {
    color: var(--byline-color);
}
.gemw-body .gemw-property {
    width: 30%;
    border-top: 0.15em dotted var(--body-mid);
    padding-top: 0.25em;
    margin-bottom: 1.5em;
}
.gemw-body .gemw-property dt {
    color: var(--byline-color);
    font-weight: normal;
}
.gemw-body .gemw-property dd {
    font-weight: bold;
    margin: -0.25em 0 0;
}
.gemw-body .gemw-links {
    color: var(--byline-color);
    margin-bottom: 0.35em;
}
.gemw-body .gemw-section-right {
    width: 60%;
}
.gemw-body .gemw-chart {
    color: #eceeee;
    font-size: 5em;
    text-align: center;
    line-height: 5em;
    position: relative;
}
.gemw-body .gemw-chart .GEChartBox,
.gemw-body .gemw-chart .GEdatachart {
    position: relative;
}
.gemw-container.gemw-historical .gemw-header.positive,
.gemw-container.gemw-historical .gemw-header.negative,
.gemw-container.gemw-historical .gemw-header.neutral,
.gemw-container.gemw-historical .gemw-header.unchanged {
    border-color: var(--gemw-historical-border-color);
}
.gemw-container.gemw-historical .gemw-header .gemw-time .jsPurgeLink,
.gemw-container.gemw-historical .gemw-header .gemw-time > span.plainlinks {
    display: none;
}
.gemw-container.gemw-historical .gemw-header .gemw-section-left:after {
    content: "This is a historical item no longer available on the Grand Exchange. The data is preserved here as an archive.";
    font-style: italic;
}
#overlay {
    display: none;
    background-color: var(--ooui-window-background);
    height: auto;
    width: auto;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
}
#GEchartpopup g.highcharts-label text > a:visited,
.GEdatachart g.highcharts-label text > a:visited {
    fill: white;
}
#GEchartpopup {
    background: var(--ooui-interface);
    border: 1px solid var(--ooui-interface-border);
    border-radius: 2px;
    color: var(--ooui-text);
    position: fixed;
    left: 0;
    right: 0;
    top: 1em;
    bottom: 1em;
    margin: auto;
    padding: 1em;
    max-width: 975px;
    z-index: 52;
    overflow: auto;
}
#GEchartpopup #closepopup {
    float: right;
    margin-bottom: 5px;
    z-index: 100;
}
#GEchartpopup #itemstats {
    bottom: 50px;
    font-size: 11px;
    position: absolute;
    right: 45px;
    width: 200px;
    z-index: 10;
}
#GEchartpopup #itemstats caption {
    cursor: pointer;
    text-align: right;
}
#GEpopupchart {
    height: 500px;
}
.highcharts-container .highcharts-range-selector {
    font-size: 11px;
}
.GEPermLink {
    float: right;
    font-size: 14px;
}
.GEPermLink ~ .GEdatachart {
    clear: right;
}
form[id^="chartProperties"] button {
    margin: 3px;
}
.smallChart .highcharts-range-selector {
    display: none;
}
.smallChart .highcharts-button title + rect {
    display: none;
}
.smallChart .highcharts-title {
    white-space: nowrap !important;
}
.smallChart .zoomButton,
.smallChart svg > text:first-of-type,
.smallChart .highcharts-input-group {
    display: none;
}
.smallChart .highcharts-scrollbar,
.mediumChart .highcharts-scrollbar {
    display: none;
}
.highcharts-background,
.highcharts-plot-background {
    fill: transparent;
}
.highcharts-title,
.highcharts-subtitle {
    color: var(--text-color) !important;
}
.highcharts-axis-title {
    fill: var(--text-color) !important;
}
.highcharts-yaxis-grid .highcharts-grid-line,
.highcharts-tick,
.highcharts-axis-line {
    stroke: var(--ooui-normal-border);
}
.highcharts-axis-labels text,
.highcharts-range-selector-group text {
    color: var(--ooui-text) !important;
    fill: var(--ooui-text) !important;
}
.highcharts-label-box {
    stroke: var(--ooui-normal-border);
}
.highcharts-button-box {
    fill: var(--ooui-normal);
}
.highcharts-navigator-outline {
    stroke: var(--ooui-interface-border);
}
.highcharts-scrollbar-track {
    fill: transparent;
    stroke: var(--ooui-interface-border);
}
.highcharts-scrollbar-button,
.highcharts-scrollbar-thumb,
.highcharts-navigator-handle {
    fill: var(--ooui-normal);
    stroke: var(--ooui-normal-border);
}
.highcharts-scrollbar-arrow {
    fill: var(--ooui-text);
}
.highcharts-scrollbar-rifles {
    stroke: var(--ooui-text);
}
#t-print,
#t-permalink {
    display: none;
}
.jcConfig {
    display: none;
}
#filetoc {
    border-radius: 2px;
    background: var(--body-mid);
    border-color: transparent;
    margin: 0.5em auto;
    text-align: center;
    box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0, 0, 0, 0.1);
}
li.gallerybox div.thumb {
    border: none;
    background-color: var(--thumb-bg);
}
.smwfact {
    display: none;
}
.list-header {
    background-color: var(--body-mid);
    color: inherit;
}
.editOptions {
    color: var(--text-color);
    background-color: var(--sourceeditor-background-secondary);
    border-color: var(--sourceeditor-border);
}
.updatedmarker {
    background-color: #c3e8a3;
    color: #162e02;
}
.mw-json th,
.mw-json td {
    border-color: var(--wikitable-border);
}
.mw-json td {
    background: var(--wikitable-bg);
}
.mw-json th {
    background: var(--wikitable-header-bg);
}
}

Revision as of 22:37, 21 March 2024

/* General body styles */
body {
    background-color: #f9f9f9; /* Light grey background */
    color: #333333; /* Dark grey text */
}

/* Content area styles */
#content {
    background-color: #ffffff; /* White background */
    border: 1px solid #cccccc; /* Light grey border */
    padding: 20px; /* Spacing inside the content area */
}

/* Header styles */
#firstHeading {
    color: #006cb0; /* Custom color for the first heading */
    margin-bottom: 10px; /* Space below the heading */
}

/* Link styles */
a {
    color: #0645ad; /* Blue links */
}

a:visited {
    color: #0b0080; /* Darker blue for visited links */
}

/* Table styles */
table.wikitable {
    border-collapse: collapse; /* Collapse borders between table cells */
}

table.wikitable, table.wikitable th, table.wikitable td {
    border: 1px solid #aaaaaa; /* Light grey borders */
}

table.wikitable th {
    background-color: #f2f2f2; /* Light grey background for table headers */
    text-align: left; /* Align text to the left in headers */
}

/* Infobox styles */
.infobox {
    border: 1px solid #aaaaaa; /* Light grey border */
    background-color: #f9f9f9; /* Slightly grey background */
    padding: 10px; /* Spacing inside the infobox */
    width: 300px; /* Fixed width */
}

/* Custom classes for text styling */
.text-bold {
    font-weight: bold; /* Bold text */
}

.text-italic {
    font-style: italic; /* Italic text */
}

/* Adjustments for mobile view */
@media screen and (max-width: 768px) {
    #content {
        padding: 10px; /* Smaller padding on mobile devices */
    }

    .infobox {
        width: 100%; /* Full width on mobile devices */
    }
}