MediaWiki:Common.css: различия между версиями
Aylong (обсуждение | вклад) Нет описания правки |
Aylong (обсуждение | вклад) мНет описания правки |
||
(не показаны 103 промежуточные версии этого же участника) | |||
Строка 1: | Строка 1: | ||
/* Hide noscript only elements */ | /* Hide noscript only elements */ | ||
.client-js *.noscript { | .client-js *.noscript { | ||
Строка 6: | Строка 4: | ||
} | } | ||
/* | /* Disable blur */ | ||
.blurless { | |||
backdrop-filter: blur(0) !important; | |||
} | |||
/* Fill */ | |||
.fill { | |||
position: absolute; | |||
top: 0; | |||
bottom: 0; | |||
left: 0; | |||
right: 0; | |||
z-index: var(--index-low); | |||
} | |||
/** | |||
* MARK: MainPage/Content | |||
*/ | |||
.wiki-mainpage { | |||
display: flex; | |||
flex-wrap: wrap; | |||
gap: 0.75em; | |||
} | |||
.wiki-mainpage-column { | |||
display: flex; | |||
flex-direction: column; | |||
flex: 1; | |||
gap: 0.75em; | |||
} | |||
/** | |||
* MARK: MainPage/Splash | |||
*/ | |||
.paradise-logo { | .paradise-logo { | ||
display: flex; | display: flex; | ||
Строка 15: | Строка 46: | ||
border: var(--border-classic); | border: var(--border-classic); | ||
border-radius: var(--border-radius-large); | border-radius: var(--border-radius-large); | ||
backdrop-filter: var(--blur- | backdrop-filter: var(--blur-default); | ||
} | |||
.paradise-logo a img { | |||
width: 100%; | |||
height: auto; | |||
} | } | ||
.paradise-welcome { | .paradise-welcome { | ||
display: inline-flex; | display: inline-flex; | ||
text-align: center; | |||
font-weight: bold; | font-weight: bold; | ||
padding: 0 1em; | padding: 0 1em; | ||
margin: -1.5em 0.5em 0.5em 0.5em; | margin: -1.5em 0.5em 0.5em 0.5em; | ||
background-color: var(--color-primary); | background-color: var(--color-primary); | ||
color: var(--color-white); | color: var(--color-white); | ||
border-radius: var(--border-radius-large) | border-radius: var(--border-radius-large); | ||
} | } | ||
.paradise-info { | .paradise-info { | ||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | align-items: center; | ||
text-align: center; | |||
} | |||
.paradise-info-string { | |||
overflow: hidden; | |||
display: flex; | |||
max-width: 90%; | |||
margin-bottom: 0.25em; | |||
background-color: var(--color-bg-section-light); | |||
border: var(--border-classic); | |||
border-top: 0; | |||
border-radius: 0 0 var(--border-radius-large) var(--border-radius-large); | |||
box-shadow: inset 0px 5px 5px -5px rgba(0, 0, 0, 0.2); | |||
backdrop-filter: var(--blur-default); | |||
} | |||
.paradise-info-string span:not([class]) { | |||
padding: 0.5em 0.75em; | |||
border-right: var(--border-classic); | |||
border-left: var(--border-classic); | |||
@media (max-width: 719px) { | |||
display: none; | |||
} | |||
} | |||
.paradise-info-string .paradise-info-link { | |||
min-width: 3em; | |||
@media (max-width: 719px) { | |||
min-width: 10em; | |||
height: 2.5em; | |||
} | |||
} | |||
.paradise-info-string .paradise-info-link:first-of-type { | |||
@media (max-width: 719px) { | |||
border-right: var(--border-classic); | |||
} | |||
} | |||
.paradise-info-string .paradise-info-link a { | |||
display: inline-flex; | |||
align-items: center; | |||
justify-content: center; | |||
width: 100%; | |||
height: 100%; | |||
color: var(--color-text-semi-translucent) !important; | |||
transition: color var(--transition-time), background-color var(--transition-time); | |||
} | |||
.paradise-info-string .paradise-info-link a:hover { | |||
background-color: var(--color-bg-hover); | |||
color: var(--color-text) !important; | |||
} | |||
.paradise-info-string .paradise-info-link a:after { | |||
content: ""; | |||
font: unset; | |||
@media (min-width: 720px) { | |||
display: none; | |||
} | |||
} | |||
.paradise-info-string .paradise-info-link:first-of-type a:after { | |||
@media (max-width: 719px) { | |||
content: "Discord"; | |||
margin-left: 1em; | |||
} | |||
} | |||
.paradise-info-string .paradise-info-link:last-of-type a:before { | |||
@media (max-width: 719px) { | |||
content: "GitHub"; | |||
margin-right: 1em; | |||
} | |||
} | } | ||
.paradise-info-string | .paradise-info-string .paradise-info-link a i { | ||
font-size: 1.25em; | |||
} | } | ||
/* | /** | ||
. | * MARK: MainPage/Buttons | ||
*/ | |||
.pagebutton-container { | |||
user-select: none; | |||
display: inline-flex; | display: inline-flex; | ||
flex-direction: column; | |||
overflow: hidden; | |||
position: relative; | |||
margin: 0.25em; | |||
outline: 1px outset var(--color-border); | |||
border-radius: var(--border-radius-small); | |||
transition: box-shadow var(--transition-time), transform var(--transition-time); | |||
} | |||
.pagebutton-container:hover { | |||
box-shadow: 0 0.25em 0.5em 0; | |||
transform: translateY(-0.3em); | |||
z-index: 1; | |||
} | |||
.pagebutton-container:hover:focus-within { | |||
box-shadow: 0 0.25em 0.5em 0, inset 0 0 0.5em; | |||
} | |||
.pagebutton-text a { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
font-weight: bold; | |||
min-height: 21px; | |||
background-color: var(--color-bg-focus); | |||
color: var(--color-white) !important; | |||
border-top: var(--border-classic); | |||
-webkit-user-drag: none; | |||
} | |||
.pagebutton-image a img { | |||
display: flex; | |||
margin: 0 auto; | |||
padding: 0.5em; | |||
} | |||
/** | |||
* MARK: NavBar/Tabs | |||
*/ | |||
.department-tabs { | |||
display: flex; | |||
flex-wrap: wrap; | |||
flex-grow: 1; | |||
overflow: auto; | |||
} | |||
.department-tabs-tab { | |||
position: relative; | |||
display: inline-flex; | |||
flex-grow: 1; | |||
flex-basis: 5%; | |||
} | |||
.department-tabs-tab a { | |||
padding: 0.4em 1em; | |||
flex-grow: 1; | |||
text-align: center; | |||
font-weight: bold; | |||
transition-property: background-color, color; | |||
} | |||
.department-tabs-tab a, | |||
.department-tabs-tab a:active { | |||
color: var(--color-text-gray); | |||
} | |||
.department-tabs-tab a:hover, | |||
.department-tabs-tab a:active:hover { | |||
background-color: var(--color-bg-hover); | |||
color: var(--color-text-darker); | |||
} | |||
.department-tabs-tab a.mw-selflink { | |||
background-color: var(--color-bg-focus) !important; | |||
color: var(--color-text) !important; | |||
box-shadow: var(--shadow-template--medium); | |||
z-index: var(--index-fore); | |||
} | |||
/** | |||
* MARK: NavBar/Buttons | |||
*/ | |||
.navbar-button a { | |||
display: flex; | |||
width: 100%; | |||
height: 100%; | |||
justify-content: center; | |||
align-items: center; | |||
font-weight: bold; | |||
color: var(--color-text-darker) !important; | |||
transition-property: background-color, color; | |||
} | |||
.navbar-button a:hover { | |||
background-color: var(--color-bg-hover); | |||
} | |||
/** | |||
* MARK: TGUI Buttons | |||
*/ | |||
.custom-link a { | |||
display: inline-block; | |||
margin: 0.25em; | |||
padding: 0em 0.5em; | |||
vertical-align: middle; | |||
background-color: var(--color-primary); | |||
color: var(--color-white) !important; | |||
border-radius: var(--border-radius-small); | |||
transition: background-color var(--transition-time); | |||
} | |||
.custom-link a:hover { | |||
background-color: var(--color-primary-light); | |||
} | |||
/** | |||
* MARK: Template/Notice | |||
*/ | |||
.notice-wrapper { | |||
overflow: hidden; | |||
position: relative; | |||
width: 100%; | |||
border-radius: var(--border-radius-large); | |||
box-shadow: var(--shadow-template--small); | |||
} | |||
.notice-lines { | |||
flex: 1; | |||
min-width: 10%; | |||
height: 40px; | |||
box-shadow: var(--shadow-template--medium); | |||
z-index: var(--index-base); | |||
} | |||
.notice-title { | |||
overflow: hidden; | |||
position: relative; | |||
padding: 0.25em; | |||
min-width: 50%; | |||
border-radius: 0 0 var(--border-radius-large) var(--border-radius-large); | |||
box-shadow: var(--shadow-template--medium); | |||
z-index: var(--index-fore); | |||
} | |||
.notice-title-text { | |||
display: flex; | |||
justify-content: space-between; | |||
align-items: center; | |||
font-size: 1.2rem; | |||
font-family: "Comic Sans MS"; | |||
text-align: center; | |||
color: var(--color-white); | |||
} | |||
.notice-content { | |||
display: flex; | |||
align-items: center; | |||
flex-direction: column; | |||
margin: 1em; | |||
} | |||
.notice-content-text { | |||
font-size: 0.85rem; | |||
font-family: "Comic Sans MS"; | |||
text-align: center; | |||
color: var(--color-text); | |||
} | |||
/* Palette Preview */ | |||
.palette-preview { | |||
flex: 1 14em; | |||
text-align: center; | |||
margin: 0.25em; | |||
} | |||
/** | |||
* MARK: Типы урона | |||
*/ | |||
.brute { | |||
color: var(--color-red); | |||
font-weight: bold; | |||
} | |||
.burn { | |||
color: var(--color-orange); | |||
font-weight: bold; | |||
} | |||
.oxygen { | |||
color: var(--color-blue); | |||
font-weight: bold; | |||
} | |||
.toxic { | |||
color: var(--color-green); | |||
font-weight: bold; | |||
} | |||
.gene { | |||
color: var(--color-purple); | |||
font-weight: bold; | |||
} | |||
.electric { | |||
color: var(--color-teal); | |||
font-weight: bold; | |||
} | |||
/** | |||
* MARK: Коды угроз | |||
*/ | |||
.code-green { | |||
color: var(--color-green); | |||
} | |||
.code-blue { | |||
color: var(--color-blue); | |||
} | |||
.code-red { | |||
color: var(--color-red); | |||
} | |||
.code-gamma { | |||
color: var(--color-orange); | |||
} | |||
.code-delta { | |||
color: var(--color-purple); | |||
} | |||
/** | |||
* MARK: Template/Rules | |||
*/ | |||
.rule-template { | |||
cursor: default; | |||
overflow: hidden; | |||
position: relative; | position: relative; | ||
margin-bottom: 0.75rem; | |||
border-radius: var(--border-radius-medium); | |||
box-shadow: 0 0 0.5rem -0.1rem, inset 0 0 0.25rem 0rem; | |||
transition: box-shadow var(--transition-time); | |||
} | |||
.rule-template:hover { | |||
box-shadow: 0 0 0.75rem 0, inset 0 0 0.25rem 0.1rem; | |||
} | } | ||
. | .rule-template:last-child { | ||
margin-bottom: 0; | |||
margin- | |||
} | } | ||
. | .rule-template .rule-template { | ||
margin: 0.5rem 0 0; | |||
box-shadow: none; | |||
transition: none; | |||
} | } | ||
. | .rule-template .rule-template:first-child { | ||
margin: 0.75rem 0 0.1rem; | |||
} | } | ||
. | .rule-title h3, | ||
.rule-title h4 { | |||
margin: 0; | |||
padding: 0; | |||
line-height: 1.4; | |||
padding | |||
} | } | ||
. | .rule-number { | ||
display: inline-flex; | |||
justify-content: center; | |||
align-items: center; | |||
white-space: nowrap; | |||
padding: 0.33rem 0.75rem 0.15rem; | |||
width: 3.75em; | |||
} | } | ||
. | .rule-hidden { | ||
display: none; | |||
} | } | ||
.rule-name { | |||
. | padding: 0.33rem 0.75rem 0.15rem; | ||
} | } | ||
.rule-content { | |||
padding: 0.5rem 0.6rem; | |||
text-align: left; | |||
} | } | ||
Строка 144: | Строка 471: | ||
padding: 0.2em; | padding: 0.2em; | ||
} | } | ||
.items-table:not(.regular) td:not(.regular):first-of-type, | .items-table:not(.regular) td:not(.regular):first-of-type, | ||
td.capital { | td.capital { | ||
Строка 159: | Строка 487: | ||
tr.colors-secure, | tr.colors-secure, | ||
tr.colors-Security { | tr.colors-Security { | ||
background-color: | background-color: var(--security-light); | ||
border-color: | border-color: var(--security-secondary); | ||
} | } | ||
.colors-secure th, | .colors-secure th, | ||
Строка 166: | Строка 494: | ||
tr.colors-secure th, | tr.colors-secure th, | ||
tr.colors-Security th { | tr.colors-Security th { | ||
background-color: | background-color: var(--security-primary); | ||
border-color: | border-color: var(--security-opaque); | ||
} | } | ||
.colors-secure td, | .colors-secure td, | ||
Строка 173: | Строка 501: | ||
tr.colors-secure td, | tr.colors-secure td, | ||
tr.colors-Security td { | tr.colors-Security td { | ||
background-color: | background-color: var(--security-transparent); | ||
} | } | ||
:not(.regular).colors-secure td:not(.regular):first-of-type, | :not(.regular).colors-secure td:not(.regular):first-of-type, | ||
Строка 181: | Строка 509: | ||
:not(.regular) tr.colors-secure td:not(.regular):first-of-type, | :not(.regular) tr.colors-secure td:not(.regular):first-of-type, | ||
:not(.regular) tr.colors-Security td:not(.regular):first-of-type { | :not(.regular) tr.colors-Security td:not(.regular):first-of-type { | ||
background-color: | background-color: var(--security-light); | ||
color: | color: var(--color-text); | ||
border-color: | border-color: var(--security-opaque); | ||
} | } | ||
Строка 191: | Строка 519: | ||
tr.colors-science, | tr.colors-science, | ||
tr.colors-Science { | tr.colors-Science { | ||
background-color: | background-color: var(--science-light); | ||
border-color: | border-color: var(--science-secondary); | ||
} | } | ||
.colors-science th, | .colors-science th, | ||
Строка 198: | Строка 526: | ||
tr.colors-science th, | tr.colors-science th, | ||
tr.colors-Science th { | tr.colors-Science th { | ||
background-color: | background-color: var(--science-primary); | ||
border-color: | border-color: var(--science-opaque); | ||
} | } | ||
.colors-science td, | .colors-science td, | ||
Строка 205: | Строка 533: | ||
tr.colors-science td, | tr.colors-science td, | ||
tr.colors-Science td { | tr.colors-Science td { | ||
background-color: | background-color: var(--science-transparent); | ||
} | } | ||
:not(.regular).colors-science td:not(.regular):first-of-type, | :not(.regular).colors-science td:not(.regular):first-of-type, | ||
Строка 213: | Строка 541: | ||
:not(.regular) tr.colors-science td:not(.regular):first-of-type, | :not(.regular) tr.colors-science td:not(.regular):first-of-type, | ||
:not(.regular) tr.colors-Science td:not(.regular):first-of-type { | :not(.regular) tr.colors-Science td:not(.regular):first-of-type { | ||
background-color: | background-color: var(--science-light); | ||
color: | color: var(--color-text); | ||
border-color: | border-color: var(--science-opaque); | ||
} | } | ||
Строка 223: | Строка 551: | ||
tr.colors-service, | tr.colors-service, | ||
tr.colors-Service { | tr.colors-Service { | ||
background-color: | background-color: var(--civilian-light); | ||
border-color: | border-color: var(--civilian-secondary); | ||
} | } | ||
.colors-service th, | .colors-service th, | ||
Строка 230: | Строка 558: | ||
tr.colors-service th, | tr.colors-service th, | ||
tr.colors-Service th { | tr.colors-Service th { | ||
background-color: | background-color: var(--civilian-primary); | ||
border-color: | border-color: var(--civilian-opaque); | ||
} | } | ||
.colors-service td, | .colors-service td, | ||
Строка 237: | Строка 565: | ||
tr.colors-service td, | tr.colors-service td, | ||
tr.colors-Service td { | tr.colors-Service td { | ||
background-color: | background-color: var(--civilian-transparent); | ||
} | } | ||
:not(.regular).colors-service td:not(.regular):first-of-type, | :not(.regular).colors-service td:not(.regular):first-of-type, | ||
Строка 245: | Строка 573: | ||
:not(.regular) tr.colors-service td:not(.regular):first-of-type, | :not(.regular) tr.colors-service td:not(.regular):first-of-type, | ||
:not(.regular) tr.colors-Service td:not(.regular):first-of-type { | :not(.regular) tr.colors-Service td:not(.regular):first-of-type { | ||
background-color: | background-color: var(--civilian-light); | ||
color: | color: var(--color-text); | ||
border-color: | border-color: var(--civilian-opaque); | ||
} | } | ||
Строка 255: | Строка 583: | ||
tr.colors-engine, | tr.colors-engine, | ||
tr.colors-Engineering { | tr.colors-Engineering { | ||
background-color: | background-color: var(--engineer-light); | ||
border-color: | border-color: var(--engineer-secondary); | ||
} | } | ||
.colors-engine th, | .colors-engine th, | ||
Строка 262: | Строка 590: | ||
tr.colors-engine th, | tr.colors-engine th, | ||
tr.colors-Engineering th { | tr.colors-Engineering th { | ||
background-color: | background-color: var(--engineer-primary); | ||
border-color: | border-color: var(--engineer-opaque); | ||
} | } | ||
.colors-engine td, | .colors-engine td, | ||
Строка 269: | Строка 597: | ||
tr.colors-engine td, | tr.colors-engine td, | ||
tr.colors-Engineering td { | tr.colors-Engineering td { | ||
background-color: | background-color: var(--engineer-transparent); | ||
} | } | ||
:not(.regular).colors-engine td:not(.regular):first-of-type, | :not(.regular).colors-engine td:not(.regular):first-of-type, | ||
Строка 277: | Строка 605: | ||
:not(.regular) tr.colors-engine td:not(.regular):first-of-type, | :not(.regular) tr.colors-engine td:not(.regular):first-of-type, | ||
:not(.regular) tr.colors-Engineering td:not(.regular):first-of-type { | :not(.regular) tr.colors-Engineering td:not(.regular):first-of-type { | ||
background-color: | background-color: var(--engineer-light); | ||
color: | color: var(--color-text); | ||
border-color: | border-color: var(--engineer-opaque); | ||
} | } | ||
Строка 287: | Строка 615: | ||
tr.colors-command, | tr.colors-command, | ||
tr.colors-Command { | tr.colors-Command { | ||
background-color: | background-color: var(--command-light); | ||
border-color: | border-color: var(--command-secondary); | ||
} | } | ||
.colors-command th, | .colors-command th, | ||
Строка 294: | Строка 622: | ||
tr.colors-command th, | tr.colors-command th, | ||
tr.colors-Command th { | tr.colors-Command th { | ||
background-color: | background-color: var(--command-primary); | ||
border-color: | border-color: var(--command-opaque); | ||
} | } | ||
.colors-command td, | .colors-command td, | ||
Строка 301: | Строка 629: | ||
tr.colors-command td, | tr.colors-command td, | ||
tr.colors-Command td { | tr.colors-Command td { | ||
background-color: | background-color: var(--command-transparent); | ||
} | } | ||
:not(.regular).colors-command td:not(.regular):first-of-type, | :not(.regular).colors-command td:not(.regular):first-of-type, | ||
Строка 309: | Строка 637: | ||
:not(.regular) tr.colors-command td:not(.regular):first-of-type, | :not(.regular) tr.colors-command td:not(.regular):first-of-type, | ||
:not(.regular) tr.colors-Command td:not(.regular):first-of-type { | :not(.regular) tr.colors-Command td:not(.regular):first-of-type { | ||
background-color: | background-color: var(--command-light); | ||
color: | color: var(--color-white); | ||
border-color: | border-color: var(--command-opaque); | ||
} | } | ||
Строка 319: | Строка 647: | ||
tr.colors-medik, | tr.colors-medik, | ||
tr.colors-Medical { | tr.colors-Medical { | ||
background-color: | background-color: var(--medical-light); | ||
border-color: | border-color: var(--medical-secondary); | ||
} | } | ||
.colors-medik th, | .colors-medik th, | ||
Строка 326: | Строка 654: | ||
tr.colors-medik th, | tr.colors-medik th, | ||
tr.colors-Medical th { | tr.colors-Medical th { | ||
background-color: | background-color: var(--medical-primary); | ||
border-color: | border-color: var(--medical-opaque); | ||
} | } | ||
.colors-medik td, | .colors-medik td, | ||
Строка 333: | Строка 661: | ||
tr.colors-medik td, | tr.colors-medik td, | ||
tr.colors-Medical td { | tr.colors-Medical td { | ||
background-color: | background-color: var(--medical-transparent); | ||
} | } | ||
:not(.regular).colors-medik td:not(.regular):first-of-type, | :not(.regular).colors-medik td:not(.regular):first-of-type, | ||
Строка 341: | Строка 669: | ||
:not(.regular) tr.colors-medik td:not(.regular):first-of-type, | :not(.regular) tr.colors-medik td:not(.regular):first-of-type, | ||
:not(.regular) tr.colors-Medical td:not(.regular):first-of-type { | :not(.regular) tr.colors-Medical td:not(.regular):first-of-type { | ||
background-color: | background-color: var(--medical-light); | ||
color: | color: var(--color-text); | ||
border-color: | border-color: var(--medical-opaque); | ||
} | } | ||
Строка 351: | Строка 679: | ||
tr.colors-suply, | tr.colors-suply, | ||
tr.colors-Supply { | tr.colors-Supply { | ||
background-color: | background-color: var(--supply-light); | ||
border-color: | border-color: var(--supply-secondary); | ||
} | } | ||
.colors-suply th, | .colors-suply th, | ||
Строка 358: | Строка 686: | ||
tr.colors-suply th, | tr.colors-suply th, | ||
tr.colors-Supply th { | tr.colors-Supply th { | ||
background-color: | background-color: var(--supply-primary); | ||
border-color: | border-color: var(--supply-opaque); | ||
} | } | ||
.colors-suply td, | .colors-suply td, | ||
Строка 365: | Строка 693: | ||
tr.colors-suply td, | tr.colors-suply td, | ||
tr.colors-Supply td { | tr.colors-Supply td { | ||
background-color: | background-color: var(--supply-transparent); | ||
} | } | ||
:not(.regular).colors-suply td:not(.regular):first-of-type, | :not(.regular).colors-suply td:not(.regular):first-of-type, | ||
Строка 373: | Строка 701: | ||
:not(.regular) tr.colors-suply td:not(.regular):first-of-type, | :not(.regular) tr.colors-suply td:not(.regular):first-of-type, | ||
:not(.regular) tr.colors-Supply td:not(.regular):first-of-type { | :not(.regular) tr.colors-Supply td:not(.regular):first-of-type { | ||
background-color: | background-color: var(--supply-light); | ||
color: | color: var(--color-text); | ||
border-color: | border-color: var(--supply-opaque); | ||
} | } | ||
Строка 383: | Строка 711: | ||
tr.colors-lava, | tr.colors-lava, | ||
tr.colors-Lavaland { | tr.colors-Lavaland { | ||
background-color: | background-color: var(--lavaland-light); | ||
border-color: | border-color: var(--lavaland-secondary); | ||
} | } | ||
.colors-lava th, | .colors-lava th, | ||
Строка 390: | Строка 718: | ||
tr.colors-lava th, | tr.colors-lava th, | ||
tr.colors-Lavaland th { | tr.colors-Lavaland th { | ||
background-color: | background-color: var(--lavaland-primary); | ||
border-color: | border-color: var(--lavaland-opaque); | ||
} | } | ||
.colors-lava td, | .colors-lava td, | ||
Строка 397: | Строка 725: | ||
tr.colors-lava td, | tr.colors-lava td, | ||
tr.colors-Lavaland td { | tr.colors-Lavaland td { | ||
background-color: | background-color: var(--lavaland-transparent); | ||
} | } | ||
:not(.regular).colors-lava td:not(.regular):first-of-type, | :not(.regular).colors-lava td:not(.regular):first-of-type, | ||
Строка 405: | Строка 733: | ||
:not(.regular) tr.colors-lava td:not(.regular):first-of-type, | :not(.regular) tr.colors-lava td:not(.regular):first-of-type, | ||
:not(.regular) tr.colors-Lavaland td:not(.regular):first-of-type { | :not(.regular) tr.colors-Lavaland td:not(.regular):first-of-type { | ||
background-color: | background-color: var(--lavaland-light); | ||
color: | color: var(--color-text); | ||
border-color: | border-color: var(--lavaland-opaque); | ||
} | } | ||
Строка 415: | Строка 743: | ||
tr.colors-synth, | tr.colors-synth, | ||
tr.colors-Synthetic { | tr.colors-Synthetic { | ||
background-color: | background-color: var(--synthetic-light); | ||
border-color: | border-color: var(--synthetic-secondary); | ||
} | } | ||
.colors-synth th, | .colors-synth th, | ||
Строка 422: | Строка 750: | ||
tr.colors-synth th, | tr.colors-synth th, | ||
tr.colors-Synthetic th { | tr.colors-Synthetic th { | ||
background-color: | background-color: var(--synthetic-primary); | ||
border-color: | border-color: var(--synthetic-opaque); | ||
} | } | ||
.colors-synth td, | .colors-synth td, | ||
Строка 429: | Строка 757: | ||
tr.colors-synth td, | tr.colors-synth td, | ||
tr.colors-Synthetic td { | tr.colors-Synthetic td { | ||
background-color: | background-color: var(--synthetic-transparent); | ||
} | } | ||
:not(.regular).colors-synth td:not(.regular):first-of-type, | :not(.regular).colors-synth td:not(.regular):first-of-type, | ||
Строка 437: | Строка 765: | ||
:not(.regular) tr.colors-synth td:not(.regular):first-of-type, | :not(.regular) tr.colors-synth td:not(.regular):first-of-type, | ||
:not(.regular) tr.colors-Synthetic td:not(.regular):first-of-type { | :not(.regular) tr.colors-Synthetic td:not(.regular):first-of-type { | ||
background-color: | background-color: var(--synthetic-light); | ||
color: | color: var(--color-white); | ||
border-color: | border-color: var(--synthetic-opaque); | ||
} | } | ||
Строка 447: | Строка 775: | ||
tr.colors-antag, | tr.colors-antag, | ||
tr.colors-Antagonist { | tr.colors-Antagonist { | ||
background-color: | background-color: var(--antag-light); | ||
border-color: | border-color: var(--antag-secondary); | ||
} | } | ||
.colors-antag th, | .colors-antag th, | ||
Строка 454: | Строка 782: | ||
tr.colors-antag th, | tr.colors-antag th, | ||
tr.colors-Antagonist th { | tr.colors-Antagonist th { | ||
background-color: | background-color: var(--antag-primary); | ||
border-color: | border-color: var(--antag-opaque); | ||
} | } | ||
.colors-antag td, | .colors-antag td, | ||
Строка 461: | Строка 789: | ||
tr.colors-antag td, | tr.colors-antag td, | ||
tr.colors-Antagonist td { | tr.colors-Antagonist td { | ||
background-color: | background-color: var(--antag-transparent); | ||
} | } | ||
:not(.regular).colors-antag td:not(.regular):first-of-type, | :not(.regular).colors-antag td:not(.regular):first-of-type, | ||
Строка 469: | Строка 797: | ||
:not(.regular) tr.colors-antag td:not(.regular):first-of-type, | :not(.regular) tr.colors-antag td:not(.regular):first-of-type, | ||
:not(.regular) tr.colors-Antagonist td:not(.regular):first-of-type { | :not(.regular) tr.colors-Antagonist td:not(.regular):first-of-type { | ||
background-color: | background-color: var(--antag-light); | ||
color: | color: var(--color-red); | ||
border-color: | border-color: var(--antag-opaque); | ||
} | } | ||
Строка 479: | Строка 807: | ||
tr.colors-cult, | tr.colors-cult, | ||
tr.colors-Cultist { | tr.colors-Cultist { | ||
background-color: | background-color: var(--cult-light); | ||
border-color: | border-color: var(--cult-secondary); | ||
} | } | ||
.colors-cult th, | .colors-cult th, | ||
Строка 486: | Строка 814: | ||
tr.colors-cult th, | tr.colors-cult th, | ||
tr.colors-Cultist th { | tr.colors-Cultist th { | ||
background-color: | background-color: var(--cult-primary); | ||
border-color: | border-color: var(--cult-opaque); | ||
} | } | ||
.colors-cult td, | .colors-cult td, | ||
Строка 493: | Строка 821: | ||
tr.colors-cult td, | tr.colors-cult td, | ||
tr.colors-Cultist td { | tr.colors-Cultist td { | ||
background-color: | background-color: var(--cult-transparent); | ||
} | } | ||
:not(.regular).colors-cult td:not(.regular):first-of-type, | :not(.regular).colors-cult td:not(.regular):first-of-type, | ||
Строка 501: | Строка 829: | ||
:not(.regular) tr.colors-cult td:not(.regular):first-of-type, | :not(.regular) tr.colors-cult td:not(.regular):first-of-type, | ||
:not(.regular) tr.colors-Cultist td:not(.regular):first-of-type { | :not(.regular) tr.colors-Cultist td:not(.regular):first-of-type { | ||
background-color: | background-color: var(--cult-light); | ||
color: | color: var(--color-red); | ||
border-color: | border-color: var(--cult-opaque); | ||
} | } | ||
Строка 511: | Строка 839: | ||
tr.colors-ratvar, | tr.colors-ratvar, | ||
tr.colors-Ratvar { | tr.colors-Ratvar { | ||
background-color: | background-color: var(--ratvar-light); | ||
border-color: | border-color: var(--ratvar-secondary); | ||
} | } | ||
.colors-ratvar th, | .colors-ratvar th, | ||
Строка 518: | Строка 846: | ||
tr.colors-ratvar th, | tr.colors-ratvar th, | ||
tr.colors-Ratvar th { | tr.colors-Ratvar th { | ||
background-color: | background-color: var(--ratvar-primary); | ||
border-color: | border-color: var(--ratvar-opaque); | ||
} | } | ||
.colors-ratvar td, | .colors-ratvar td, | ||
Строка 525: | Строка 853: | ||
tr.colors-ratvar td, | tr.colors-ratvar td, | ||
tr.colors-Ratvar td { | tr.colors-Ratvar td { | ||
background-color: | background-color: var(--ratvar-transparent); | ||
} | } | ||
:not(.regular).colors-ratvar td:not(.regular):first-of-type, | :not(.regular).colors-ratvar td:not(.regular):first-of-type, | ||
Строка 533: | Строка 861: | ||
:not(.regular) tr.colors-ratvar td:not(.regular):first-of-type, | :not(.regular) tr.colors-ratvar td:not(.regular):first-of-type, | ||
:not(.regular) tr.colors-Ratvar td:not(.regular):first-of-type { | :not(.regular) tr.colors-Ratvar td:not(.regular):first-of-type { | ||
background-color: | background-color: var(--ratvar-light); | ||
color: | color: var(--color-white); | ||
border-color: | border-color: var(--ratvar-opaque); | ||
} | } | ||
Строка 543: | Строка 871: | ||
tr.colors-xenom, | tr.colors-xenom, | ||
tr.colors-Xenomorph { | tr.colors-Xenomorph { | ||
background-color: | background-color: var(--special-light); | ||
border-color: | border-color: var(--special-secondary); | ||
} | } | ||
.colors-xenom th, | .colors-xenom th, | ||
Строка 550: | Строка 878: | ||
tr.colors-xenom th, | tr.colors-xenom th, | ||
tr.colors-Xenomorph th { | tr.colors-Xenomorph th { | ||
background-color: | background-color: var(--special-primary); | ||
border-color: | border-color: var(--special-opaque); | ||
} | } | ||
.colors-xenom td, | .colors-xenom td, | ||
Строка 557: | Строка 885: | ||
tr.colors-xenom td, | tr.colors-xenom td, | ||
tr.colors-Xenomorph td { | tr.colors-Xenomorph td { | ||
background-color: | background-color: var(--special-transparent); | ||
} | } | ||
:not(.regular).colors-xenom td:not(.regular):first-of-type, | :not(.regular).colors-xenom td:not(.regular):first-of-type, | ||
Строка 565: | Строка 893: | ||
:not(.regular) tr.colors-xenom td:not(.regular):first-of-type, | :not(.regular) tr.colors-xenom td:not(.regular):first-of-type, | ||
:not(.regular) tr.colors-Xenomorph td:not(.regular):first-of-type { | :not(.regular) tr.colors-Xenomorph td:not(.regular):first-of-type { | ||
background-color: | background-color: var(--special-light); | ||
color: | color: var(--color-white); | ||
border-color: | border-color: var(--special-opaque); | ||
} | } | ||
Строка 575: | Строка 903: | ||
tr.colors-marine, | tr.colors-marine, | ||
tr.colors-Marine { | tr.colors-Marine { | ||
background-color: | background-color: var(--centcom-light); | ||
border-color: | border-color: var(--centcom-secondary); | ||
} | } | ||
.colors-marine th, | .colors-marine th, | ||
Строка 582: | Строка 910: | ||
tr.colors-marine th, | tr.colors-marine th, | ||
tr.colors-Marine th { | tr.colors-Marine th { | ||
background-color: | background-color: var(--centcom-primary); | ||
border-color: | border-color: var(--centcom-opaque); | ||
} | } | ||
.colors-marine td, | .colors-marine td, | ||
Строка 589: | Строка 917: | ||
tr.colors-marine td, | tr.colors-marine td, | ||
tr.colors-Marine td { | tr.colors-Marine td { | ||
background-color: | background-color: var(--centcom-transparent); | ||
} | } | ||
:not(.regular).colors-marine td:not(.regular):first-of-type, | :not(.regular).colors-marine td:not(.regular):first-of-type, | ||
Строка 597: | Строка 925: | ||
:not(.regular) tr.colors-marine td:not(.regular):first-of-type, | :not(.regular) tr.colors-marine td:not(.regular):first-of-type, | ||
:not(.regular) tr.colors-Marine td:not(.regular):first-of-type { | :not(.regular) tr.colors-Marine td:not(.regular):first-of-type { | ||
background-color: | background-color: var(--centcom-light); | ||
color: | color: var(--color-text); | ||
border-color: | border-color: var(--centcom-opaque); | ||
} | } | ||
Строка 607: | Строка 935: | ||
tr.colors-wizard, | tr.colors-wizard, | ||
tr.colors-Wizard { | tr.colors-Wizard { | ||
background-color: | background-color: var(--wizard-light); | ||
border-color: | border-color: var(--wizard-secondary); | ||
} | } | ||
.colors-wizard th, | .colors-wizard th, | ||
Строка 614: | Строка 942: | ||
tr.colors-wizard th, | tr.colors-wizard th, | ||
tr.colors-Wizard th { | tr.colors-Wizard th { | ||
background-color: | background-color: var(--wizard-primary); | ||
border-color: | border-color: var(--wizard-opaque); | ||
} | } | ||
.colors-wizard td, | .colors-wizard td, | ||
Строка 621: | Строка 949: | ||
tr.colors-wizard td, | tr.colors-wizard td, | ||
tr.colors-Wizard td { | tr.colors-Wizard td { | ||
background-color: | background-color: var(--wizard-transparent); | ||
} | } | ||
:not(.regular).colors-wizard td:not(.regular):first-of-type, | :not(.regular).colors-wizard td:not(.regular):first-of-type, | ||
Строка 629: | Строка 957: | ||
:not(.regular) tr.colors-wizard td:not(.regular):first-of-type, | :not(.regular) tr.colors-wizard td:not(.regular):first-of-type, | ||
:not(.regular) tr.colors-Wizard td:not(.regular):first-of-type { | :not(.regular) tr.colors-Wizard td:not(.regular):first-of-type { | ||
background-color: | background-color: var(--wizard-light); | ||
color: | color: var(--color-text); | ||
border-color: | border-color: var(--wizard-opaque); | ||
} | } | ||
Строка 639: | Строка 967: | ||
tr.colors-abductor, | tr.colors-abductor, | ||
tr.colors-Abductor { | tr.colors-Abductor { | ||
background-color: | background-color: var(--gray-light); | ||
border-color: | border-color: var(--gray-secondary); | ||
} | } | ||
.colors-abductor th, | .colors-abductor th, | ||
Строка 646: | Строка 974: | ||
tr.colors-abductor th, | tr.colors-abductor th, | ||
tr.colors-Abductor th { | tr.colors-Abductor th { | ||
background-color: | background-color: var(--gray-primary); | ||
border-color: | border-color: var(--gray-opaque); | ||
} | } | ||
.colors-abductor td, | .colors-abductor td, | ||
Строка 653: | Строка 981: | ||
tr.colors-abductor td, | tr.colors-abductor td, | ||
tr.colors-Abductor td { | tr.colors-Abductor td { | ||
background-color: | background-color: var(--gray-transparent); | ||
} | } | ||
:not(.regular).colors-abductor td:not(.regular):first-of-type, | :not(.regular).colors-abductor td:not(.regular):first-of-type, | ||
Строка 661: | Строка 989: | ||
:not(.regular) tr.colors-abductor td:not(.regular):first-of-type, | :not(.regular) tr.colors-abductor td:not(.regular):first-of-type, | ||
:not(.regular) tr.colors-Abductor td:not(.regular):first-of-type { | :not(.regular) tr.colors-Abductor td:not(.regular):first-of-type { | ||
background-color: | background-color: var(--gray-light); | ||
color: | color: var(--color-text); | ||
border-color: | border-color: var(--gray-opaque); | ||
} | } | ||
Строка 670: | Строка 998: | ||
#mw-panel.collapsible-nav .portal.collapsed .vector-menu-heading:hover, | #mw-panel.collapsible-nav .portal.collapsed .vector-menu-heading:hover, | ||
#mw-panel.collapsible-nav .portal .vector-menu-heading * { | #mw-panel.collapsible-nav .portal .vector-menu-heading * { | ||
color: | color: var(--gray-opaque); | ||
text-decoration: none; | text-decoration: none; | ||
} | } | ||
Строка 704: | Строка 1032: | ||
background-color: var(--color-bg-section); | background-color: var(--color-bg-section); | ||
border: var(--border-classic); | border: var(--border-classic); | ||
border-radius: var(--border-radius-medium); | |||
padding: 0.25em; | padding: 0.25em; | ||
margin: 0.25em; | margin: 0.25em; | ||
flex: 1 0 12em; | flex: 1 0 12em; | ||
justify-content: center; | |||
} | } |
Текущая версия от 16:06, 7 ноября 2024
/* Hide noscript only elements */ .client-js *.noscript { display: none; } /* Disable blur */ .blurless { backdrop-filter: blur(0) !important; } /* Fill */ .fill { position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: var(--index-low); } /** * MARK: MainPage/Content */ .wiki-mainpage { display: flex; flex-wrap: wrap; gap: 0.75em; } .wiki-mainpage-column { display: flex; flex-direction: column; flex: 1; gap: 0.75em; } /** * MARK: MainPage/Splash */ .paradise-logo { display: flex; flex-direction: column; align-items: center; max-width: 900px; background-color: var(--color-bg-section-light); border: var(--border-classic); border-radius: var(--border-radius-large); backdrop-filter: var(--blur-default); } .paradise-logo a img { width: 100%; height: auto; } .paradise-welcome { display: inline-flex; text-align: center; font-weight: bold; padding: 0 1em; margin: -1.5em 0.5em 0.5em 0.5em; background-color: var(--color-primary); color: var(--color-white); border-radius: var(--border-radius-large); } .paradise-info { display: flex; flex-direction: column; align-items: center; text-align: center; } .paradise-info-string { overflow: hidden; display: flex; max-width: 90%; margin-bottom: 0.25em; background-color: var(--color-bg-section-light); border: var(--border-classic); border-top: 0; border-radius: 0 0 var(--border-radius-large) var(--border-radius-large); box-shadow: inset 0px 5px 5px -5px rgba(0, 0, 0, 0.2); backdrop-filter: var(--blur-default); } .paradise-info-string span:not([class]) { padding: 0.5em 0.75em; border-right: var(--border-classic); border-left: var(--border-classic); @media (max-width: 719px) { display: none; } } .paradise-info-string .paradise-info-link { min-width: 3em; @media (max-width: 719px) { min-width: 10em; height: 2.5em; } } .paradise-info-string .paradise-info-link:first-of-type { @media (max-width: 719px) { border-right: var(--border-classic); } } .paradise-info-string .paradise-info-link a { display: inline-flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: var(--color-text-semi-translucent) !important; transition: color var(--transition-time), background-color var(--transition-time); } .paradise-info-string .paradise-info-link a:hover { background-color: var(--color-bg-hover); color: var(--color-text) !important; } .paradise-info-string .paradise-info-link a:after { content: ""; font: unset; @media (min-width: 720px) { display: none; } } .paradise-info-string .paradise-info-link:first-of-type a:after { @media (max-width: 719px) { content: "Discord"; margin-left: 1em; } } .paradise-info-string .paradise-info-link:last-of-type a:before { @media (max-width: 719px) { content: "GitHub"; margin-right: 1em; } } .paradise-info-string .paradise-info-link a i { font-size: 1.25em; } /** * MARK: MainPage/Buttons */ .pagebutton-container { user-select: none; display: inline-flex; flex-direction: column; overflow: hidden; position: relative; margin: 0.25em; outline: 1px outset var(--color-border); border-radius: var(--border-radius-small); transition: box-shadow var(--transition-time), transform var(--transition-time); } .pagebutton-container:hover { box-shadow: 0 0.25em 0.5em 0; transform: translateY(-0.3em); z-index: 1; } .pagebutton-container:hover:focus-within { box-shadow: 0 0.25em 0.5em 0, inset 0 0 0.5em; } .pagebutton-text a { display: flex; align-items: center; justify-content: center; font-weight: bold; min-height: 21px; background-color: var(--color-bg-focus); color: var(--color-white) !important; border-top: var(--border-classic); -webkit-user-drag: none; } .pagebutton-image a img { display: flex; margin: 0 auto; padding: 0.5em; } /** * MARK: NavBar/Tabs */ .department-tabs { display: flex; flex-wrap: wrap; flex-grow: 1; overflow: auto; } .department-tabs-tab { position: relative; display: inline-flex; flex-grow: 1; flex-basis: 5%; } .department-tabs-tab a { padding: 0.4em 1em; flex-grow: 1; text-align: center; font-weight: bold; transition-property: background-color, color; } .department-tabs-tab a, .department-tabs-tab a:active { color: var(--color-text-gray); } .department-tabs-tab a:hover, .department-tabs-tab a:active:hover { background-color: var(--color-bg-hover); color: var(--color-text-darker); } .department-tabs-tab a.mw-selflink { background-color: var(--color-bg-focus) !important; color: var(--color-text) !important; box-shadow: var(--shadow-template--medium); z-index: var(--index-fore); } /** * MARK: NavBar/Buttons */ .navbar-button a { display: flex; width: 100%; height: 100%; justify-content: center; align-items: center; font-weight: bold; color: var(--color-text-darker) !important; transition-property: background-color, color; } .navbar-button a:hover { background-color: var(--color-bg-hover); } /** * MARK: TGUI Buttons */ .custom-link a { display: inline-block; margin: 0.25em; padding: 0em 0.5em; vertical-align: middle; background-color: var(--color-primary); color: var(--color-white) !important; border-radius: var(--border-radius-small); transition: background-color var(--transition-time); } .custom-link a:hover { background-color: var(--color-primary-light); } /** * MARK: Template/Notice */ .notice-wrapper { overflow: hidden; position: relative; width: 100%; border-radius: var(--border-radius-large); box-shadow: var(--shadow-template--small); } .notice-lines { flex: 1; min-width: 10%; height: 40px; box-shadow: var(--shadow-template--medium); z-index: var(--index-base); } .notice-title { overflow: hidden; position: relative; padding: 0.25em; min-width: 50%; border-radius: 0 0 var(--border-radius-large) var(--border-radius-large); box-shadow: var(--shadow-template--medium); z-index: var(--index-fore); } .notice-title-text { display: flex; justify-content: space-between; align-items: center; font-size: 1.2rem; font-family: "Comic Sans MS"; text-align: center; color: var(--color-white); } .notice-content { display: flex; align-items: center; flex-direction: column; margin: 1em; } .notice-content-text { font-size: 0.85rem; font-family: "Comic Sans MS"; text-align: center; color: var(--color-text); } /* Palette Preview */ .palette-preview { flex: 1 14em; text-align: center; margin: 0.25em; } /** * MARK: Типы урона */ .brute { color: var(--color-red); font-weight: bold; } .burn { color: var(--color-orange); font-weight: bold; } .oxygen { color: var(--color-blue); font-weight: bold; } .toxic { color: var(--color-green); font-weight: bold; } .gene { color: var(--color-purple); font-weight: bold; } .electric { color: var(--color-teal); font-weight: bold; } /** * MARK: Коды угроз */ .code-green { color: var(--color-green); } .code-blue { color: var(--color-blue); } .code-red { color: var(--color-red); } .code-gamma { color: var(--color-orange); } .code-delta { color: var(--color-purple); } /** * MARK: Template/Rules */ .rule-template { cursor: default; overflow: hidden; position: relative; margin-bottom: 0.75rem; border-radius: var(--border-radius-medium); box-shadow: 0 0 0.5rem -0.1rem, inset 0 0 0.25rem 0rem; transition: box-shadow var(--transition-time); } .rule-template:hover { box-shadow: 0 0 0.75rem 0, inset 0 0 0.25rem 0.1rem; } .rule-template:last-child { margin-bottom: 0; } .rule-template .rule-template { margin: 0.5rem 0 0; box-shadow: none; transition: none; } .rule-template .rule-template:first-child { margin: 0.75rem 0 0.1rem; } .rule-title h3, .rule-title h4 { margin: 0; padding: 0; line-height: 1.4; } .rule-number { display: inline-flex; justify-content: center; align-items: center; white-space: nowrap; padding: 0.33rem 0.75rem 0.15rem; width: 3.75em; } .rule-hidden { display: none; } .rule-name { padding: 0.33rem 0.75rem 0.15rem; } .rule-content { padding: 0.5rem 0.6rem; text-align: left; } /* Стиль таблиц с предметами и т.п. */ .items-table { width: 100%; border: var(--border-classic); border-radius: var(--border-radius-medium); background-color: var(--color-bg-section-light-opaque); } .items-table th { border: 0.2em double var(--color-border); border-radius: var(--border-radius-small); background-color: var(--color-bg-section-light); color: var(--color-text); padding: 0.2em; } .items-table td { background-color: var(--color-bg-section-light); color: var(--color-text); padding: 0.2em; } .items-table:not(.regular) td:not(.regular):first-of-type, td.capital { background-color: var(--color-bg-section-light); font-weight: bold; color: var(--color-text); border: var(--border-classic); border-radius: var(--border-radius-small); text-align: center; } /* Цвета охранного отдела */ .colors-secure, .colors-Security, tr.colors-secure, tr.colors-Security { background-color: var(--security-light); border-color: var(--security-secondary); } .colors-secure th, .colors-Security th, tr.colors-secure th, tr.colors-Security th { background-color: var(--security-primary); border-color: var(--security-opaque); } .colors-secure td, .colors-Security td, tr.colors-secure td, tr.colors-Security td { background-color: var(--security-transparent); } :not(.regular).colors-secure td:not(.regular):first-of-type, :not(.regular).colors-Security td:not(.regular):first-of-type, .colors-secure td.capital, .colors-Security td.capital, :not(.regular) tr.colors-secure td:not(.regular):first-of-type, :not(.regular) tr.colors-Security td:not(.regular):first-of-type { background-color: var(--security-light); color: var(--color-text); border-color: var(--security-opaque); } /* Цвета научного отдела */ .colors-science, .colors-Science, tr.colors-science, tr.colors-Science { background-color: var(--science-light); border-color: var(--science-secondary); } .colors-science th, .colors-Science th, tr.colors-science th, tr.colors-Science th { background-color: var(--science-primary); border-color: var(--science-opaque); } .colors-science td, .colors-Science td, tr.colors-science td, tr.colors-Science td { background-color: var(--science-transparent); } :not(.regular).colors-science td:not(.regular):first-of-type, :not(.regular).colors-Science td:not(.regular):first-of-type, .colors-science td.capital, .colors-Science td.capital, :not(.regular) tr.colors-science td:not(.regular):first-of-type, :not(.regular) tr.colors-Science td:not(.regular):first-of-type { background-color: var(--science-light); color: var(--color-text); border-color: var(--science-opaque); } /* Цвета сервисного отдела */ .colors-service, .colors-Service, tr.colors-service, tr.colors-Service { background-color: var(--civilian-light); border-color: var(--civilian-secondary); } .colors-service th, .colors-Service th, tr.colors-service th, tr.colors-Service th { background-color: var(--civilian-primary); border-color: var(--civilian-opaque); } .colors-service td, .colors-Service td, tr.colors-service td, tr.colors-Service td { background-color: var(--civilian-transparent); } :not(.regular).colors-service td:not(.regular):first-of-type, :not(.regular).colors-Service td:not(.regular):first-of-type, .colors-service td.capital, .colors-Service td.capital, :not(.regular) tr.colors-service td:not(.regular):first-of-type, :not(.regular) tr.colors-Service td:not(.regular):first-of-type { background-color: var(--civilian-light); color: var(--color-text); border-color: var(--civilian-opaque); } /* Цвета инженерного отдела */ .colors-engine, .colors-Engineering, tr.colors-engine, tr.colors-Engineering { background-color: var(--engineer-light); border-color: var(--engineer-secondary); } .colors-engine th, .colors-Engineering th, tr.colors-engine th, tr.colors-Engineering th { background-color: var(--engineer-primary); border-color: var(--engineer-opaque); } .colors-engine td, .colors-Engineering td, tr.colors-engine td, tr.colors-Engineering td { background-color: var(--engineer-transparent); } :not(.regular).colors-engine td:not(.regular):first-of-type, :not(.regular).colors-Engineering td:not(.regular):first-of-type, .colors-engine td.capital, .colors-Engineering td.capital, :not(.regular) tr.colors-engine td:not(.regular):first-of-type, :not(.regular) tr.colors-Engineering td:not(.regular):first-of-type { background-color: var(--engineer-light); color: var(--color-text); border-color: var(--engineer-opaque); } /* Цвета командного отдела */ .colors-command, .colors-Command, tr.colors-command, tr.colors-Command { background-color: var(--command-light); border-color: var(--command-secondary); } .colors-command th, .colors-Command th, tr.colors-command th, tr.colors-Command th { background-color: var(--command-primary); border-color: var(--command-opaque); } .colors-command td, .colors-Command td, tr.colors-command td, tr.colors-Command td { background-color: var(--command-transparent); } :not(.regular).colors-command td:not(.regular):first-of-type, :not(.regular).colors-Command td:not(.regular):first-of-type, .colors-command td.capital, .colors-Command td.capital, :not(.regular) tr.colors-command td:not(.regular):first-of-type, :not(.regular) tr.colors-Command td:not(.regular):first-of-type { background-color: var(--command-light); color: var(--color-white); border-color: var(--command-opaque); } /* Цвета медицинского отдела */ .colors-medik, .colors-Medical, tr.colors-medik, tr.colors-Medical { background-color: var(--medical-light); border-color: var(--medical-secondary); } .colors-medik th, .colors-Medical th, tr.colors-medik th, tr.colors-Medical th { background-color: var(--medical-primary); border-color: var(--medical-opaque); } .colors-medik td, .colors-Medical td, tr.colors-medik td, tr.colors-Medical td { background-color: var(--medical-transparent); } :not(.regular).colors-medik td:not(.regular):first-of-type, :not(.regular).colors-Medical td:not(.regular):first-of-type, .colors-medik td.capital, .colors-Medical td.capital, :not(.regular) tr.colors-medik td:not(.regular):first-of-type, :not(.regular) tr.colors-Medical td:not(.regular):first-of-type { background-color: var(--medical-light); color: var(--color-text); border-color: var(--medical-opaque); } /* Цвета снабжающего отдела */ .colors-suply, .colors-Supply, tr.colors-suply, tr.colors-Supply { background-color: var(--supply-light); border-color: var(--supply-secondary); } .colors-suply th, .colors-Supply th, tr.colors-suply th, tr.colors-Supply th { background-color: var(--supply-primary); border-color: var(--supply-opaque); } .colors-suply td, .colors-Supply td, tr.colors-suply td, tr.colors-Supply td { background-color: var(--supply-transparent); } :not(.regular).colors-suply td:not(.regular):first-of-type, :not(.regular).colors-Supply td:not(.regular):first-of-type, .colors-suply td.capital, .colors-Supply td.capital, :not(.regular) tr.colors-suply td:not(.regular):first-of-type, :not(.regular) tr.colors-Supply td:not(.regular):first-of-type { background-color: var(--supply-light); color: var(--color-text); border-color: var(--supply-opaque); } /* Цвета планетарного отдела */ .colors-lava, .colors-Lavaland, tr.colors-lava, tr.colors-Lavaland { background-color: var(--lavaland-light); border-color: var(--lavaland-secondary); } .colors-lava th, .colors-Lavaland th, tr.colors-lava th, tr.colors-Lavaland th { background-color: var(--lavaland-primary); border-color: var(--lavaland-opaque); } .colors-lava td, .colors-Lavaland td, tr.colors-lava td, tr.colors-Lavaland td { background-color: var(--lavaland-transparent); } :not(.regular).colors-lava td:not(.regular):first-of-type, :not(.regular).colors-Lavaland td:not(.regular):first-of-type, .colors-lava td.capital, .colors-Lavaland td.capital, :not(.regular) tr.colors-lava td:not(.regular):first-of-type, :not(.regular) tr.colors-Lavaland td:not(.regular):first-of-type { background-color: var(--lavaland-light); color: var(--color-text); border-color: var(--lavaland-opaque); } /* Цвета синтетического отдела */ .colors-synth, .colors-Synthetic, tr.colors-synth, tr.colors-Synthetic { background-color: var(--synthetic-light); border-color: var(--synthetic-secondary); } .colors-synth th, .colors-Synthetic th, tr.colors-synth th, tr.colors-Synthetic th { background-color: var(--synthetic-primary); border-color: var(--synthetic-opaque); } .colors-synth td, .colors-Synthetic td, tr.colors-synth td, tr.colors-Synthetic td { background-color: var(--synthetic-transparent); } :not(.regular).colors-synth td:not(.regular):first-of-type, :not(.regular).colors-Synthetic td:not(.regular):first-of-type, .colors-synth td.capital, .colors-Synthetic td.capital, :not(.regular) tr.colors-synth td:not(.regular):first-of-type, :not(.regular) tr.colors-Synthetic td:not(.regular):first-of-type { background-color: var(--synthetic-light); color: var(--color-white); border-color: var(--synthetic-opaque); } /* Цвета антагского отдела */ .colors-antag, .colors-Antagonist, tr.colors-antag, tr.colors-Antagonist { background-color: var(--antag-light); border-color: var(--antag-secondary); } .colors-antag th, .colors-Antagonist th, tr.colors-antag th, tr.colors-Antagonist th { background-color: var(--antag-primary); border-color: var(--antag-opaque); } .colors-antag td, .colors-Antagonist td, tr.colors-antag td, tr.colors-Antagonist td { background-color: var(--antag-transparent); } :not(.regular).colors-antag td:not(.regular):first-of-type, :not(.regular).colors-Antagonist td:not(.regular):first-of-type, .colors-antag td.capital, .colors-Antagonist td.capital, :not(.regular) tr.colors-antag td:not(.regular):first-of-type, :not(.regular) tr.colors-Antagonist td:not(.regular):first-of-type { background-color: var(--antag-light); color: var(--color-red); border-color: var(--antag-opaque); } /* Цвета культистского отдела */ .colors-cult, .colors-Cultist, tr.colors-cult, tr.colors-Cultist { background-color: var(--cult-light); border-color: var(--cult-secondary); } .colors-cult th, .colors-Cultist th, tr.colors-cult th, tr.colors-Cultist th { background-color: var(--cult-primary); border-color: var(--cult-opaque); } .colors-cult td, .colors-Cultist td, tr.colors-cult td, tr.colors-Cultist td { background-color: var(--cult-transparent); } :not(.regular).colors-cult td:not(.regular):first-of-type, :not(.regular).colors-Cultist td:not(.regular):first-of-type, .colors-cult td.capital, .colors-Cultist td.capital, :not(.regular) tr.colors-cult td:not(.regular):first-of-type, :not(.regular) tr.colors-Cultist td:not(.regular):first-of-type { background-color: var(--cult-light); color: var(--color-red); border-color: var(--cult-opaque); } /* Цвета ратваровского отдела */ .colors-ratvar, .colors-Ratvar, tr.colors-ratvar, tr.colors-Ratvar { background-color: var(--ratvar-light); border-color: var(--ratvar-secondary); } .colors-ratvar th, .colors-Ratvar th, tr.colors-ratvar th, tr.colors-Ratvar th { background-color: var(--ratvar-primary); border-color: var(--ratvar-opaque); } .colors-ratvar td, .colors-Ratvar td, tr.colors-ratvar td, tr.colors-Ratvar td { background-color: var(--ratvar-transparent); } :not(.regular).colors-ratvar td:not(.regular):first-of-type, :not(.regular).colors-Ratvar td:not(.regular):first-of-type, .colors-ratvar td.capital, .colors-Ratvar td.capital, :not(.regular) tr.colors-ratvar td:not(.regular):first-of-type, :not(.regular) tr.colors-Ratvar td:not(.regular):first-of-type { background-color: var(--ratvar-light); color: var(--color-white); border-color: var(--ratvar-opaque); } /* Цвета ксеноморфного отдела */ .colors-xenom, .colors-Xenomorph, tr.colors-xenom, tr.colors-Xenomorph { background-color: var(--special-light); border-color: var(--special-secondary); } .colors-xenom th, .colors-Xenomorph th, tr.colors-xenom th, tr.colors-Xenomorph th { background-color: var(--special-primary); border-color: var(--special-opaque); } .colors-xenom td, .colors-Xenomorph td, tr.colors-xenom td, tr.colors-Xenomorph td { background-color: var(--special-transparent); } :not(.regular).colors-xenom td:not(.regular):first-of-type, :not(.regular).colors-Xenomorph td:not(.regular):first-of-type, .colors-xenom td.capital, .colors-Xenomorph td.capital, :not(.regular) tr.colors-xenom td:not(.regular):first-of-type, :not(.regular) tr.colors-Xenomorph td:not(.regular):first-of-type { background-color: var(--special-light); color: var(--color-white); border-color: var(--special-opaque); } /* Цвета марининого отдела */ .colors-marine, .colors-Marine, tr.colors-marine, tr.colors-Marine { background-color: var(--centcom-light); border-color: var(--centcom-secondary); } .colors-marine th, .colors-Marine th, tr.colors-marine th, tr.colors-Marine th { background-color: var(--centcom-primary); border-color: var(--centcom-opaque); } .colors-marine td, .colors-Marine td, tr.colors-marine td, tr.colors-Marine td { background-color: var(--centcom-transparent); } :not(.regular).colors-marine td:not(.regular):first-of-type, :not(.regular).colors-Marine td:not(.regular):first-of-type, .colors-marine td.capital, .colors-Marine td.capital, :not(.regular) tr.colors-marine td:not(.regular):first-of-type, :not(.regular) tr.colors-Marine td:not(.regular):first-of-type { background-color: var(--centcom-light); color: var(--color-text); border-color: var(--centcom-opaque); } /* Цвета волшебного отдела */ .colors-wizard, .colors-Wizard, tr.colors-wizard, tr.colors-Wizard { background-color: var(--wizard-light); border-color: var(--wizard-secondary); } .colors-wizard th, .colors-Wizard th, tr.colors-wizard th, tr.colors-Wizard th { background-color: var(--wizard-primary); border-color: var(--wizard-opaque); } .colors-wizard td, .colors-Wizard td, tr.colors-wizard td, tr.colors-Wizard td { background-color: var(--wizard-transparent); } :not(.regular).colors-wizard td:not(.regular):first-of-type, :not(.regular).colors-Wizard td:not(.regular):first-of-type, .colors-wizard td.capital, .colors-Wizard td.capital, :not(.regular) tr.colors-wizard td:not(.regular):first-of-type, :not(.regular) tr.colors-Wizard td:not(.regular):first-of-type { background-color: var(--wizard-light); color: var(--color-text); border-color: var(--wizard-opaque); } /* Цвета похитнического отдела */ .colors-abductor, .colors-Abductor, tr.colors-abductor, tr.colors-Abductor { background-color: var(--gray-light); border-color: var(--gray-secondary); } .colors-abductor th, .colors-Abductor th, tr.colors-abductor th, tr.colors-Abductor th { background-color: var(--gray-primary); border-color: var(--gray-opaque); } .colors-abductor td, .colors-Abductor td, tr.colors-abductor td, tr.colors-Abductor td { background-color: var(--gray-transparent); } :not(.regular).colors-abductor td:not(.regular):first-of-type, :not(.regular).colors-Abductor td:not(.regular):first-of-type, .colors-abductor td.capital, .colors-Abductor td.capital, :not(.regular) tr.colors-abductor td:not(.regular):first-of-type, :not(.regular) tr.colors-Abductor td:not(.regular):first-of-type { background-color: var(--gray-light); color: var(--color-text); border-color: var(--gray-opaque); } /* Цвет заголовков сворачиваемых разделов в sidebar обратно в серый */ #mw-panel.collapsible-nav .portal.collapsed .vector-menu-heading, #mw-panel.collapsible-nav .portal.collapsed .vector-menu-heading:hover, #mw-panel.collapsible-nav .portal .vector-menu-heading * { color: var(--gray-opaque); text-decoration: none; } /* Таблица брони и оружия */ .weapon-table td, .armor-table { text-align: center; table-layout: fixed; font-weight: bold; } /* Последний столбец */ .weapon-table td:last-of-type, .armor-table td:last-of-type { text-align: left; font-weight: unset; } /* Таблица контрабанды */ .ContrabandItemList { backdrop-filter: var(--blur-intensity); } .ContrabandItemCore { display: flex; flex-flow: row wrap; } .ContrabandItem { hyphens: auto; text-align: center; background-color: var(--color-bg-section); border: var(--border-classic); border-radius: var(--border-radius-medium); padding: 0.25em; margin: 0.25em; flex: 1 0 12em; justify-content: center; }