MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
LadderGoat (talk | contribs) No edit summary Tags: Manual revert Reverted |
LadderGoat (talk | contribs) Undo revision 1397 by LadderGoat (talk) Tag: Undo |
||
| (166 intermediate revisions by the same user not shown) | |||
| Line 3: | Line 3: | ||
=============================================*/ | =============================================*/ | ||
:root { | :root | ||
{ | |||
--bg-content: hsl(0, 0%, 15%); | --bg-content: hsl(0, 0%, 15%); | ||
--bg-infobox-header: hsl(0deg 0% 11.17%); | |||
--bg-infobox-alternating-header: hsl(0deg 0% 13.53%); | |||
--bg-infobox: hsl(0deg 0% 19.05%); | |||
--bg-main: hsl(0, 0%, 10%); | --bg-main: hsl(0, 0%, 10%); | ||
--bg-warningbox: hsla(64, 84%, 47%, 0.3); | --bg-warningbox: hsla(64, 84%, 47%, 0.3); | ||
| Line 12: | Line 16: | ||
--border-light: hsl(205, 87%, 82%); | --border-light: hsl(205, 87%, 82%); | ||
--border-dark: hsl(206, 50%, 23%); | --border-dark: hsl(206, 50%, 23%); | ||
--sc-light: hsl(280 | --sc-light: hsl(280, 74%, 74%); | ||
--text-primary: hsl(197, 100%, 50%); | --text-primary: hsl(197, 100%, 50%); | ||
--text-secondary: hsl(0, 0%, 100%); | --text-secondary: hsl(0, 0%, 100%); | ||
--wikitable-link: hsl(211, 63%, 60%); | --wikitable-link: hsl(211, 63%, 60%); | ||
--box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px; | |||
} | } | ||
| Line 24: | Line 29: | ||
=============================================*/ | =============================================*/ | ||
body { | body | ||
{ | |||
background-color: var(--bg-main); | background-color: var(--bg-main); | ||
font-size: 15px; | font-size: 15px; | ||
| Line 30: | Line 36: | ||
} | } | ||
h1, | h1, | ||
h2 | h2 | ||
{ | |||
border-bottom: 1px solid var(--bg-wikitable); | border-bottom: 1px solid var(--bg-wikitable); | ||
} | } | ||
h1, | h1, | ||
h2, | h2, | ||
h3, | h3, | ||
h4, | h4, | ||
h5, | h5, | ||
h6 { | h6 | ||
{ | |||
color: var(--text-primary); | color: var(--text-primary); | ||
} | } | ||
.mw-body h1, | |||
.mw-body-content h1, | |||
.mw-body-content h2, | |||
.mw-body-content h3, | |||
.mw-body-content h4, | |||
.mw-body-content h5, | |||
.mw-body-content h6 | |||
{ | |||
font-family: 'PT Serif', 'Palatino', 'Georgia', serif; | |||
} | |||
.vector-body h3, | |||
.vector-body h4 | |||
{ | |||
font-weight: bold; | |||
} | } | ||
a, | a, | ||
a.new, | a.new, | ||
a.new:visited, | a.new:visited, | ||
a:hover, | a:hover, | ||
a:visited { | a:visited | ||
{ | |||
color: var(--wikitable-link); | color: var(--wikitable-link); | ||
} | } | ||
.mw-body { | a:hover | ||
{ | |||
text-shadow: 0 2px 15px; | |||
} | |||
.mw-body | |||
{ | |||
border-color: var(--bg-wikitable); | border-color: var(--bg-wikitable); | ||
background-color: var(--bg-content); | background-color: var(--bg-content); | ||
| Line 63: | Line 90: | ||
} | } | ||
#mw-page-base { | #mw-page-base | ||
{ | |||
background: none; | background: none; | ||
} | |||
/* Main page styling */ | |||
.tile-row | |||
{ | |||
display: flex; | |||
flex-flow: row wrap; | |||
gap: 0.9rem; | |||
max-width: 80%; | |||
margin: 1em auto; | |||
} | |||
.tile-halves | |||
{ | |||
display: flex; | |||
flex-flow: row wrap; | |||
border: 1px solid var(--border-dark); | |||
background: var(--bg-content); | |||
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; | |||
} | |||
.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(--bg-main); | |||
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 span | |||
{ | |||
width: 100%; | |||
} | |||
.tile-top.tile-image img | |||
{ | |||
width: 100%; | |||
object-fit: cover; | |||
max-height: 200px; | |||
transition: 0.4s ease-out; | |||
} | |||
.tile-bottom | |||
{ | |||
background: var(--bg-wikitable-header); | |||
border-top: 1px solid var(--border-dark); | |||
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 a | |||
{ | |||
color: #4c4c4c; | |||
font-weight: bold; | |||
text-align: right; | |||
} | |||
.mainpage-header { | |||
font-size: 3em; | |||
font-weight: 600; | |||
margin: 1em auto; | |||
text-transform: uppercase; | |||
text-shadow: 2px 2px 4px rgba(16, 16, 16, 0.6), /* Soft but distinct shadow */ | |||
2px 3px 6px rgba(16, 16, 16, 0.5), /* Slightly larger shadow for depth */ | |||
3px 5px 10px rgba(16, 16, 16, 0.4), /* Further shadow for a more 3D feel */ | |||
5px 8px 15px rgba(16, 16, 16, 0.3), /* Extended shadow for smooth fade */ | |||
7px 12px 20px rgba(16, 16, 16, 0.2); /* Smooth, extended fade out */ | |||
} | |||
.mainpage-contents | |||
{ | |||
grid-area: content; | |||
grid-template-columns: repeat(6, 1fr); | |||
} | |||
.mainpage-left | |||
{ | |||
display: flex; | |||
flex-flow: column wrap; | |||
grid-area: left; | |||
flex: 2; | |||
} | |||
.mainpage-left > * | |||
{ | |||
margin: 0 0 0.9em; | |||
} | |||
.mainpage-right | |||
{ | |||
grid-area: right; | |||
flex: 1; | |||
display: flex; | |||
flex-flow: column wrap; | |||
} | |||
.mainpage-contents .tile-halves | |||
{ | |||
flex: 1; | |||
} | |||
.mainpage-contents .tile-top | |||
{ | |||
position: relative; | |||
} | |||
.mainpage-contents.tile-row | |||
{ | |||
margin: 1em auto; | |||
} | |||
.mainpage-contents h2 | |||
{ | |||
margin: 0; | |||
padding: 0; | |||
} | |||
.mainpage-contents .tile-bottom.link-button a | |||
{ | |||
padding: 0.75em 0.2em; | |||
} | |||
.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-secondary); | |||
} | |||
.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; | |||
} | } | ||
| Line 73: | Line 296: | ||
=============================================*/ | =============================================*/ | ||
.mw-editform #editpage-copywarn | .mw-editform #editpage-copywarn | ||
{ | { | ||
padding: 1em; | padding: 1em; | ||
} | } | ||
.mw-message-box | .mw-message-box, | ||
.oo-ui-messageWidget.oo-ui-flaggedElement-success:not(.oo-ui-messageWidget-block) | |||
{ | { | ||
color: var(--text-secondary); | color: var(--text-secondary); | ||
} | } | ||
.mw-message-box-warning | .mw-message-box-warning | ||
{ | { | ||
background-color: var(--bg-warningbox); | background-color: var(--bg-warningbox); | ||
| Line 89: | Line 313: | ||
} | } | ||
.mw-message-box-error | .mw-message-box-error | ||
{ | { | ||
background-color: hsl(2.84deg 100% 50% / 21.96%); | background-color: hsl(2.84deg 100% 50% / 21.96%); | ||
} | } | ||
.mw-notification { | .mw-notification | ||
{ | |||
background-color: var(--bg-main); | background-color: var(--bg-main); | ||
border: 1px solid var(--border-dark); | border: 1px solid var(--border-dark); | ||
} | } | ||
/*===== End of Notification styling ======*/ | /*===== End of Notification styling ======*/ | ||
/*============================================= | /*============================================= | ||
= TOC & Wikitable styling = | = TOC & Wikitable styling = | ||
=============================================*/ | =============================================*/ | ||
.toctogglelabel, | .toctogglelabel, | ||
.mw-parser-output a.extiw, | .mw-parser-output a.extiw, | ||
.mw-parser-output a.external, | .mw-parser-output a.external, | ||
.mw-parser-output .wikitable tbody tr td a, | .mw-parser-output .wikitable tbody tr td a, | ||
.mw-collapsible-toggle-default .mw-collapsible-text, | .mw-collapsible-toggle-default .mw-collapsible-text, | ||
.mw-parser-output a.extiw:visited, | .mw-parser-output a.extiw:visited, | ||
.mw-parser-output a.external:visited { | .mw-parser-output a.external:visited | ||
{ | |||
color: var(--wikitable-link); | color: var(--wikitable-link); | ||
} | } | ||
.mw- | .mw-content-ltr .toc ul, | ||
.mw-content-rtl .mw-content-ltr .toc ul | |||
{ | |||
text-align: left; | |||
} | } | ||
.toc { | .toc | ||
font-size: 0. | { | ||
font-size: 0.93em; | |||
background: var(--bg-wikitable); | background: var(--bg-wikitable); | ||
margin-top: 1em; | margin-top: 1em; | ||
padding: 0; | padding: 0; | ||
border: | border-color: var(--border-dark); | ||
box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0, 0, 0, 0.1); | box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0, 0, 0, 0.1); | ||
clear: left; | clear: left; | ||
} | } | ||
.toc .toctitle { | .toc .toctitle | ||
{ | |||
background: var(--bg-wikitable-header); | background: var(--bg-wikitable-header); | ||
padding: 0.25em 1em; | |||
padding | |||
} | } | ||
.toc h2 { | .toc h2 | ||
{ | |||
color: var(--text-secondary); | color: var(--text-secondary); | ||
} | } | ||
.mw-rcfilters-ui-changesListWrapperWidget .mw-changeslist-legend { | .mw-rcfilters-ui-changesListWrapperWidget .mw-changeslist-legend | ||
{ | |||
background-color: var(--bg-wikitable); | background-color: var(--bg-wikitable); | ||
border: 1px solid var(--border-dark); | border: 1px solid var(--border-dark); | ||
} | } | ||
.tocnumber { | .tocnumber | ||
{ | |||
display: none; | display: none; | ||
} | } | ||
.toc ul { | .toc ul | ||
{ | |||
list-style: none; | list-style: none; | ||
margin: 0.3em 0; | |||
padding: 0; | |||
text-align: left; | |||
padding | } | ||
.toc > ul | |||
{ | |||
line-height: 1.8em; | |||
padding: 0.75em 1.75em; | |||
margin: 0; | |||
} | } | ||
.toc ul ul { | .toc ul ul | ||
{ | |||
border-left: 1px dotted #596e96; | border-left: 1px dotted #596e96; | ||
padding-left: 0.5em; | padding-left: 0.5em; | ||
} | } | ||
#filetoc { | #filetoc | ||
{ | |||
background-color: var(--bg-wikitable); | background-color: var(--bg-wikitable); | ||
} | } | ||
em { | em | ||
{ | |||
font-style: normal; | font-style: normal; | ||
background: #555555; | background: #555555; | ||
| Line 179: | Line 419: | ||
} | } | ||
.wikitable { | .wikitable | ||
{ | |||
color: var(--text-secondary); | color: var(--text-secondary); | ||
border: 1px solid var(--bg-content); | border: 1px solid var(--bg-content); | ||
} | } | ||
.wikitable tr { | .wikitable tr | ||
{ | |||
background-color: var(--bg-wikitable); | background-color: var(--bg-wikitable); | ||
} | } | ||
.wikitable > tr > th, | .wikitable > tr > th, | ||
.wikitable > tbody > tr > th, | .wikitable > tbody > tr > th, | ||
.wikitable > thead > tr > th { | .wikitable > thead > tr > th | ||
{ | |||
background-color: var(--bg-wikitable-header); | background-color: var(--bg-wikitable-header); | ||
} | } | ||
.wikitable > tr > th, | .wikitable > tr > th, | ||
.wikitable > tr > td, | .wikitable > tr > td, | ||
.wikitable > tbody > tr > th, | .wikitable > tbody > tr > th, | ||
.wikitable > tbody > tr > td, | .wikitable > tbody > tr > td, | ||
.wikitable > thead > tr > th { | .wikitable > thead > tr > th | ||
{ | |||
border: 1px solid var(--bg-content); | border: 1px solid var(--bg-content); | ||
} | } | ||
.wikitable img { | .wikitable img | ||
{ | |||
margin: auto; | margin: auto; | ||
padding: 3px 0; | padding: 3px 0; | ||
} | } | ||
.wikitable th.headerSort { | .wikitable th.headerSort | ||
background-image: url( | { | ||
background-image: url(images/icons/Sort_both.png); | |||
background-repeat: no-repeat; | background-repeat: no-repeat; | ||
background-position: right; | background-position: right 6px center; | ||
background-size: 10px; | |||
} | } | ||
.wikitable th.headerSortUp { | .wikitable th.headerSortUp | ||
background-image: url( | { | ||
background-image: url(images/icons/Sort_up.png); | |||
background-repeat: no-repeat; | background-repeat: no-repeat; | ||
background-position: right; | background-position: right 6px center; | ||
background-size: 10px; | |||
} | } | ||
.wikitable th.headerSortDown { | .wikitable th.headerSortDown | ||
background-image: url( | { | ||
background-image: url(images/icons/Sort_down.png); | |||
background-repeat: no-repeat; | background-repeat: no-repeat; | ||
background-position: right; | background-position: right 6px center; | ||
background-size: 10px; | |||
} | } | ||
| Line 233: | Line 482: | ||
=============================================*/ | =============================================*/ | ||
fieldset { | fieldset | ||
{ | |||
border: 1px solid var(--bg-wikitable); | border: 1px solid var(--bg-wikitable); | ||
} | } | ||
.wikiEditor-ui-toolbar { | .wikiEditor-ui-toolbar | ||
{ | |||
background-color: var(--bg-main); | background-color: var(--bg-main); | ||
} | } | ||
.wikiEditor-ui-toolbar .tabs span.tab a, | .wikiEditor-ui-toolbar .tabs span.tab a, | ||
.wikiEditor-ui-toolbar .tabs span.tab a.current, | .wikiEditor-ui-toolbar .tabs span.tab a.current, | ||
.wikiEditor-ui-toolbar .tabs span.tab a.current:visited, | .wikiEditor-ui-toolbar .tabs span.tab a.current:visited, | ||
.wikiEditor-ui-toolbar .group .tool-select .label { | .wikiEditor-ui-toolbar .group .tool-select .label, | ||
.wikiEditor-ui-toolbar .group .tool-select .options .option | |||
{ | |||
color: var(--text-secondary); | color: var(--text-secondary); | ||
} | |||
.wikiEditor-ui-toolbar .booklet > .index > .current, .wikiEditor-ui-toolbar .booklet > .index > :hover, | |||
.wikiEditor-ui-toolbar .group .tool-select .menu .options .option:hover, | |||
.oo-ui-popupToolGroup.oo-ui-popupToolGroup-active > .oo-ui-popupToolGroup-handle, | |||
.oo-ui-popupToolGroup.oo-ui-widget-enabled > .oo-ui-popupToolGroup-handle:hover, | |||
.oo-ui-popupToolGroup-tools, | |||
.oo-ui-tool.oo-ui-widget-enabled > .oo-ui-tool-link:active, | |||
.oo-ui-tool.oo-ui-widget-enabled.oo-ui-tool-active > .oo-ui-tool-link, | |||
.oo-ui-tool.oo-ui-widget-enabled.oo-ui-popupToolGroup-active > .oo-ui-tool-link, | |||
.oo-ui-popupToolGroup.oo-ui-widget-enabled > .oo-ui-popupToolGroup-handle:active | |||
{ | |||
background-color: var(--bg-content); | |||
color: var(--border-light); | |||
} | |||
.oo-ui-listToolGroup-tools .oo-ui-tool-active.oo-ui-widget-enabled .oo-ui-tool-link .oo-ui-tool-title | |||
{ | |||
color: var(--border-light); | |||
} | |||
.wikiEditor-ui-toolbar .group .tool-select .options | |||
{ | |||
background-color: var(--bg-main); | |||
border: 1px solid var(--border-dark); | |||
} | } | ||
.mw-input input, | .mw-input input, | ||
.mw-input textarea { | .mw-input textarea | ||
{ | |||
background-color: var(--bg-wikitable); | background-color: var(--bg-wikitable); | ||
border: 1px solid var(--border-dark); | border: 1px solid var(--border-dark); | ||
} | } | ||
.wikiEditor-ui-toolbar .tabs span.tab a::before { | .wikiEditor-ui-toolbar .tabs span.tab a::before | ||
{ | |||
width: 14px; | width: 14px; | ||
height: 30px; | height: 30px; | ||
} | } | ||
.wikiEditor-ui-toolbar .group, | .wikiEditor-ui-toolbar .group, .wikiEditor-ui-toolbar .section-secondary .group | ||
.wikiEditor-ui-toolbar .section-secondary .group { | { | ||
border-color: var(--border-dark); | border-color: var(--border-dark); | ||
} | } | ||
.wikiEditor-ui-toolbar .group .label { | .wikiEditor-ui-toolbar .group .label | ||
{ | |||
color: var(--text-primary); | color: var(--text-primary); | ||
} | } | ||
.codeEditor-status { | .codeEditor-status | ||
{ | |||
background-color: var(--bg-wikitable-header); | background-color: var(--bg-wikitable-header); | ||
} | } | ||
.wikiEditor-ui .wikiEditor-ui-view { | .wikiEditor-ui .wikiEditor-ui-view | ||
{ | |||
border: 1px solid var(--border-dark); | border: 1px solid var(--border-dark); | ||
} | } | ||
.wikiEditor-ui-toolbar .page-characters div span { | .wikiEditor-ui-toolbar .page-characters div span | ||
{ | |||
border: 1px solid var(--border-dark); | border: 1px solid var(--border-dark); | ||
color: var(--border-light); | color: var(--border-light); | ||
| Line 282: | Line 566: | ||
.wikiEditor-ui-toolbar .group, | .wikiEditor-ui-toolbar .group, | ||
.section-secondary .group { | .section-secondary .group | ||
{ | |||
border-color: var(--border-dark); | border-color: var(--border-dark); | ||
} | } | ||
.wikiEditor-ui-toolbar .sections .section { | .wikiEditor-ui-toolbar .sections .section | ||
{ | |||
border-top: 1px solid var(--border-dark); | border-top: 1px solid var(--border-dark); | ||
} | } | ||
.wikiEditor-ui .wikiEditor-ui-top { | .wikiEditor-ui .wikiEditor-ui-top | ||
{ | |||
border-bottom: 1px solid var(--border-dark); | border-bottom: 1px solid var(--border-dark); | ||
} | } | ||
.codeEditor-status { | .codeEditor-status | ||
{ | |||
border: none; | border: none; | ||
} | } | ||
.codeEditor-status-message { | .codeEditor-status-message | ||
{ | |||
border-left: none; | border-left: none; | ||
border-right: none; | border-right: none; | ||
} | } | ||
.ace_scrollbar-inner { | .ace_scrollbar-inner | ||
{ | |||
background: var(--bg-content); | background: var(--bg-content); | ||
} | } | ||
.ace-tm .ace-comment { | .ace-tm .ace-comment | ||
{ | |||
color: hsl(0deg 0% 53.69%); | color: hsl(0deg 0% 53.69%); | ||
} | } | ||
.ace-tm, | .ace-tm, | ||
.ace_support.ace_function { | .ace_support.ace_function | ||
{ | |||
background-color: var(--bg-content); | background-color: var(--bg-content); | ||
color: hsl(0deg 100% 72.24%); | color: hsl(0deg 100% 72.24%); | ||
} | } | ||
.ace-tm .ace_constant, | .mw-highlight .nb | ||
{ | |||
color: hsl(0deg 100% 72.24%); | |||
} | |||
.mw-highlight .nt, | |||
.mw-highlight .k, | |||
.ace-tm .ace_constant, | |||
.ace-tm .ace_support.ace_type, | .ace-tm .ace_support.ace_type, | ||
.ace-tm .ace_support.ace_class { | .ace-tm .ace_support.ace_class | ||
{ | |||
color: var(--text-primary); | color: var(--text-primary); | ||
} | } | ||
.ace-tm .ace_support.ace_constant { | .ace-tm .ace_support.ace_constant | ||
{ | |||
color: hsl(39.59deg 100% 80.98%); | color: hsl(39.59deg 100% 80.98%); | ||
font-style: italic; | font-style: italic; | ||
} | } | ||
.ace-tm .ace_gutter { | .ace-tm .ace_gutter | ||
{ | |||
background: var(--bg-wikitable-header); | background: var(--bg-wikitable-header); | ||
} | } | ||
.ace-tm .ace_string, | .mw-highlight .nd, | ||
.ace-tm .ace_variable { | .mw-highlight .nc, | ||
.mw-highlight .kc, | |||
.ace-tm .ace_string, | |||
.ace-tm .ace_variable | |||
{ | |||
color: hsl(36.52deg 100% 68.79%); | color: hsl(36.52deg 100% 68.79%); | ||
} | } | ||
.ace-tm .ace_gutter-active-line { | .ace-tm .ace_gutter-active-line | ||
{ | |||
background-color: var(--border-dark); | background-color: var(--border-dark); | ||
} | } | ||
.ace-tm .ace_constant.ace_numeric { | .mw-highlight .mi, | ||
.mw-highlight .mf, | |||
.ace-tm .ace_constant.ace_numeric | |||
{ | |||
color: var(--sc-light); | color: var(--sc-light); | ||
} | } | ||
.ace_gutter-cell { | .ace_gutter-cell, | ||
.mw-highlight .sx, | |||
.mw-highlight .nv | |||
{ | |||
color: var(--text-secondary); | color: var(--text-secondary); | ||
} | } | ||
.ace-tm .ace_print-margin { | .ace-tm .ace_print-margin | ||
{ | |||
background: none; | background: none; | ||
} | } | ||
.ace-tm .ace_storage, .ace-tm .ace_keyword { | .mw-highlight .kt, | ||
.mw-highlight .nn, | |||
.ace-tm .ace_storage, | |||
.ace-tm .ace_keyword | |||
{ | |||
color: hsl(36.52deg 100% 53.7%); | color: hsl(36.52deg 100% 53.7%); | ||
} | } | ||
span.ace_punctuation.ace_operator { | span.ace_punctuation.ace_operator | ||
{ | |||
color: dimgray; | color: dimgray; | ||
} | } | ||
span.ace_paren.ace_lparen, | span.ace_paren.ace_lparen, | ||
span.ace_paren.ace_rparen { | span.ace_paren.ace_rparen, | ||
pre > span > span.p | |||
{ | |||
color: hsl(50.37deg 100% 56.29%); | color: hsl(50.37deg 100% 56.29%); | ||
} | } | ||
.mw-editform #editpage-copywarn { | .mw-editform #editpage-copywarn | ||
{ | |||
padding: 1em 0; | padding: 1em 0; | ||
} | } | ||
.editOptions { | .editOptions | ||
{ | |||
background-color: hsl(0deg 0% 11.17%); | background-color: hsl(0deg 0% 11.17%); | ||
color: var(--text-secondary); | color: var(--text-secondary); | ||
| Line 380: | Line 703: | ||
.oo-ui-icon-bold, | .oo-ui-icon-bold, | ||
.mw-ui-icon-bold:before { | .mw-ui-icon-bold:before | ||
{ | |||
background-image: url(images/code-editor-icons/Bold.svg); | background-image: url(images/code-editor-icons/Bold.svg); | ||
} | } | ||
.oo-ui-icon-italic, | .oo-ui-icon-italic, | ||
.mw-ui-icon-italic:before { | .mw-ui-icon-italic:before | ||
{ | |||
background-image: url(images/code-editor-icons/Italic.svg); | background-image: url(images/code-editor-icons/Italic.svg); | ||
} | } | ||
.oo-ui-icon-link, | .oo-ui-icon-link, | ||
.mw-ui-icon-link:before { | .mw-ui-icon-link:before | ||
{ | |||
background-image: url(images/code-editor-icons/Hyperlink.svg); | background-image: url(images/code-editor-icons/Hyperlink.svg); | ||
} | } | ||
.oo-ui-icon-image, | .oo-ui-icon-image, | ||
.mw-ui-icon-image:before { | .mw-ui-icon-image:before | ||
{ | |||
background-image: url(images/code-editor-icons/Image.svg); | background-image: url(images/code-editor-icons/Image.svg); | ||
} | } | ||
.oo-ui-icon-reference, | .oo-ui-icon-reference, | ||
.mw-ui-icon-reference:before { | .mw-ui-icon-reference:before | ||
{ | |||
background-image: url(images/code-editor-icons/Reference.svg); | background-image: url(images/code-editor-icons/Reference.svg); | ||
} | } | ||
.oo-ui-icon-article, | .oo-ui-icon-article, | ||
.mw-ui-icon-article:before { | .mw-ui-icon-article:before | ||
{ | |||
background-image: url(images/code-editor-icons/Article.svg); | background-image: url(images/code-editor-icons/Article.svg); | ||
} | } | ||
.oo-ui-icon-edit, | .oo-ui-icon-edit, | ||
.mw-ui-icon-edit:before { | .mw-ui-icon-edit:before | ||
{ | |||
background-image: url(images/code-editor-icons/Edit.svg); | background-image: url(images/code-editor-icons/Edit.svg); | ||
} | } | ||
.oo-ui-icon-listBullet, | .oo-ui-icon-listBullet, | ||
.mw-ui-icon-listBullet:before { | .mw-ui-icon-listBullet:before | ||
{ | |||
background-image: url(images/code-editor-icons/Bullet_list.svg); | background-image: url(images/code-editor-icons/Bullet_list.svg); | ||
} | } | ||
.oo-ui-icon-listNumbered, | .oo-ui-icon-listNumbered, | ||
.mw-ui-icon-listNumbered:before { | .mw-ui-icon-listNumbered:before | ||
{ | |||
background-image: url(images/code-editor-icons/Numbered_list.svg); | background-image: url(images/code-editor-icons/Numbered_list.svg); | ||
} | } | ||
.oo-ui-icon-noWikiText, | .oo-ui-icon-noWikiText, | ||
.mw-ui-icon-noWikiText:before { | .mw-ui-icon-noWikiText:before | ||
{ | |||
background-image: url(images/code-editor-icons/No_WikiText.svg); | background-image: url(images/code-editor-icons/No_WikiText.svg); | ||
} | } | ||
.oo-ui-icon-newline, | .oo-ui-icon-newline, | ||
.mw-ui-icon-newline:before { | .mw-ui-icon-newline:before | ||
{ | |||
background-image: url(images/code-editor-icons/New_line.svg); | background-image: url(images/code-editor-icons/New_line.svg); | ||
} | } | ||
.oo-ui-icon-bigger, | .oo-ui-icon-bigger, | ||
.mw-ui-icon-bigger:before { | .mw-ui-icon-bigger:before | ||
{ | |||
background-image: url(images/code-editor-icons/Bigger.svg); | background-image: url(images/code-editor-icons/Bigger.svg); | ||
} | } | ||
.oo-ui-icon-smaller, | .oo-ui-icon-smaller, | ||
.mw-ui-icon-smaller:before { | .mw-ui-icon-smaller:before | ||
{ | |||
background-image: url(images/code-editor-icons/Smaller.svg); | background-image: url(images/code-editor-icons/Smaller.svg); | ||
} | } | ||
| Line 446: | Line 782: | ||
.oo-ui-icon-superscript, | .oo-ui-icon-superscript, | ||
.mw-ui-icon-superscript:before { | .mw-ui-icon-superscript:before | ||
{ | |||
background-image: url(images/code-editor-icons/Superscript.svg); | background-image: url(images/code-editor-icons/Superscript.svg); | ||
} | } | ||
.oo-ui-icon-subscript, | .oo-ui-icon-subscript, | ||
.mw-ui-icon-subscript:before { | .mw-ui-icon-subscript:before | ||
{ | |||
background-image: url(images/code-editor-icons/Subscript.svg); | background-image: url(images/code-editor-icons/Subscript.svg); | ||
} | } | ||
.oo-ui-icon-imageGallery, | .oo-ui-icon-imageGallery, | ||
.mw-ui-icon-imageGallery:before { | .mw-ui-icon-imageGallery:before | ||
{ | |||
background-image: url(images/code-editor-icons/Image_gallery.svg); | background-image: url(images/code-editor-icons/Image_gallery.svg); | ||
} | } | ||
.oo-ui-icon-articleRedirect, | .oo-ui-icon-articleRedirect, | ||
.mw-ui-icon-articleRedirect:before { | .mw-ui-icon-articleRedirect:before | ||
{ | |||
background-image: url(images/code-editor-icons/Article_redirect.svg); | background-image: url(images/code-editor-icons/Article_redirect.svg); | ||
} | } | ||
.oo-ui-icon-table, | .oo-ui-icon-table, | ||
.mw-ui-icon-table:before { | .mw-ui-icon-table:before | ||
{ | |||
background-image: url(images/code-editor-icons/Table.svg); | background-image: url(images/code-editor-icons/Table.svg); | ||
} | } | ||
.oo-ui-icon-articleSearch, | .oo-ui-icon-articleSearch, | ||
.mw-ui-icon-articleSearch:before { | .mw-ui-icon-articleSearch:before | ||
{ | |||
background-image: url(images/code-editor-icons/Article_search.svg); | background-image: url(images/code-editor-icons/Article_search.svg); | ||
} | } | ||
.oo-ui-icon-markup, | .oo-ui-icon-markup, | ||
.mw-ui-icon-markup:before { | .mw-ui-icon-markup:before | ||
{ | |||
background-image: url(images/code-editor-icons/Markup.svg); | background-image: url(images/code-editor-icons/Markup.svg); | ||
} | } | ||
.oo-ui-icon-indent, | .oo-ui-icon-indent, | ||
.mw-ui-icon-indent:before { | .mw-ui-icon-indent:before | ||
{ | |||
background-image: url(images/code-editor-icons/Indent.svg); | background-image: url(images/code-editor-icons/Indent.svg); | ||
} | } | ||
.oo-ui-icon-outdent, | .oo-ui-icon-outdent, | ||
.mw-ui-icon-outdent:before { | .mw-ui-icon-outdent:before | ||
{ | |||
background-image: url(images/code-editor-icons/Outdent.svg); | background-image: url(images/code-editor-icons/Outdent.svg); | ||
} | } | ||
.oo-ui-icon-pilcrow { | .oo-ui-icon-pilcrow | ||
{ | |||
background-image: url(images/code-editor-icons/Pilcrow.svg); | background-image: url(images/code-editor-icons/Pilcrow.svg); | ||
} | } | ||
.oo-ui-icon-wrapping { | .oo-ui-icon-wrapping | ||
{ | |||
background-image: url(images/code-editor-icons/Wrapping.svg); | background-image: url(images/code-editor-icons/Wrapping.svg); | ||
} | } | ||
.oo-ui-icon-gotoLine { | .oo-ui-icon-gotoLine | ||
{ | |||
background-image: url(images/code-editor-icons/Go_to_line.svg); | background-image: url(images/code-editor-icons/Go_to_line.svg); | ||
} | } | ||
.oo-ui-icon-play, | .oo-ui-icon-play, | ||
.mw-ui-icon-play:before { | .mw-ui-icon-play:before | ||
{ | |||
background-image: url(images/code-editor-icons/Play.svg); | background-image: url(images/code-editor-icons/Play.svg); | ||
} | } | ||
.oo-ui-icon-settings, | .oo-ui-icon-settings, | ||
.mw-ui-icon-settings:before { | .mw-ui-icon-settings:before | ||
{ | |||
background-image: url(images/code-editor-icons/Settings.svg); | background-image: url(images/code-editor-icons/Settings.svg); | ||
} | } | ||
.oo-ui-icon-tag, | .oo-ui-icon-tag, | ||
.mw-ui-icon-tag:before { | .mw-ui-icon-tag:before | ||
{ | |||
background-image: url(images/code-editor-icons/Tag.svg); | background-image: url(images/code-editor-icons/Tag.svg); | ||
} | } | ||
.oo-ui-icon-bookmark, | .oo-ui-icon-bookmark, | ||
.mw-ui-icon-bookmark:before { | .mw-ui-icon-bookmark:before | ||
{ | |||
background-image: url(images/code-editor-icons/Bookmark.svg); | background-image: url(images/code-editor-icons/Bookmark.svg); | ||
} | } | ||
.oo-ui-icon-trash, | .oo-ui-icon-trash, | ||
.mw-ui-icon-trash:before { | .mw-ui-icon-trash:before | ||
{ | |||
background-image: url(images/code-editor-icons/Trash.svg); | background-image: url(images/code-editor-icons/Trash.svg); | ||
} | } | ||
#mw-indicator-mw-helplink a { | #mw-indicator-mw-helplink a | ||
{ | |||
background-image: url(images/code-editor-icons/Help_notice.svg); | background-image: url(images/code-editor-icons/Help_notice.svg); | ||
} | } | ||
.oo-ui-icon-menu, | .oo-ui-icon-menu, | ||
.mw-ui-icon-menu:before { | .mw-ui-icon-menu:before | ||
{ | |||
background-image: url(images/code-editor-icons/Menu.svg); | background-image: url(images/code-editor-icons/Menu.svg); | ||
} | } | ||
.vector-menu-tabs #ca-unwatch.icon a::before { | .vector-menu-tabs #ca-unwatch.icon a::before | ||
{ | |||
background-image: url(images/code-editor-icons/Unwatch_icon.svg); | background-image: url(images/code-editor-icons/Unwatch_icon.svg); | ||
} | } | ||
.vector-menu-tabs #ca-unwatch.icon a:hover::before { | .vector-menu-tabs #ca-unwatch.icon a:hover::before | ||
{ | |||
background-image: url(images/code-editor-icons/Unwatch_icon_hover.svg); | background-image: url(images/code-editor-icons/Unwatch_icon_hover.svg); | ||
} | } | ||
.oo-ui-textInputWidget .oo-ui-inputWidget-input { | .oo-ui-textInputWidget .oo-ui-inputWidget-input | ||
{ | |||
background-color: var(--bg-wikitable-header); | background-color: var(--bg-wikitable-header); | ||
color: var(--border-light); | color: var(--border-light); | ||
| Line 550: | Line 908: | ||
} | } | ||
.oo-ui-checkboxInputWidget [type='checkbox'] + span { | .oo-ui-checkboxInputWidget [type='checkbox'] + span | ||
{ | |||
background-color: var(--bg-wikitable-header); | background-color: var(--bg-wikitable-header); | ||
border-color: var(--border-dark); | border-color: var(--border-dark); | ||
} | } | ||
.oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button { | .oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button | ||
{ | |||
background-color: var(--bg-wikitable-header); | background-color: var(--bg-wikitable-header); | ||
color: var(--border-light); | color: var(--border-light); | ||
| Line 563: | Line 923: | ||
.ext-WikiEditor-realtimepreview-textbox#wpTextbox1, | .ext-WikiEditor-realtimepreview-textbox#wpTextbox1, | ||
.mw-editform .ext-WikiEditor-realtimepreview-textbox#wpTextbox1, | .mw-editform .ext-WikiEditor-realtimepreview-textbox#wpTextbox1, | ||
.oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined .oo-ui-tagItemWidget.oo-ui-widget-enabled { | .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined .oo-ui-tagItemWidget.oo-ui-widget-enabled | ||
{ | |||
background-color: var(--bg-content); | background-color: var(--bg-content); | ||
color: var(--text-secondary); | color: var(--text-secondary); | ||
} | } | ||
.oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined { | .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined | ||
{ | |||
background-color: var(--bg-main); | background-color: var(--bg-main); | ||
} | } | ||
.mw-rcfilters-collapsed .mw-rcfilters-ui-filterTagMultiselectWidget { | .mw-rcfilters-collapsed .mw-rcfilters-ui-filterTagMultiselectWidget | ||
{ | |||
border-bottom: 1px solid var(--border-dark); | border-bottom: 1px solid var(--border-dark); | ||
} | } | ||
.mw-rcfilters-ui-cell.mw-rcfilters-ui-filterTagMultiselectWidget-views-select { | .mw-rcfilters-ui-cell.mw-rcfilters-ui-filterTagMultiselectWidget-views-select | ||
{ | |||
background-color: var(--bg-wikitable-header); | background-color: var(--bg-wikitable-header); | ||
} | } | ||
.mw-rcfilters-ui-filterTagMultiselectWidget-wrapper-content-title { | .mw-rcfilters-ui-filterTagMultiselectWidget-wrapper-content-title | ||
{ | |||
color: var(--text-secondary); | color: var(--text-secondary); | ||
} | } | ||
.oo-ui-buttonElement-frameless.oo-ui-widget-enabled > .oo-ui-buttonElement-button { | .oo-ui-buttonElement-frameless.oo-ui-widget-enabled > .oo-ui-buttonElement-button | ||
{ | |||
color: var(--border-light); | color: var(--border-light); | ||
} | } | ||
.oo-ui-buttonElement-frameless.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive > .oo-ui-buttonElement-button { | .oo-ui-buttonElement-frameless.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive > .oo-ui-buttonElement-button | ||
{ | |||
color: var(--text-primary); | color: var(--text-primary); | ||
} | } | ||
.mw-rcfilters-ui-filterTagMultiselectWidget.oo-ui-widget-enabled .oo-ui-tagMultiselectWidget-handle { | .mw-rcfilters-ui-filterTagMultiselectWidget.oo-ui-widget-enabled .oo-ui-tagMultiselectWidget-handle | ||
{ | |||
background-color: var(--bg-main); | background-color: var(--bg-main); | ||
border: 1px solid var(--border-dark); | border: 1px solid var(--border-dark); | ||
| Line 598: | Line 966: | ||
} | } | ||
.mw-rcfilters-ui-filterTagMultiselectWidget-views-select-widget.oo-ui-widget { | .mw-rcfilters-ui-filterTagMultiselectWidget-views-select-widget.oo-ui-widget | ||
{ | |||
border: 1px solid var(--border-dark); | border: 1px solid var(--border-dark); | ||
border-left-width: 0; | border-left-width: 0; | ||
} | } | ||
.ext-WikiEditor-ResizingDragBar { | .ext-WikiEditor-ResizingDragBar | ||
{ | |||
background-color: hsl(0deg 0.71% 27.65%); | background-color: hsl(0deg 0.71% 27.65%); | ||
} | } | ||
.ext-WikiEditor-ResizingDragBar-ns { | .ext-WikiEditor-ResizingDragBar-ns | ||
{ | |||
border-top: 1px solid var(--text-primary); | border-top: 1px solid var(--text-primary); | ||
} | } | ||
.mw-content-ltr.mw-highlight-lines pre, | .mw-content-ltr.mw-highlight-lines pre, | ||
.mw-content-ltr.content .mw-highlight-lines pre { | .mw-content-ltr.content .mw-highlight-lines pre | ||
box-shadow: inset | { | ||
padding-left: | box-shadow: inset 3em 0 0 #0083ff1c; | ||
padding-left: 3.5em; | |||
} | |||
.mw-highlight .nf | |||
{ | |||
color: #ff8b35; | |||
} | |||
pre, | |||
code, | |||
.mw-code | |||
{ | |||
background-color: var(--bg-wikitable-header); | |||
color: var(--text-secondary); | |||
border-color: var(--border-dark); | |||
} | |||
.diff-addedline .diffchange, | |||
.diff-deletedline .diffchange | |||
{ | |||
background: var(--bg-wikitable); | |||
} | |||
.diff-context | |||
{ | |||
background: var(--bg-main); | |||
border-color: var(--border-dark); | |||
color: var(--bg-wikitable); | |||
} | } | ||
.catlinks | |||
{ | |||
background-color: var(--bg-wikitable-header); | background-color: var(--bg-wikitable-header); | ||
border: 1px solid var(--border-dark); | |||
} | } | ||
/*===== End of | |||
/*===== End of Forms, input & editor editor styling ======*/ | |||
/*============================================= | /*============================================= | ||
| Line 631: | Line 1,029: | ||
=============================================*/ | =============================================*/ | ||
#p-logo { | #p-logo | ||
{ | |||
margin-bottom: -1em; | margin-bottom: -1em; | ||
} | } | ||
.vector-menu-tabs li { | .vector-menu-tabs li | ||
{ | |||
background-image: linear-gradient(to bottom, var(--bg-wikitable) 0, var(--bg-content) 1px, var(--bg-main) 100%); | background-image: linear-gradient(to bottom, var(--bg-wikitable) 0, var(--bg-content) 1px, var(--bg-main) 100%); | ||
} | } | ||
.vector-user-menu-legacy #pt-userpage a { | .vector-user-menu-legacy #pt-userpage a | ||
{ | |||
color: #54595d; | color: #54595d; | ||
} | } | ||
.vector-user-menu-legacy li { | .vector-user-menu-legacy li | ||
{ | |||
font-size: 0.75em; | font-size: 0.75em; | ||
} | } | ||
.vector-menu-dropdown { | .vector-menu-dropdown | ||
{ | |||
line-height: 1em; | line-height: 1em; | ||
} | } | ||
.vector-menu-dropdown .vector-menu-content { | .vector-menu-dropdown .vector-menu-content | ||
{ | |||
border: 1px solid var(--bg-wikitable) | border: 1px solid var(--bg-wikitable) | ||
} | } | ||
.vector-menu-dropdown .mw-list-item { | .vector-menu-dropdown .mw-list-item | ||
{ | |||
background-color: var(--bg-content); | background-color: var(--bg-content); | ||
} | } | ||
.vector-menu-dropdown .mw-list-item a { | .vector-menu-dropdown .mw-list-item a | ||
{ | |||
border: none; | border: none; | ||
color: var(--text-secondary); | color: var(--text-secondary); | ||
} | } | ||
.vector-menu-portal .vector-menu-content li { | .vector-menu-portal .vector-menu-content li | ||
{ | |||
font-size: 0.75em; | font-size: 0.75em; | ||
} | } | ||
.vector-menu-portal .vector-menu-content li a, | .vector-menu-portal .vector-menu-content li a, | ||
.vector-menu-tabs-legacy li a, | .vector-menu-tabs-legacy li a, | ||
.vector-legacy-sidebar .vector-menu-portal .vector-menu-content li a, | .vector-legacy-sidebar .vector-menu-portal .vector-menu-content li a, | ||
.vector-legacy-sidebar .vector-menu-portal .vector-menu-content li a:visited { | .vector-legacy-sidebar .vector-menu-portal .vector-menu-content li a:visited | ||
{ | |||
color: var(--text-secondary); | color: var(--text-secondary); | ||
} | } | ||
.vector-menu-tabs .selected { | .vector-menu-tabs .selected | ||
{ | |||
background: var(--bg-content); | background: var(--bg-content); | ||
} | } | ||
.vector-menu-tabs .selected a, | .vector-menu-tabs .selected a, | ||
.vector-menu-tabs .selected a:visited { | .vector-menu-tabs .selected a:visited | ||
{ | |||
color: var(--text-primary); | color: var(--text-primary); | ||
} | } | ||
.oo-ui-indicator-down, | .oo-ui-indicator-down, | ||
.vector-menu-dropdown .vector-menu-heading::after { | .vector-menu-dropdown .vector-menu-heading::after | ||
{ | |||
background: url(images/icons/arrow-down.svg) 100% 50% no-repeat; | background: url(images/icons/arrow-down.svg) 100% 50% no-repeat; | ||
} | } | ||
.vector-menu-checkbox:checked ~ .vector-menu-content { | .vector-menu-checkbox:checked ~ .vector-menu-content | ||
{ | |||
border-color: var(--bg-wikitable); | border-color: var(--bg-wikitable); | ||
} | } | ||
.vector-menu-dropdown .vector-menu-heading { | .vector-menu-dropdown .vector-menu-heading | ||
{ | |||
color: var(--text-secondary); | color: var(--text-secondary); | ||
} | } | ||
.vector-menu-tabs, | .vector-menu-tabs, | ||
.vector-menu-tabs a, | .vector-menu-tabs a, | ||
#mw-head .vector-menu-dropdown .vector-menu-heading { | #mw-head .vector-menu-dropdown .vector-menu-heading | ||
{ | |||
background-image: linear-gradient(to bottom, rgba(167, 215, 249, 0) 0, var(--bg-wikitable) 100%); | background-image: linear-gradient(to bottom, rgba(167, 215, 249, 0) 0, var(--bg-wikitable) 100%); | ||
} | } | ||
.skin-vector-legacy .vector-menu-tabs .new a, | .skin-vector-legacy .vector-menu-tabs .new a, | ||
.skin-vector-legacy .vector-menu-tabs .new a:visited { | .skin-vector-legacy .vector-menu-tabs .new a:visited | ||
{ | |||
color: #a55858; | color: #a55858; | ||
} | } | ||
.vector-legacy-sidebar .vector-menu-portal .vector-menu-heading { | .vector-legacy-sidebar .vector-menu-portal .vector-menu-heading | ||
{ | |||
background-image: linear-gradient(to right, rgba(200, 204, 209, 0) 0, var(--bg-wikitable) 33%, var(--bg-wikitable) 66%, rgba(200, 204, 209, 0) 100%); | background-image: linear-gradient(to right, rgba(200, 204, 209, 0) 0, var(--bg-wikitable) 33%, var(--bg-wikitable) 66%, rgba(200, 204, 209, 0) 100%); | ||
color: var(--text-primary); | color: var(--text-primary); | ||
| Line 715: | Line 1,131: | ||
} | } | ||
.oo-ui-icon-tray, | .oo-ui-icon-tray, | ||
.mw-ui-icon-tray:before { | .mw-ui-icon-tray:before | ||
{ | |||
background-image: url(images/icon-inbox.png); | background-image: url(images/icon-inbox.png); | ||
} | } | ||
.oo-ui-icon-bell, | .oo-ui-icon-bell, | ||
.mw-ui-icon-bell:before { | .mw-ui-icon-bell:before | ||
{ | |||
background-image: url(images/icon-bell.png); | background-image: url(images/icon-bell.png); | ||
} | } | ||
.mw-echo-notifications-badge { | .mw-echo-notifications-badge | ||
{ | |||
background-repeat: round; | background-repeat: round; | ||
} | } | ||
.vector-search-box form { | .vector-search-box form | ||
{ | |||
margin: 0.5em 2em 0 0; | margin: 0.5em 2em 0 0; | ||
} | } | ||
.vector-search-box-input { | .vector-search-box-input | ||
{ | |||
background-color: var(--bg-content); | background-color: var(--bg-content); | ||
color: var(--text-secondary); | color: var(--text-secondary); | ||
| Line 741: | Line 1,162: | ||
} | } | ||
#n-Discord a::before { | #n-Discord a::before | ||
{ | |||
content: 'Join our '; | content: 'Join our '; | ||
font-weight: normal; | font-weight: normal; | ||
| Line 747: | Line 1,169: | ||
} | } | ||
#n-Discord a { | #n-Discord a | ||
{ | |||
color: white; | color: white; | ||
font-weight: bold; | font-weight: bold; | ||
| Line 761: | Line 1,184: | ||
} | } | ||
#n-Discord a::after { | #n-Discord a::after | ||
{ | |||
content: ''; | content: ''; | ||
background: url(images/Discord_icon.png) no-repeat; | background: url(images/Discord_icon.png) no-repeat; | ||
| Line 778: | Line 1,202: | ||
=============================================*/ | =============================================*/ | ||
li#footer-poweredbyico { | li#footer-poweredbyico | ||
{ | |||
display: none; | display: none; | ||
} | } | ||
.mw-footer li { | .mw-footer li | ||
{ | |||
color: gray; | color: gray; | ||
} | } | ||
| Line 792: | Line 1,218: | ||
=============================================*/ | =============================================*/ | ||
ul { | ul | ||
{ | |||
list-style-type: disc; | list-style-type: disc; | ||
list-style-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%23FFFFFF%22%2F%3E%0A%3C%2Fsvg%3E%0A); | list-style-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%23FFFFFF%22%2F%3E%0A%3C%2Fsvg%3E%0A); | ||
} | |||
/*============================================= | |||
= Template styling = | |||
=============================================*/ | |||
.infobox | |||
{ | |||
background: var(--bg-infobox); | |||
border: 1px solid var(--border-dark); | |||
width: 250px; | |||
border-collapse: collapse; | |||
box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0,0,0,0.1); | |||
table-layout: fixed; | |||
} | |||
.infobox-bonuses | |||
{ | |||
clear: left; | |||
float: none; | |||
font-size: 100%; | |||
margin: 1em 0; | |||
} | |||
.infobox .infobox-subheader | |||
{ | |||
background: var(--bg-infobox-header); | |||
color: var(--text-secondary); | |||
line-height: 2em; | |||
padding: 0.5em 0; | |||
} | |||
.infobox .infobox-nested | |||
{ | |||
text-align: center; | |||
} | |||
.infobox td.infobox-nested | |||
{ | |||
padding: 0.25em 0; | |||
line-height: 1em; | |||
} | |||
.infobox .infobox-nested + .infobox-nested | |||
{ | |||
border-left: 2px solid var(--border-dark); | |||
} | |||
.infobox .infobox-subheader + .infobox-subheader | |||
{ | |||
border-left: 2px solid var(--bg-infobox); | |||
} | |||
.questDetails | |||
{ | |||
width: 100%; | |||
background-color: var(--bg-infobox); | |||
border: 1px solid var(--border-dark); | |||
border-collapse: separate; | |||
} | |||
.questDetails tbody | |||
{ | |||
display: table-row-group; | |||
vertical-align: middle; | |||
unicode-bidi: isolate; | |||
border-color: inherit; | |||
} | |||
.questDetails tr | |||
{ | |||
display: table-row; | |||
vertical-align: inherit; | |||
unicode-bidi: isolate; | |||
border-color: inherit; | |||
} | |||
.questDetails tr:nth-child(odd) .questDetailsHeader | |||
{ | |||
background-color: var(--bg-infobox-alternating-header); | |||
} | |||
.questDetails th | |||
{ | |||
text-align: left; | |||
} | |||
.questDetailsHeader | |||
{ | |||
padding: 0.5em 1em; | |||
background-color: var(--bg-infobox-header); | |||
width: 125px; | |||
} | |||
ul.questDetailsInfo | |||
{ | |||
margin: 1em 2em !important; | |||
} | |||
td.questDetailsInfo | |||
{ | |||
padding-left: 1em; | |||
padding-right: 2em; | |||
} | |||
/*===== End of Template styling ======*/ | |||
/*============================================= | |||
= Container div styling = | |||
=============================================*/ | |||
.container | |||
{ | |||
background-color: var(--bg-wikitable-header); | |||
margin: 0 auto 2em; | |||
border: 1px solid var(--border-dark); | |||
max-width: 80%; | |||
box-shadow: var(--box-shadow); | |||
} | |||
.containerHeader | |||
{ | |||
padding: 0 1em 0.25em 1em; | |||
} | |||
.container li | |||
{ | |||
padding: 0.25em 2em 0.25em 0; | |||
} | |||
.container p | |||
{ | |||
padding: 0 1em 0.25em 2em; | |||
} | |||
/*===== End of container div styling ======*/ | |||
/*============================================= | |||
= Style thumb imgs = | |||
=============================================*/ | |||
.mw-content-ltr figure[typeof~='mw:File/Thumb'], | |||
.mw-content-ltr figure[typeof~='mw:File/Frame'], | |||
figure[typeof~='mw:File/Thumb'] > figcaption, | |||
figure[typeof~='mw:File/Frame'] > figcaption | |||
{ | |||
background-color: var(--bg-infobox); | |||
box-shadow: var(--box-shadow); | |||
border: none; | |||
} | |||
figure[typeof~='mw:File/Thumb'] > :not(figcaption) .mw-file-element | |||
{ | |||
border: 1px solid var(--border-dark); | |||
} | |||
/*===== End of thumb img styling ======*/ | |||
/*============================================= | |||
= Hide user groups = | |||
=============================================*/ | |||
tr#sysop, | |||
tr#bureaucrat | |||
{ | |||
display: none; | |||
} | |||
/*===== End of hiding user groups ======*/ | |||
@keyframes pulse-border { | |||
0% { | |||
box-shadow: 0 0 0 0 rgba(173, 0, 0, 0.4); | |||
} | |||
70% { | |||
box-shadow: 0 0 0 10px rgba(173, 0, 0, 0); | |||
} | |||
100% { | |||
box-shadow: 0 0 0 0 rgba(173, 0, 0, 0); | |||
} | |||
} | |||
.pulsating-warning { | |||
animation: pulse-border 2s infinite; | |||
} | } | ||
Latest revision as of 07:45, 3 November 2025
/*=============================================
= Variable declarations =
=============================================*/
:root
{
--bg-content: hsl(0, 0%, 15%);
--bg-infobox-header: hsl(0deg 0% 11.17%);
--bg-infobox-alternating-header: hsl(0deg 0% 13.53%);
--bg-infobox: hsl(0deg 0% 19.05%);
--bg-main: hsl(0, 0%, 10%);
--bg-warningbox: hsla(64, 84%, 47%, 0.3);
--bg-wikitable: hsl(0, 0%, 25%);
--bg-wikitable-header: hsl(0, 0%, 20%);
--border-color-warningbox: hsl(64, 84%, 47%);
--border-light: hsl(205, 87%, 82%);
--border-dark: hsl(206, 50%, 23%);
--sc-light: hsl(280, 74%, 74%);
--text-primary: hsl(197, 100%, 50%);
--text-secondary: hsl(0, 0%, 100%);
--wikitable-link: hsl(211, 63%, 60%);
--box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
}
/*===== End of Variable declarations ======*/
/*=============================================
= Main styling =
=============================================*/
body
{
background-color: var(--bg-main);
font-size: 15px;
line-height: 1.75;
}
h1,
h2
{
border-bottom: 1px solid var(--bg-wikitable);
}
h1,
h2,
h3,
h4,
h5,
h6
{
color: var(--text-primary);
}
.mw-body h1,
.mw-body-content h1,
.mw-body-content h2,
.mw-body-content h3,
.mw-body-content h4,
.mw-body-content h5,
.mw-body-content h6
{
font-family: 'PT Serif', 'Palatino', 'Georgia', serif;
}
.vector-body h3,
.vector-body h4
{
font-weight: bold;
}
a,
a.new,
a.new:visited,
a:hover,
a:visited
{
color: var(--wikitable-link);
}
a:hover
{
text-shadow: 0 2px 15px;
}
.mw-body
{
border-color: var(--bg-wikitable);
background-color: var(--bg-content);
color: var(--text-secondary);
}
#mw-page-base
{
background: none;
}
/* Main page styling */
.tile-row
{
display: flex;
flex-flow: row wrap;
gap: 0.9rem;
max-width: 80%;
margin: 1em auto;
}
.tile-halves
{
display: flex;
flex-flow: row wrap;
border: 1px solid var(--border-dark);
background: var(--bg-content);
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.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(--bg-main);
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 span
{
width: 100%;
}
.tile-top.tile-image img
{
width: 100%;
object-fit: cover;
max-height: 200px;
transition: 0.4s ease-out;
}
.tile-bottom
{
background: var(--bg-wikitable-header);
border-top: 1px solid var(--border-dark);
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 a
{
color: #4c4c4c;
font-weight: bold;
text-align: right;
}
.mainpage-header {
font-size: 3em;
font-weight: 600;
margin: 1em auto;
text-transform: uppercase;
text-shadow: 2px 2px 4px rgba(16, 16, 16, 0.6), /* Soft but distinct shadow */
2px 3px 6px rgba(16, 16, 16, 0.5), /* Slightly larger shadow for depth */
3px 5px 10px rgba(16, 16, 16, 0.4), /* Further shadow for a more 3D feel */
5px 8px 15px rgba(16, 16, 16, 0.3), /* Extended shadow for smooth fade */
7px 12px 20px rgba(16, 16, 16, 0.2); /* Smooth, extended fade out */
}
.mainpage-contents
{
grid-area: content;
grid-template-columns: repeat(6, 1fr);
}
.mainpage-left
{
display: flex;
flex-flow: column wrap;
grid-area: left;
flex: 2;
}
.mainpage-left > *
{
margin: 0 0 0.9em;
}
.mainpage-right
{
grid-area: right;
flex: 1;
display: flex;
flex-flow: column wrap;
}
.mainpage-contents .tile-halves
{
flex: 1;
}
.mainpage-contents .tile-top
{
position: relative;
}
.mainpage-contents.tile-row
{
margin: 1em auto;
}
.mainpage-contents h2
{
margin: 0;
padding: 0;
}
.mainpage-contents .tile-bottom.link-button a
{
padding: 0.75em 0.2em;
}
.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-secondary);
}
.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;
}
/*===== End of Main styling ======*/
/*=============================================
= Notification styling =
=============================================*/
.mw-editform #editpage-copywarn
{
padding: 1em;
}
.mw-message-box,
.oo-ui-messageWidget.oo-ui-flaggedElement-success:not(.oo-ui-messageWidget-block)
{
color: var(--text-secondary);
}
.mw-message-box-warning
{
background-color: var(--bg-warningbox);
border-color: var(--border-color-warningbox);
}
.mw-message-box-error
{
background-color: hsl(2.84deg 100% 50% / 21.96%);
}
.mw-notification
{
background-color: var(--bg-main);
border: 1px solid var(--border-dark);
}
/*===== End of Notification styling ======*/
/*=============================================
= TOC & Wikitable styling =
=============================================*/
.toctogglelabel,
.mw-parser-output a.extiw,
.mw-parser-output a.external,
.mw-parser-output .wikitable tbody tr td a,
.mw-collapsible-toggle-default .mw-collapsible-text,
.mw-parser-output a.extiw:visited,
.mw-parser-output a.external:visited
{
color: var(--wikitable-link);
}
.mw-content-ltr .toc ul,
.mw-content-rtl .mw-content-ltr .toc ul
{
text-align: left;
}
.toc
{
font-size: 0.93em;
background: var(--bg-wikitable);
margin-top: 1em;
padding: 0;
border-color: var(--border-dark);
box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0, 0, 0, 0.1);
clear: left;
}
.toc .toctitle
{
background: var(--bg-wikitable-header);
padding: 0.25em 1em;
}
.toc h2
{
color: var(--text-secondary);
}
.mw-rcfilters-ui-changesListWrapperWidget .mw-changeslist-legend
{
background-color: var(--bg-wikitable);
border: 1px solid var(--border-dark);
}
.tocnumber
{
display: none;
}
.toc ul
{
list-style: none;
margin: 0.3em 0;
padding: 0;
text-align: left;
}
.toc > ul
{
line-height: 1.8em;
padding: 0.75em 1.75em;
margin: 0;
}
.toc ul ul
{
border-left: 1px dotted #596e96;
padding-left: 0.5em;
}
#filetoc
{
background-color: var(--bg-wikitable);
}
em
{
font-style: normal;
background: #555555;
color: white;
border: 1px solid #979797;
border-radius: 2px;
font-size: 0.9em;
margin: 0 0.1em;
padding: 0.2em 0.5em;
white-space: nowrap;
}
.wikitable
{
color: var(--text-secondary);
border: 1px solid var(--bg-content);
}
.wikitable tr
{
background-color: var(--bg-wikitable);
}
.wikitable > tr > th,
.wikitable > tbody > tr > th,
.wikitable > thead > tr > th
{
background-color: var(--bg-wikitable-header);
}
.wikitable > tr > th,
.wikitable > tr > td,
.wikitable > tbody > tr > th,
.wikitable > tbody > tr > td,
.wikitable > thead > tr > th
{
border: 1px solid var(--bg-content);
}
.wikitable img
{
margin: auto;
padding: 3px 0;
}
.wikitable th.headerSort
{
background-image: url(images/icons/Sort_both.png);
background-repeat: no-repeat;
background-position: right 6px center;
background-size: 10px;
}
.wikitable th.headerSortUp
{
background-image: url(images/icons/Sort_up.png);
background-repeat: no-repeat;
background-position: right 6px center;
background-size: 10px;
}
.wikitable th.headerSortDown
{
background-image: url(images/icons/Sort_down.png);
background-repeat: no-repeat;
background-position: right 6px center;
background-size: 10px;
}
/*===== End of TOC & Wikitable styling ======*/
/*=============================================
= Forms, input & editor styling =
=============================================*/
fieldset
{
border: 1px solid var(--bg-wikitable);
}
.wikiEditor-ui-toolbar
{
background-color: var(--bg-main);
}
.wikiEditor-ui-toolbar .tabs span.tab a,
.wikiEditor-ui-toolbar .tabs span.tab a.current,
.wikiEditor-ui-toolbar .tabs span.tab a.current:visited,
.wikiEditor-ui-toolbar .group .tool-select .label,
.wikiEditor-ui-toolbar .group .tool-select .options .option
{
color: var(--text-secondary);
}
.wikiEditor-ui-toolbar .booklet > .index > .current, .wikiEditor-ui-toolbar .booklet > .index > :hover,
.wikiEditor-ui-toolbar .group .tool-select .menu .options .option:hover,
.oo-ui-popupToolGroup.oo-ui-popupToolGroup-active > .oo-ui-popupToolGroup-handle,
.oo-ui-popupToolGroup.oo-ui-widget-enabled > .oo-ui-popupToolGroup-handle:hover,
.oo-ui-popupToolGroup-tools,
.oo-ui-tool.oo-ui-widget-enabled > .oo-ui-tool-link:active,
.oo-ui-tool.oo-ui-widget-enabled.oo-ui-tool-active > .oo-ui-tool-link,
.oo-ui-tool.oo-ui-widget-enabled.oo-ui-popupToolGroup-active > .oo-ui-tool-link,
.oo-ui-popupToolGroup.oo-ui-widget-enabled > .oo-ui-popupToolGroup-handle:active
{
background-color: var(--bg-content);
color: var(--border-light);
}
.oo-ui-listToolGroup-tools .oo-ui-tool-active.oo-ui-widget-enabled .oo-ui-tool-link .oo-ui-tool-title
{
color: var(--border-light);
}
.wikiEditor-ui-toolbar .group .tool-select .options
{
background-color: var(--bg-main);
border: 1px solid var(--border-dark);
}
.mw-input input,
.mw-input textarea
{
background-color: var(--bg-wikitable);
border: 1px solid var(--border-dark);
}
.wikiEditor-ui-toolbar .tabs span.tab a::before
{
width: 14px;
height: 30px;
}
.wikiEditor-ui-toolbar .group, .wikiEditor-ui-toolbar .section-secondary .group
{
border-color: var(--border-dark);
}
.wikiEditor-ui-toolbar .group .label
{
color: var(--text-primary);
}
.codeEditor-status
{
background-color: var(--bg-wikitable-header);
}
.wikiEditor-ui .wikiEditor-ui-view
{
border: 1px solid var(--border-dark);
}
.wikiEditor-ui-toolbar .page-characters div span
{
border: 1px solid var(--border-dark);
color: var(--border-light);
}
.wikiEditor-ui-toolbar .group,
.section-secondary .group
{
border-color: var(--border-dark);
}
.wikiEditor-ui-toolbar .sections .section
{
border-top: 1px solid var(--border-dark);
}
.wikiEditor-ui .wikiEditor-ui-top
{
border-bottom: 1px solid var(--border-dark);
}
.codeEditor-status
{
border: none;
}
.codeEditor-status-message
{
border-left: none;
border-right: none;
}
.ace_scrollbar-inner
{
background: var(--bg-content);
}
.ace-tm .ace-comment
{
color: hsl(0deg 0% 53.69%);
}
.ace-tm,
.ace_support.ace_function
{
background-color: var(--bg-content);
color: hsl(0deg 100% 72.24%);
}
.mw-highlight .nb
{
color: hsl(0deg 100% 72.24%);
}
.mw-highlight .nt,
.mw-highlight .k,
.ace-tm .ace_constant,
.ace-tm .ace_support.ace_type,
.ace-tm .ace_support.ace_class
{
color: var(--text-primary);
}
.ace-tm .ace_support.ace_constant
{
color: hsl(39.59deg 100% 80.98%);
font-style: italic;
}
.ace-tm .ace_gutter
{
background: var(--bg-wikitable-header);
}
.mw-highlight .nd,
.mw-highlight .nc,
.mw-highlight .kc,
.ace-tm .ace_string,
.ace-tm .ace_variable
{
color: hsl(36.52deg 100% 68.79%);
}
.ace-tm .ace_gutter-active-line
{
background-color: var(--border-dark);
}
.mw-highlight .mi,
.mw-highlight .mf,
.ace-tm .ace_constant.ace_numeric
{
color: var(--sc-light);
}
.ace_gutter-cell,
.mw-highlight .sx,
.mw-highlight .nv
{
color: var(--text-secondary);
}
.ace-tm .ace_print-margin
{
background: none;
}
.mw-highlight .kt,
.mw-highlight .nn,
.ace-tm .ace_storage,
.ace-tm .ace_keyword
{
color: hsl(36.52deg 100% 53.7%);
}
span.ace_punctuation.ace_operator
{
color: dimgray;
}
span.ace_paren.ace_lparen,
span.ace_paren.ace_rparen,
pre > span > span.p
{
color: hsl(50.37deg 100% 56.29%);
}
.mw-editform #editpage-copywarn
{
padding: 1em 0;
}
.editOptions
{
background-color: hsl(0deg 0% 11.17%);
color: var(--text-secondary);
border-color: var(--border-dark);
border-right: 1px solid var(--border-dark);
border-bottom: 1px solid var(--border-dark);
border-left: 1px solid var(--border-dark);;
}
.oo-ui-icon-bold,
.mw-ui-icon-bold:before
{
background-image: url(images/code-editor-icons/Bold.svg);
}
.oo-ui-icon-italic,
.mw-ui-icon-italic:before
{
background-image: url(images/code-editor-icons/Italic.svg);
}
.oo-ui-icon-link,
.mw-ui-icon-link:before
{
background-image: url(images/code-editor-icons/Hyperlink.svg);
}
.oo-ui-icon-image,
.mw-ui-icon-image:before
{
background-image: url(images/code-editor-icons/Image.svg);
}
.oo-ui-icon-reference,
.mw-ui-icon-reference:before
{
background-image: url(images/code-editor-icons/Reference.svg);
}
.oo-ui-icon-article,
.mw-ui-icon-article:before
{
background-image: url(images/code-editor-icons/Article.svg);
}
.oo-ui-icon-edit,
.mw-ui-icon-edit:before
{
background-image: url(images/code-editor-icons/Edit.svg);
}
.oo-ui-icon-listBullet,
.mw-ui-icon-listBullet:before
{
background-image: url(images/code-editor-icons/Bullet_list.svg);
}
.oo-ui-icon-listNumbered,
.mw-ui-icon-listNumbered:before
{
background-image: url(images/code-editor-icons/Numbered_list.svg);
}
.oo-ui-icon-noWikiText,
.mw-ui-icon-noWikiText:before
{
background-image: url(images/code-editor-icons/No_WikiText.svg);
}
.oo-ui-icon-newline,
.mw-ui-icon-newline:before
{
background-image: url(images/code-editor-icons/New_line.svg);
}
.oo-ui-icon-bigger,
.mw-ui-icon-bigger:before
{
background-image: url(images/code-editor-icons/Bigger.svg);
}
.oo-ui-icon-smaller,
.mw-ui-icon-smaller:before
{
background-image: url(images/code-editor-icons/Smaller.svg);
}
.oo-ui-icon-superscript,
.mw-ui-icon-superscript:before
{
background-image: url(images/code-editor-icons/Superscript.svg);
}
.oo-ui-icon-subscript,
.mw-ui-icon-subscript:before
{
background-image: url(images/code-editor-icons/Subscript.svg);
}
.oo-ui-icon-imageGallery,
.mw-ui-icon-imageGallery:before
{
background-image: url(images/code-editor-icons/Image_gallery.svg);
}
.oo-ui-icon-articleRedirect,
.mw-ui-icon-articleRedirect:before
{
background-image: url(images/code-editor-icons/Article_redirect.svg);
}
.oo-ui-icon-table,
.mw-ui-icon-table:before
{
background-image: url(images/code-editor-icons/Table.svg);
}
.oo-ui-icon-articleSearch,
.mw-ui-icon-articleSearch:before
{
background-image: url(images/code-editor-icons/Article_search.svg);
}
.oo-ui-icon-markup,
.mw-ui-icon-markup:before
{
background-image: url(images/code-editor-icons/Markup.svg);
}
.oo-ui-icon-indent,
.mw-ui-icon-indent:before
{
background-image: url(images/code-editor-icons/Indent.svg);
}
.oo-ui-icon-outdent,
.mw-ui-icon-outdent:before
{
background-image: url(images/code-editor-icons/Outdent.svg);
}
.oo-ui-icon-pilcrow
{
background-image: url(images/code-editor-icons/Pilcrow.svg);
}
.oo-ui-icon-wrapping
{
background-image: url(images/code-editor-icons/Wrapping.svg);
}
.oo-ui-icon-gotoLine
{
background-image: url(images/code-editor-icons/Go_to_line.svg);
}
.oo-ui-icon-play,
.mw-ui-icon-play:before
{
background-image: url(images/code-editor-icons/Play.svg);
}
.oo-ui-icon-settings,
.mw-ui-icon-settings:before
{
background-image: url(images/code-editor-icons/Settings.svg);
}
.oo-ui-icon-tag,
.mw-ui-icon-tag:before
{
background-image: url(images/code-editor-icons/Tag.svg);
}
.oo-ui-icon-bookmark,
.mw-ui-icon-bookmark:before
{
background-image: url(images/code-editor-icons/Bookmark.svg);
}
.oo-ui-icon-trash,
.mw-ui-icon-trash:before
{
background-image: url(images/code-editor-icons/Trash.svg);
}
#mw-indicator-mw-helplink a
{
background-image: url(images/code-editor-icons/Help_notice.svg);
}
.oo-ui-icon-menu,
.mw-ui-icon-menu:before
{
background-image: url(images/code-editor-icons/Menu.svg);
}
.vector-menu-tabs #ca-unwatch.icon a::before
{
background-image: url(images/code-editor-icons/Unwatch_icon.svg);
}
.vector-menu-tabs #ca-unwatch.icon a:hover::before
{
background-image: url(images/code-editor-icons/Unwatch_icon_hover.svg);
}
.oo-ui-textInputWidget .oo-ui-inputWidget-input
{
background-color: var(--bg-wikitable-header);
color: var(--border-light);
border-color: var(--border-dark);
}
.oo-ui-checkboxInputWidget [type='checkbox'] + span
{
background-color: var(--bg-wikitable-header);
border-color: var(--border-dark);
}
.oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button
{
background-color: var(--bg-wikitable-header);
color: var(--border-light);
border-color: var(--border-dark);
}
.ext-WikiEditor-realtimepreview-textbox#wpTextbox1,
.mw-editform .ext-WikiEditor-realtimepreview-textbox#wpTextbox1,
.oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined .oo-ui-tagItemWidget.oo-ui-widget-enabled
{
background-color: var(--bg-content);
color: var(--text-secondary);
}
.oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined
{
background-color: var(--bg-main);
}
.mw-rcfilters-collapsed .mw-rcfilters-ui-filterTagMultiselectWidget
{
border-bottom: 1px solid var(--border-dark);
}
.mw-rcfilters-ui-cell.mw-rcfilters-ui-filterTagMultiselectWidget-views-select
{
background-color: var(--bg-wikitable-header);
}
.mw-rcfilters-ui-filterTagMultiselectWidget-wrapper-content-title
{
color: var(--text-secondary);
}
.oo-ui-buttonElement-frameless.oo-ui-widget-enabled > .oo-ui-buttonElement-button
{
color: var(--border-light);
}
.oo-ui-buttonElement-frameless.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive > .oo-ui-buttonElement-button
{
color: var(--text-primary);
}
.mw-rcfilters-ui-filterTagMultiselectWidget.oo-ui-widget-enabled .oo-ui-tagMultiselectWidget-handle
{
background-color: var(--bg-main);
border: 1px solid var(--border-dark);
border-bottom-width: 0;
}
.mw-rcfilters-ui-filterTagMultiselectWidget-views-select-widget.oo-ui-widget
{
border: 1px solid var(--border-dark);
border-left-width: 0;
}
.ext-WikiEditor-ResizingDragBar
{
background-color: hsl(0deg 0.71% 27.65%);
}
.ext-WikiEditor-ResizingDragBar-ns
{
border-top: 1px solid var(--text-primary);
}
.mw-content-ltr.mw-highlight-lines pre,
.mw-content-ltr.content .mw-highlight-lines pre
{
box-shadow: inset 3em 0 0 #0083ff1c;
padding-left: 3.5em;
}
.mw-highlight .nf
{
color: #ff8b35;
}
pre,
code,
.mw-code
{
background-color: var(--bg-wikitable-header);
color: var(--text-secondary);
border-color: var(--border-dark);
}
.diff-addedline .diffchange,
.diff-deletedline .diffchange
{
background: var(--bg-wikitable);
}
.diff-context
{
background: var(--bg-main);
border-color: var(--border-dark);
color: var(--bg-wikitable);
}
.catlinks
{
background-color: var(--bg-wikitable-header);
border: 1px solid var(--border-dark);
}
/*===== End of Forms, input & editor editor styling ======*/
/*=============================================
= Navigation styling =
=============================================*/
#p-logo
{
margin-bottom: -1em;
}
.vector-menu-tabs li
{
background-image: linear-gradient(to bottom, var(--bg-wikitable) 0, var(--bg-content) 1px, var(--bg-main) 100%);
}
.vector-user-menu-legacy #pt-userpage a
{
color: #54595d;
}
.vector-user-menu-legacy li
{
font-size: 0.75em;
}
.vector-menu-dropdown
{
line-height: 1em;
}
.vector-menu-dropdown .vector-menu-content
{
border: 1px solid var(--bg-wikitable)
}
.vector-menu-dropdown .mw-list-item
{
background-color: var(--bg-content);
}
.vector-menu-dropdown .mw-list-item a
{
border: none;
color: var(--text-secondary);
}
.vector-menu-portal .vector-menu-content li
{
font-size: 0.75em;
}
.vector-menu-portal .vector-menu-content li a,
.vector-menu-tabs-legacy li a,
.vector-legacy-sidebar .vector-menu-portal .vector-menu-content li a,
.vector-legacy-sidebar .vector-menu-portal .vector-menu-content li a:visited
{
color: var(--text-secondary);
}
.vector-menu-tabs .selected
{
background: var(--bg-content);
}
.vector-menu-tabs .selected a,
.vector-menu-tabs .selected a:visited
{
color: var(--text-primary);
}
.oo-ui-indicator-down,
.vector-menu-dropdown .vector-menu-heading::after
{
background: url(images/icons/arrow-down.svg) 100% 50% no-repeat;
}
.vector-menu-checkbox:checked ~ .vector-menu-content
{
border-color: var(--bg-wikitable);
}
.vector-menu-dropdown .vector-menu-heading
{
color: var(--text-secondary);
}
.vector-menu-tabs,
.vector-menu-tabs a,
#mw-head .vector-menu-dropdown .vector-menu-heading
{
background-image: linear-gradient(to bottom, rgba(167, 215, 249, 0) 0, var(--bg-wikitable) 100%);
}
.skin-vector-legacy .vector-menu-tabs .new a,
.skin-vector-legacy .vector-menu-tabs .new a:visited
{
color: #a55858;
}
.vector-legacy-sidebar .vector-menu-portal .vector-menu-heading
{
background-image: linear-gradient(to right, rgba(200, 204, 209, 0) 0, var(--bg-wikitable) 33%, var(--bg-wikitable) 66%, rgba(200, 204, 209, 0) 100%);
color: var(--text-primary);
padding: 0.4em 0;
font-weight: bold;
}
.oo-ui-icon-tray,
.mw-ui-icon-tray:before
{
background-image: url(images/icon-inbox.png);
}
.oo-ui-icon-bell,
.mw-ui-icon-bell:before
{
background-image: url(images/icon-bell.png);
}
.mw-echo-notifications-badge
{
background-repeat: round;
}
.vector-search-box form
{
margin: 0.5em 2em 0 0;
}
.vector-search-box-input
{
background-color: var(--bg-content);
color: var(--text-secondary);
box-sizing: content-box;
border: 1px solid var(--bg-wikitable);
height: 1em;
}
#n-Discord a::before
{
content: 'Join our ';
font-weight: normal;
opacity: 0.85;
}
#n-Discord a
{
color: white;
font-weight: bold;
border-radius: 5px;
border: 1px solid #4c57d0;
background-color: #5865f2;
display: block;
position: relative;
padding: 4px 0 5px calc(17px + 6.5px * 2);
margin-top: 10px;
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
transition: 0.2s ease;
}
#n-Discord a::after
{
content: '';
background: url(images/Discord_icon.png) no-repeat;
background-size: 17px 13px;
filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
position: absolute;
left: 7px;
width: 17px;
height: 13px;
}
/*===== End of Navigation styling ======*/
/*=============================================
= Footer styling =
=============================================*/
li#footer-poweredbyico
{
display: none;
}
.mw-footer li
{
color: gray;
}
/*===== End of Footer styling ======*/
/*=============================================
= List styling =
=============================================*/
ul
{
list-style-type: disc;
list-style-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%23FFFFFF%22%2F%3E%0A%3C%2Fsvg%3E%0A);
}
/*=============================================
= Template styling =
=============================================*/
.infobox
{
background: var(--bg-infobox);
border: 1px solid var(--border-dark);
width: 250px;
border-collapse: collapse;
box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0,0,0,0.1);
table-layout: fixed;
}
.infobox-bonuses
{
clear: left;
float: none;
font-size: 100%;
margin: 1em 0;
}
.infobox .infobox-subheader
{
background: var(--bg-infobox-header);
color: var(--text-secondary);
line-height: 2em;
padding: 0.5em 0;
}
.infobox .infobox-nested
{
text-align: center;
}
.infobox td.infobox-nested
{
padding: 0.25em 0;
line-height: 1em;
}
.infobox .infobox-nested + .infobox-nested
{
border-left: 2px solid var(--border-dark);
}
.infobox .infobox-subheader + .infobox-subheader
{
border-left: 2px solid var(--bg-infobox);
}
.questDetails
{
width: 100%;
background-color: var(--bg-infobox);
border: 1px solid var(--border-dark);
border-collapse: separate;
}
.questDetails tbody
{
display: table-row-group;
vertical-align: middle;
unicode-bidi: isolate;
border-color: inherit;
}
.questDetails tr
{
display: table-row;
vertical-align: inherit;
unicode-bidi: isolate;
border-color: inherit;
}
.questDetails tr:nth-child(odd) .questDetailsHeader
{
background-color: var(--bg-infobox-alternating-header);
}
.questDetails th
{
text-align: left;
}
.questDetailsHeader
{
padding: 0.5em 1em;
background-color: var(--bg-infobox-header);
width: 125px;
}
ul.questDetailsInfo
{
margin: 1em 2em !important;
}
td.questDetailsInfo
{
padding-left: 1em;
padding-right: 2em;
}
/*===== End of Template styling ======*/
/*=============================================
= Container div styling =
=============================================*/
.container
{
background-color: var(--bg-wikitable-header);
margin: 0 auto 2em;
border: 1px solid var(--border-dark);
max-width: 80%;
box-shadow: var(--box-shadow);
}
.containerHeader
{
padding: 0 1em 0.25em 1em;
}
.container li
{
padding: 0.25em 2em 0.25em 0;
}
.container p
{
padding: 0 1em 0.25em 2em;
}
/*===== End of container div styling ======*/
/*=============================================
= Style thumb imgs =
=============================================*/
.mw-content-ltr figure[typeof~='mw:File/Thumb'],
.mw-content-ltr figure[typeof~='mw:File/Frame'],
figure[typeof~='mw:File/Thumb'] > figcaption,
figure[typeof~='mw:File/Frame'] > figcaption
{
background-color: var(--bg-infobox);
box-shadow: var(--box-shadow);
border: none;
}
figure[typeof~='mw:File/Thumb'] > :not(figcaption) .mw-file-element
{
border: 1px solid var(--border-dark);
}
/*===== End of thumb img styling ======*/
/*=============================================
= Hide user groups =
=============================================*/
tr#sysop,
tr#bureaucrat
{
display: none;
}
/*===== End of hiding user groups ======*/
@keyframes pulse-border {
0% {
box-shadow: 0 0 0 0 rgba(173, 0, 0, 0.4);
}
70% {
box-shadow: 0 0 0 10px rgba(173, 0, 0, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(173, 0, 0, 0);
}
}
.pulsating-warning {
animation: pulse-border 2s infinite;
}