Dantes (обсуждение | вклад) Нет описания правки |
Dantes (обсуждение | вклад) Нет описания правки |
||
| Строка 7: | Строка 7: | ||
background-color: var(--background-color, #f5f5f5); | background-color: var(--background-color, #f5f5f5); | ||
color: var(--text-color, #000); | color: var(--text-color, #000); | ||
overflow-x: auto; | |||
white-space: nowrap; | |||
} | } | ||
| Строка 60: | Строка 62: | ||
} | } | ||
} | } | ||
/*=Таблица планет=*/ | /*=Таблица планет=*/ | ||
Версия от 06:26, 17 января 2025
/*=Блок лора=*/
.timeline-container {
position: relative;
width: 100%;
min-height: 100px;
margin: 50px 0;
background-color: var(--background-color, #f5f5f5);
color: var(--text-color, #000);
overflow-x: auto;
white-space: nowrap;
}
.timeline-line {
position: absolute;
top: 50%;
left: 0;
right: 0;
height: 4px;
background-color: var(--line-color, #000);
transform: translateY(-50%);
}
.timeline-event {
position: absolute;
white-space: nowrap;
background-color: var(--event-bg, #fff);
padding: 5px 10px;
border-radius: 5px;
font-size: 14px;
text-align: center;
transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
.timeline-container {
min-height: auto;
padding: 20px;
}
.timeline-line {
width: 100%;
}
.timeline-event {
left: auto;
margin-bottom: 20px;
top: auto;
}
}
@media (prefers-color-scheme: dark) {
.timeline-container {
--background-color: #333;
--text-color: #fff;
}
.timeline-line {
--line-color: #fff;
}
.timeline-event {
--event-bg: #444;
color: #fff;
}
}
/*=Таблица планет=*/
.planets-table-wrapper {
width: 100%;
overflow-x: auto;
margin: 0 auto;
}
.planets-table {
width: 100%;
max-width: 150%;
border-collapse: separate;
border-spacing: 0;
font-family: "Segoe UI", Arial, sans-serif;
background: linear-gradient(to bottom, #0d1117, #161b22);
border: 1px solid #5a5a5a;
border-radius: 12px;
color: #b0b0b0;
overflow: hidden;
}
.planets-table th {
background-color: #3a3a3a;
color: #dcdcdc;
text-align: center;
padding: 12px;
font-size: 18px;
font-weight: bold;
border-bottom: 1px solid #5a5a5a;
}
.planets-table td {
text-align: center;
padding: 12px;
font-size: 16px;
border-top: 1px solid #5a5a5a;
}
.planets-table td img {
border-radius: 50%;
margin: 10px 0;
width: 80px;
height: 80px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}
.planets-table tr:first-child th:first-child {
border-top-left-radius: 12px;
}
.planets-table tr:first-child th:last-child {
border-top-right-radius: 12px;
}
.planets-table tr:last-child td:first-child {
border-bottom-left-radius: 12px;
}
.planets-table tr:last-child td:last-child {
border-bottom-right-radius: 12px;
}
.planets-table tr:nth-child(even) {
background-color: rgba(255, 255, 255, 0.03);
}
.planets-table tr:nth-child(odd) {
background-color: rgba(255, 255, 255, 0.06);
}
.planets-table th:nth-child(2),
.planets-table td:nth-child(2) {
text-align: center;
}
.planets-table caption {
margin: 10px 0;
font-size: 20px;
font-weight: bold;
color: #a0a0a0;
text-align: left;
}
/*=Эффект снежинок=*/
#snow-toggle {
position: fixed;
top: 200px;
left: 10px;
font-size: 30px;
cursor: pointer;
z-index: 9999;
color: #000;
transition: transform 0.3s ease;
user-select: none;
}
@media screen and (max-width: 768px) {
#snow-toggle {
top: 100px;
left: 10px;
font-size: 24px;
}
}
#snow-toggle.snow-on {
animation: swing 1s infinite ease-in-out;
}
#snow-toggle.snow-off {
animation: none;
}
.snowflake {
position: fixed;
top: -50px;
font-size: 1.5rem;
color: #fff;
opacity: 0.8;
pointer-events: none;
animation: fall linear infinite;
user-select: none;
}
@keyframes swing {
0%, 100% {
transform: rotate(0deg);
}
50% {
transform: rotate(10deg);
}
}
@keyframes fall {
0% {
transform: translateX(0) rotate(0deg);
}
50% {
transform: translateX(20px) rotate(180deg);
}
100% {
transform: translateX(-20px) rotate(360deg);
top: 100vh;
}
}
/*=Карточки планет=*/
.planets-row {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 20px;
margin: 20px 0;
}
.planet-card {
width: 220px;
border: 2px solid #555;
border-radius: 15px;
overflow: hidden;
background-color: #333;
color: #fff;
text-align: center;
padding: 15px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.planet-card img {
width: 100%;
height: 180px;
object-fit: cover;
border-bottom: 2px solid #555;
border-radius: 8px;
}
.planet-card h3 {
font-size: 1.3em;
margin: 15px 0 10px;
color: #ffcc00;
text-transform: uppercase;
letter-spacing: 1px;
}
.planet-card p {
font-size: 1em;
color: #ddd;
margin: 0;
line-height: 1.5;
max-height: 100px;
overflow: hidden;
text-overflow: ellipsis;
}
.planet-card:hover {
transform: scale(1.05);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8);
}
.planet-card .more-info {
margin-top: 10px;
padding: 5px;
background-color: #ffcc00;
color: #222;
border-radius: 5px;
font-weight: bold;
text-transform: uppercase;
cursor: pointer;
transition: background-color 0.3s ease;
}
.planet-card .more-info:hover {
background-color: #ffaa00;
}
@media (max-width: 768px) {
.planets-row {
justify-content: center;
}
.planet-card {
width: 90%;
max-width: 280px;
}
}
@media (max-width: 480px) {
.planet-card {
width: 100%;
}
}
/*=Меню лора=*/
:root {
--transition-duration: 0.4s;
--primary-bg-color: #1e1e1e;
--secondary-bg-color: #292929;
--item-bg-color: #2a2a2a;
--item-hover-bg-color: #3a3a3a;
--border-color: #555;
--text-color: #d3d3d3;
--hover-text-color: #ffffff;
--font-family: 'Arial', sans-serif;
--menu-border-radius: 25px;
--header-padding: 30px;
--item-height: 180px;
--icon-size: 72px;
--text-font-size: 18px;
}
.custom-lore-menu {
max-width: 1200px;
margin: 30px auto;
padding: 40px;
border: 1px solid var(--border-color);
border-radius: var(--menu-border-radius);
background-color: var(--primary-bg-color);
display: grid;
grid-template-columns: 1fr;
gap: 30px;
}
.custom-header {
text-align: center;
background-color: var(--secondary-bg-color);
padding: var(--header-padding);
border-bottom: 2px solid var(--border-color);
}
.custom-links {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
gap: 25px;
padding: 25px;
justify-items: center;
align-items: center;
}
.custom-item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: var(--item-height);
text-align: center;
border: 1px solid var(--border-color);
border-radius: 15px;
background-color: var(--item-bg-color);
transition: transform var(--transition-duration), background-color var(--transition-duration);
cursor: pointer;
}
.custom-item:hover {
background-color: var(--item-hover-bg-color);
transform: scale(1.05);
}
.custom-item a {
text-decoration: none;
color: var(--text-color);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
transition: color var(--transition-duration);
}
.custom-item a:hover {
color: var(--hover-text-color);
}
.custom-icon {
width: var(--icon-size);
height: var(--icon-size);
margin-bottom: 15px;
}
.custom-text {
font-size: var(--text-font-size);
font-weight: bold;
color: var(--text-color);
transition: color var(--transition-duration);
}
.custom-text:hover {
color: var(--hover-text-color);
}
@media (max-width: 768px) {
.custom-lore-menu {
padding: 20px;
}
.custom-links {
grid-template-columns: 1fr;
}
.custom-item {
height: auto;
}
.custom-text {
font-size: 16px;
}
}
/*=Блок лора=*/
/*=Блок лор Colonial marines=*/
body.page-Лор_СМ #siteSub,
body.page-Лор_СМ #contentSub,
body.page-Лор_СМ h1.firstHeading
{display:none !important}
.CMMainFigure {
height: 130px;
width: 575px;
background: #292f2d;
border-radius: 6px;
}
.CMMainText {
font-family: "Trebuchet MS", Tahoma, sans-serif;
color: #a1a2a5;
padding-top: 6px;
padding-left: 9px;
}
.CMMainButton {
height: 40px;
width: 180px;
background: #151a22;
border-radius: 6px;
margin-top: 7px;
margin-left: 7px;
}
.CMMainButton2 {
transform: translate(190px,-94px);
height: 40px;
width: 180px;
background: #151a22;
border-radius: 6px;
margin-top: 7px;
margin-left: 7px;
}
.CMMainButton3 {
transform: translate(380px,-188px);
height: 40px;
width: 180px;
background: #151a22;
border-radius: 6px;
margin-top: 7px;
margin-left: 7px;
}
.CMMainButtonText {
display: inline-block;
width: 100%;
height: 100%;
text-align: center;
padding-top: 7px;
font-family: "Trebuchet MS", Tahoma, sans-serif;
color: white;
text-decoration: none;
}
/*=Блок лора Маршалов CM=*/
body.page-Провост_Маршал .mw-page-title-main,
body.page-Провост_Маршал #siteSub,
body.page-Провост_Маршал .mw-body-header,
body.page-Провост_Маршал .citizen-header
{display:none !important}
body.page-Провост_Маршал .citizen-page-container
{background: rgb(20,24,31);
background: linear-gradient(90deg, rgba(20,24,31,1) 0%, rgba(40,11,15,1) 75%, rgba(82,0,0,1) 100%);}
.rectangleCM {
width: 250px;
height: 60px;
background: linear-gradient(to right, #05141d 85%, #14181f);
position: relative;
transform: translate(835px, 20px);
}
.rectangleCM2 {
width: 250px;
height: 60px;
background: linear-gradient(to right, #05141d 85%, #14181f);
position: relative;
transform: translate(835px, 30px);
}
.rectangleCM3 {
width: 800px;
height: 130px;
background: #590000;
position: relative;
transform: translate(0px, -100px);
}
.rectangleCM4 {
width: 1085px;
height: 60px;
background: linear-gradient(to right, #05141d 85%, #14181f);
position: relative;
transform: translate(0px, -90px);
}
.rectangleCMTwo {
width: 10px;
height: 60px;
background: #0087bd;
position: relative;
transform: translate(0px, -52px);
}
.rectangleCMTwo2 {
width: 10px;
height: 60px;
background: #0087bd;
position: relative;
transform: translate(0px, -52px);
}
.classifieldCM {
color: #bebebe;
position: relative;
transform: translate(15px, 5px);
font-family: Inter, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
font-size: 0.75em;
font-weight: 500;
}
.classifieldCMRisk {
color: #bebebe;
position: relative;
transform: translate(17.5px, 6px);
font-family: "Gill Sans", sans-serif;
font-size: calc(11px +(12 - 8)*((100vw - 400px) /(800 - 400)));
font-weight: bold;
}
.rectangleCMTwo3 {
width: 10px;
height: 130px;
background: #ce0000;
position: relative;
transform: translate(0px, -79px);
}
.classifieldCM3 {
color: #bebebe;
position: relative;
transform: translate(17.5px, 5px);
font-family: Inter, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
font-size: 0.9em;
font-weight: 500;
}
.classifieldCMRisk3 {
color: #bebebe;
position: relative;
transform: translate(20px, 21px);
font-family: "Gill Sans", sans-serif;
font-size: 35px;
font-weight: bold;
}
.triangle-bottomrightCM {
width: 450px;
height: 0;
border-bottom: 130px solid #700;
border-left: 100px solid transparent;
position: relative;
transform: translate(350px,-210px);
}
.MarshalsLogoCM {
right: 0;
bottom: 0;
position: absolute;
}
/*=Не лор маршалов=*/
.hrCMLore {
border: none;
border-top: 1.5px solid #C6C3B5; /* Линия теперь будет красного цвета */
}
.second_block {
display: none;
}
.imggg {
float: right ;
}
.home-card:hover .second_block {
display: block;
font-family: "Gill Sans", sans-serif;
}
.divisionis {
color: #C6C3B5;
opacity: 1;
text-align: center;
font-family: system-ui;
font-size: 30px;
}
.loreCMwelcom {
color: #C6C3B5;
opacity: 0.5;
text-align: left;
font-family: "Gill Sans", sans-serif;
font-size: 15px;
font-weight: lighter;
}
.loreCMwelcomWork {
color: #C6C3B5;
opacity: 0.75;
text-align: left;
font-family: "Gill Sans", sans-serif;
font-size: 15px;
font-weight: lighter;
}
.loreCMtext {
color: white;
text-align: left;
font-family: system-ui;
font-size: 30px;
font-weight: bold;
}
.home-grid {
display: grid;
grid: auto-flow dense/repeat( auto-fit, minmax( 9.375rem, 1fr ) );
grid-auto-rows: minmax( 3rem, auto );
grid-gap: calc(0.5 * 1rem);
font-family: "Gill Sans", sans-serif;
}
.home-grid--col2 {
grid-template-columns: 1fr 1fr;
}
.home-grid a.external {
background-image: none;
}
.home-card {
position: relative;
padding: 1rem;
background: hsl(220,25%,12%);
border: 1px solid rgba(255,255,255,0.05);
border-radius: 8px;
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.04 ), 0 3px 6px rgba( 0, 0, 0, 0.0575 );
font-size: 0.875rem;
}
.home-card table.timeline {
margin-top: 0.2rem;
}
.home-card--col2 {
grid-column: span 2;
}
.home-card--row3 {
grid-row: span 3;
}
.home-card--row4 {
grid-row: span 4;
}
.home-card--row8 {
grid-row: span 8 / auto;
}
.home-card__label {
color: #72777d;
font-size: 0.8125rem;
letter-spacing: 0.75px;
}
.home-card__header {
color: #202122;
font-size: 1rem;
font-weight: 600;
line-height: 1.25;
}
.home-card__header a {
display: flex;
align-items: center;
justify-content: space-between;
}
.home-card__header a:after {
content: '▶';
font-size: 0.8125rem;
}
.home-card__background {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: #242a31;
border-radius: 8px;
}
.home-card__background:after {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: block;
background: linear-gradient(to right,#000,transparent);
content: "";
}
.home-card__background picture,
.home-card__background img {
width: 100%;
height: 100%;
}
.home-card__background img {
object-fit: cover;
object-position: center;
}
.home-card__foreground {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
padding: 1rem;
display: flex;
flex-direction: column;
justify-content: center;
gap: calc(0.25 * 1rem);
color: #fff;
line-height: 1.25;
}
.home-card__foreground .home-card__header {
color: #fff;
}
.home-card__foreground .home-card__label {
color: #bababa;
}
.home-card p {
/* margin-top: calc(0.5 * 1rem); */
margin-top: calc(0 * 1rem);
font-size: 0.875rem;
}
.home-card.home-card--button {
overflow: hidden;
padding: 0;
background: #242a31;
border: 0;
}
.home-card--button a {
display: flex;
height: 100%;
justify-content: center;
align-items: center;
padding: 0 1rem;
background: transparent;
color: #fff;
font-weight: 500;
}
.home-card--button--navigation a {
/* display: flex; */
display: contents;
height: 100%;
justify-content: center;
align-items: center;
padding: 0 1rem;
background: transparent;
color: #fff;
font-weight: 500;
}
.home-card--button .home-card__background a {
padding: 0;
}
.home-card--button img {
transition: transform 0.2s ease;
}
.home-card--button:hover img {
transform: scale(1.1);
}
.home-link {
display: grid;
margin-top: calc(0.5 * 1rem);
font-size: 0.875rem;
font-weight: 500;
grid-gap: calc(0.5 * 1rem);
text-align: center;
}
.home-link__button {
display: flex;
}
.home-link__button a {
flex-grow: 1;
padding: calc(0.5 * 1rem);
border: 1px solid rgba(255,255,255,0.05);
background: hsl(220,25%,15%);
border-radius: 8px;
color: #fff !important;
line-height: 1.25;
text-decoration: none !important;
}
.home-link__button a:hover {
background: hsl(220,30%,19%);
}
.home-link__button a:active {
background: hsl(220,30%,11%);
}
#home-content {
margin-top: calc(1.25 * 1rem);
}
.home-card .template-statsbar {
margin: 0;
}
.home-footer {
font-size: 0.8125rem;
font-family: monospace;
text-align: center;
}
#home-nav {
margin-top: 1rem;
}
#home-nav .home-card__foreground {
font-weight: 500;
}
/*------------------------------------------------Блок вики-----------------------------------------------------------------------------*/
.tabber {
border: 1px solid #20242a !important;
border-radius: 10px !important; /* Закругление углов у всего таба */
overflow: hidden; /* Чтобы закругление работало для содержимого */
}
.tabber__tab {
background: #19191d !important;
padding: 8px 16px;
}
.tabber__panel {
padding: 0 12px;
border-radius: 8px !important; /* Закругление углов для панели */
}
/* Все табсы должны быть заменены на табберы! */
.tabs-tabbox {
background: rgba(255,0,0,0.07) !important;
border-radius: 8px !important; /* Закругление углов */
}
/*------------------------------------------------Tabl-Сейчас 2 версии табл новая и старая, струю не убирать иначе все ломается-----------*/
/* Анимация градиента для JobHeader */
@keyframes gradient-animation {
0%, 100% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
}
/* Стиль заголовка профессии */
.job_header {
font-family: Arial, sans-serif;
border: 3px solid var(--border-color, #465298);
border-radius: 0.5em;
background-color: #27272e;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
overflow: hidden;
margin: 0 0 10px 5px;
}
.job_header .header-title {
text-align: center;
padding: 5px 10px;
margin: 0;
background: linear-gradient(135deg, var(--header-color-start, #465298), var(--header-color-end, #27272e));
background-size: 300% 300%;
color: #fff;
font-weight: bold;
font-size: 1.1em;
letter-spacing: 0.5px;
text-transform: uppercase;
animation: gradient-animation 6s ease infinite;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
/* Контейнер для изображения профессии */
.job_header .sprite-container {
text-align: center;
padding: 3px 0;
margin: 0;
background: linear-gradient(135deg, var(--sprite-color-start, #465298), var(--sprite-color-end, #27272e));
background-size: 300% 300%;
animation: gradient-animation 6s ease infinite;
box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.4);
}
.job_header .sprite-container img {
/* width: 128px; */
/* height: auto; */
border-radius: 0.2em;
}
/* Элементы внутри JobHeader */
.job_header div {
padding: 3px 10px;
margin: 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
color: #ddd;
transition: background-color 0.3s ease;
}
.job_header div:last-child {
border-bottom: none;
}
.job_header .label {
font-weight: bold;
color: #ddd;
}
.job_header .value {
color: #bbb;
font-size: 0.95em;
}
/* Скрываемые элементы для JobHeader */
.job_collapsible {
cursor: pointer;
color: lightblue;
text-decoration: underline;
margin-top: 10px;
}
.job_collapsible_content {
display: none;
padding: 10px;
color: #bbb;
transition: all 0.3s ease;
}
/*-----------------------------------------------------------------------------------------------------------------------------------*/
/* Begin стиль для pre (цитатки)
Shegare */
pre {
display: inline-block;
white-space: pre-wrap;
}
/* Begin стиль для pre (цитатки)
Shegare */
/*-----------------------------------------------------------------------------------------------------------------------------------*/
/* Begin стиль для collapsible button
Shegare */
.collapsible_align > tbody > tr > th > span {
padding: 7px 5px;
}
.mw-collapsible.mw-made-collapsible.mw-collapsed .mw-collapsible-text {
color: #dbdbdb;
box-shadow: 0 0 5px 0px;
border: 2px solid;
padding: 4px;
border-radius: 10px;
transition: 0.5s;
}
.mw-collapsible.mw-made-collapsible .mw-collapsible-text {
color: #ffffff;
border: 2px dotted;
padding: 4px;
border-radius: 10px;
transition: 0.5s;
}
.mw-collapsible-toggle-default:before {
content: unset;
}
.mw-collapsible-toggle-default:after {
content: unset;
}
/* End стиль для collapsible button
Shegare */
/*-----------------------------------------------------------------------------------------------------------------------------------*/
/* Begin стиль для grid
Shegare */
@media screen and (min-width: 1120px) {
.citizen-toc-enabled .citizen-body-container {
grid-template-areas:
'void header header'
'sidebar content toc'
'footer footer footer';
}
.citizen-toc-enabled .citizen-body-container {
grid-template-columns: 10% 70% 20%;
margin-left: 8vw;
}
body {
overflow-x: hidden;
}
#IdJobsTableContainer2 {
grid-area: sidebar;
margin-left: -8vw;
}
}
/* End стиль для grid
Shegare */
/*-----------------------------------------------------------------------------------------------------------------------------------*/
/* Begin стиль для tabber
Shegare */
.unheightTabber .tabber__section {
height: unset !important;
}
/* End стиль для tabber
Shegare */
/* Begin стиль ног (footer)
Shegare */
/* Блоки в одну строку */
.page-info__item {
flex-basis: 100%;
}
/* Убираем отступ для ног (footer) */
.citizen-footer {
margin: 0;
}
/* End стиль ног (footer)
Shegare */
/* Begin стиль для JobsTable
Shegare */
/* Стиль для sidebar */
#IdJobsTableContainer2 {
flex-basis: 20%;
padding: 0px 38px;
}
#IdJobsTableContainer2 > div {
background: #ffffff08;
border-radius: 20px;
padding: 5px 10px;
}
.JobsTable {
border: 2px solid black;
border-radius: 10px;
margin-bottom: 5px;
width: auto;
height: fit-content;
background: #28303e;
}
/* Отступы в шапке JobsTable */
.JobsTableHeadImg {
margin-left: 15px;
margin-right: 5px;
}
.JobsTableHeadLink {
margin-right: auto;
}
/* Видимость на разных экранах */
.client-js td.mw-collapsed:not(.mw-made-collapsible):before, .client-js table.mw-collapsed:not(.mw-made-collapsible) :first-child tr:first-child th:last-child:before, .client-js table.mw-collapsed:not(.mw-made-collapsible) > caption:first-child:after, .client-js div.mw-collapsed:not(.mw-made-collapsible):before,
.client-js ol.mw-collapsible:not(.mw-made-collapsible):before, .client-js ul.mw-collapsible:not(.mw-made-collapsible):before, .client-js table.mw-collapsible:not(.mw-made-collapsible) :first-child tr:first-child th:last-child:before, .client-js table.mw-collapsible:not(.mw-made-collapsible) > caption:first-child:after, .client-js div.mw-collapsible:not(.mw-made-collapsible):before {
opacity: 0;
}
#IdJobsTableContainer1 {
display: none;
}
@media screen and (max-width: 1440px) {
#IdJobsTableContainer2 {
display: none;
}
#IdJobsTableContainer1 {
display: unset;
}
.JobsTableHeadImg {
margin-left: unset;
}
.JobsTableHeadLink {
margin-right: 55px;
}
.client-js td.mw-collapsed:not(.mw-made-collapsible):before, .client-js table.mw-collapsed:not(.mw-made-collapsible) :first-child tr:first-child th:last-child:before, .client-js table.mw-collapsed:not(.mw-made-collapsible) > caption:first-child:after, .client-js div.mw-collapsed:not(.mw-made-collapsible):before,
.client-js ol.mw-collapsible:not(.mw-made-collapsible):before, .client-js ul.mw-collapsible:not(.mw-made-collapsible):before, .client-js table.mw-collapsible:not(.mw-made-collapsible) :first-child tr:first-child th:last-child:before, .client-js table.mw-collapsible:not(.mw-made-collapsible) > caption:first-child:after, .client-js div.mw-collapsible:not(.mw-made-collapsible):before {
opacity: 1;
}
}
/* Скрытие контента на широких экранах */
@media screen and (min-width: 1440px) {
.JobsTable .mw-collapsible.mw-collapsed {
display: none;
}
.JobsTable div:hover ~ .mw-collapsible.mw-collapsed,
.JobsTable .mw-collapsible.mw-collapsed:hover {
display: unset;
}
}
@media screen and (max-width: 1439px) {
.JobsTable div:first-child {
padding-left: 15px;
}
}
/* Кнопка скрытия элементов */
.JobsTable .mw-collapsible-toggle {
margin-top: -35px;
}
.JobsTable .mw-collapsible-toggle-default:before,
.JobsTable .mw-collapsible-toggle-default:after {
content: unset;
}
.JobsTable .mw-collapsible-text {
background: black;
border: 2px solid;
padding: 2px;
margin-right: 5px;
font-weight: 700;
}
.JobsTable .mw-collapsible.mw-made-collapsible.mw-collapsed .mw-collapsible-text {
color: #00ffff9e;
box-shadow: 0 0 10px #00b9b978;
}
.JobsTable .mw-collapsible.mw-made-collapsible .mw-collapsible-text {
color: #c21111cc;
}
/* Кнопки */
.JobsTableList li a {
color: white;
font-size: 16px;
background: #232323;
display: block;
border: 2px solid black;
margin-bottom: 5px;
padding: 3px 5px;
transition: background-color 0.8s;
}
.JobsTableList li a:hover {
background: #007383;
transform: scale(1.1);
text-decoration: unset;
}
/* End стиль для JobsTable
Shegare */
/*-----------------------------------------------------------------------------------------------------------------------------------*/
/* Begin Заголовки стиль
Shegare */
.citizen-sections-enabled .citizen-section-heading .mw-headline {
border-bottom: 2px solid;
border-image: linear-gradient(to right top, #5d5d5d, #272727);
border-image-slice: 1;
}
.citizen-sections-enabled .citizen-section-heading .mw-headline:empty {
border: unset;
}
.citizen-sections-enabled .citizen-section-heading--collapsed .mw-headline {
border: unset;
}
.mw-ui-icon-wikimedia-collapse:before {
opacity: unset;
}
.citizen-sections-enabled .citizen-section-indicator {
width: 25px;
height: 25px;
position: absolute;
padding: 3px;
background: rgb(162 162 162 / 60%);
box-shadow: 0 0 20px 0px rgb(162 162 162 / 20%);
border: 1px solid #000000;
border-radius: 50%;
transition: 0.3s;
margin-left: -30px;
margin-right: 5px;
}
@media screen and (max-width: 1119px) {
.citizen-sections-enabled .citizen-section-indicator {
margin-left: 0px;
}
.citizen-sections-enabled .citizen-section-indicator {
width: 21px;
height: 21px;
}
.citizen-sections-enabled .citizen-section-heading .mw-headline {
padding-left: 25px;
}
}
.citizen-sections-enabled .citizen-section-heading--collapsed .citizen-section-indicator {
background: #000000;
opacity: 50%;
box-shadow: unset;
transition: 0.3s;
}
.citizen-section-collapsible p {
margin-bottom: 1.5em;
margin-top: 0px;
}
/* Begin Заголовки стиль
Shegare */
/*-----------------------------------------------------------------------------------------------------------------------------------*/
/* Начальный размер блока лого */
.citizen-header__logo {
height: 89px;
}
/* Анимация появления второго лого */
.logo2 img {
opacity: 0;
animation: animOpacity 0.5s forwards;
}
@keyframes animOpacity {
0% {opacity: 0;}
100% {opacity: 1;}
}
/* Обводка вокруг лого */
.logo1:hover, .logo2:hover {
background: #ffffff26;
border-radius: 15px;
}
/* Лого на экранах меньше 1120px */
@media screen and (max-width: 1119px) {
.citizen-header__logo {
display: flex;
height: auto;
width: 89px;
}
.logo1 {
margin-right: 3px;
}
}
@media screen and (min-width: 1120px) {
.logo1 {
margin-bottom: 3px;
}
}
/* End Лого стили
Shegare */
/*-----------------------------------------------------------------------------------------------------------------------------------*/
/* Begin элементы таблицы "|" не подсвечиваются при наведении
Shegare */
:root.skin-citizen-dark {
--background-color-quiet--hover: unset
}
/* End элементы таблицы "|" не подсвечиваются при наведении
Shegare */
/*-----------------------------------------------------------------------------------------------------------------------------------*/
/* Begin header не скрывается
Shegare */
@media screen and (max-width: 1119px) {
.citizen-scroll--down .citizen-header {
transform: unset;
}
}
/* End header не скрывается
Shegare */
/*-----------------------------------------------------------------------------------------------------------------------------------*/
/* Begin TooltipTable
Shegare */
.citizen-overflow--right {
-webkit-mask-image: unset;
}
@media screen and (min-width: 1421px) {
.citizen-table-wrapper {
overflow: unset;
}
}
@media screen and (max-width:1421px) {
.citizen-table-wrapper,
.citizen-overflow--left.citizen-overflow--right,
.citizen-overflow--left,
.citizen-overflow--right {
-webkit-mask-image: unset;
overflow: auto;
}
}
/* End TooltipTable
Shegare */
/*-----------------------------------------------------------------------------------------------------------------------------------*/
/* Begin Отмена пикселизации
Shegare */
.citizen-header__logo img, .logo img {
image-rendering: unset;
}
.nopixelated img {
image-rendering: unset;
}
/* End оформление заголовков
Shegare */
/*-----------------------------------------------------------------------------------------------------------------------------------*/
/* Begin mobile_bigtable
Shegare */
@media screen and (max-width: 1025px) {
mobile_bigtable {
font-size: 16px;
}
}
@media screen and (max-width: 1024px) {
mobile_bigtable {
font-size: 10px;
}
}
/* Begin mobile_bigtable
Shegare */
/*-----------------------------------------------------------------------------------------------------------------------------------*/
/* Begin главное меню
Данте ( и немного Shegare >w< )
*/
/* Общее форматирование ячеек таблицы */
.standard-link th,
.standard-link td {
vertical-align: middle;
border: 2px solid black;
background-color: #212126;
}
/* Скругление углов только у первой и последней ячеек в строке заголовка */
.standard-link th {
border-radius: 15px 0 0 15px;
}
/* Форматирование ссылок в заголовках таблицы */
.standard-link th a {
margin: 7px;
}
/* Форматирование ссылок в ячейках таблицы */
.standard-link td a {
margin: 5px 10px;
padding: 17px;
}
/* Общие стили для всех ссылок */
.standard-link a {
text-decoration: none;
font: small-caps bold 25px sans-serif;
color: #ffffff;
border: 2px solid black;
display: flex;
align-items: center;
background-color: #141417;
transition: background-color 1.0s ease, border-color 1.0s ease, color 1.0s ease;
}
/* Стили для мобильных устройств */
@media screen and (max-width:850px) {
.standard-link a {
transition: none;
}
.standard-link td {
border-radius: 0px 15px 15px 0px;
}
}
/* Стили при наведении курсора на строку таблицы */
.standard-link tr:hover a {
background-color: black;
color: #fff;
border-color: #e23229;
}
/* End главное меню
Данте ( и немного Shegare >w< )
*/
/*-----------------------------------------------------------------------------------------------------------------------------------*/
/* Данте Морпехи */
/* Основные стили для контейнера меню */
.main-container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
/* Общие стили для секций меню */
.menu-section {
flex-basis: 23%;
margin-bottom: 15px;
padding: 10px;
border-radius: 8px;
background-color: #14171f; /* Фон не покрашенных блоков */
color: #fff;
border: 1px solid rgba(255, 255, 255, 0.1); /* Уменьшенная белая обводка для блоков */
}
/* Индивидуальные цвета для секций */
.marines-section {
background-color: #222424;
}
.xenos-section {
background-color: #2b2e44;
}
.other-section {
background-color: #341d1d; /* Цвет для блока "Другие фракции" */
}
/* Стили для заголовков секций */
.menu-section h3 {
padding: 5px;
margin: 0;
font-size: 18px;
text-align: center;
color: #fff;
}
/* Стили для списка */
.menu-section ul {
list-style-type: none;
padding: 0;
margin: 10px 0 0 0;
}
/* Стили для элементов списка */
.menu-section ul li {
margin: 10px 0;
text-align: center;
}
/* Стили для кнопок (ссылок) */
.menu-section ul li a {
display: block;
width: 100%;
padding: 10px;
border-radius: 8px;
text-align: center;
background-color: #1a1e29; /* Цвет фона кнопок */
color: white;
font-weight: bold;
text-decoration: none;
border: 1px solid rgba(255, 255, 255, 0.2); /* Обводка для кнопок */
transition: background-color 0.3s ease, border-color 0.3s ease;
}
.menu-section ul li a:hover {
background-color: #666;
border-color: rgba(255, 255, 255, 0.5); /* Обводка при наведении */
}
/* Стили для секции с картами */
.maps-section {
color: white; /* Устанавливаем белый цвет текста для всей секции */
}
.maps-section ul {
display: flex;
flex-wrap: wrap;
gap: 10px; /* Отступы между картами */
padding: 0;
margin: 0;
}
/* Стили для секции с картами */
.maps-section {
color: white !important; /* Добавление !important */
}
.maps-section ul {
display: flex;
flex-wrap: wrap;
gap: 10px; /* Отступы между картами */
padding: 0;
margin: 0;
}
/* Стили для элементов списка в секции карт */
.maps-section ul li {
flex-basis: 48%; /* Уменьшаем до 48%, чтобы уместить 2 карты в ряд с отступами */
list-style: none; /* Убираем маркеры списка */
}
/* Стили для ссылок в секции карт */
.maps-section ul li a {
display: block;
padding: 10px;
background-color: #1a1e29; /* Цвет фона кнопок в секции карт */
color: white !important; /* Устанавливаем белый цвет текста */
border-radius: 8px;
text-align: center;
text-decoration: none;
border: 1px solid rgba(255, 255, 255, 0.2); /* Обводка для кнопок */
transition: background-color 0.3s ease, border-color 0.3s ease;
}
.maps-section ul li a:hover {
background-color: #666; /* Цвет фона при наведении на ссылку в секции карт */
border-color: rgba(255, 255, 255, 0.5); /* Обводка при наведении */
}
/* Убираем иконку внешней ссылки в блоке карт */
.maps-section ul li a::after {
content: none !important; /* Убираем псевдоэлемент */
}
/* Стили для контейнера заголовка */
.header-container {
display: flex;
align-items: center;
background-color: #1b1e26;
padding: 20px 30px;
border-radius: 8px;
}
/* Стили для логотипа */
.logo img {
border-radius: 50%;
width: 100px;
height: auto;
}
/* Стили для текста заголовка */
.title-text {
margin-left: 30px;
color: #ffffff;
}
.title-text h1 {
margin: 0;
font-size: 32px;
font-weight: bold;
}
.title-text p {
margin: 5px 0 0;
font-size: 18px;
}
/* Стили для разделителя */
.separator {
border-bottom: 2px solid #A9A9A9;
margin: 10px 0 20px;
}
/* Адаптивные стили для мобильных устройств */
@media (max-width: 599px) {
.main-container {
flex-direction: column;
align-items: stretch;
}
.menu-section {
flex-basis: 100%;
margin-bottom: 15px;
display: flex;
flex-direction: column;
align-items: stretch;
}
.menu-section ul {
flex-grow: 1;
justify-content: space-between;
padding: 0;
}
.menu-section ul li {
flex-grow: 1;
width: 100%;
text-align: center;
margin-bottom: 10px; /* Отступы между элементами */
}
.menu-section ul li a {
flex-grow: 1;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
text-align: center;
padding: 10px 0;
}
.maps-section ul {
flex-wrap: wrap;
gap: 10px;
}
.maps-section ul li {
flex-basis: 48%; /* Карты будут располагаться по 2 на ряд */
margin-bottom: 10px; /* Отступы между картами */
}
.header-container {
flex-direction: column;
text-align: center;
padding: 10px;
}
.logo img {
width: 80px;
}
.title-text {
margin-left: 0;
margin-top: 10px;
}
.title-text h1 {
font-size: 24px;
}
.title-text p {
font-size: 16px;
}
}
/*-----------------------------------------------------------------------------------------------------------------------------------*/
/* код оформление для Командование и тд Данте! */
/* Контейнер для карточек */
.command-wrapper {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
padding: 20px;
}
/* Основные стили карточек */
.card {
background-color: #2b2b2b; /* Темный фон карточки */
border-radius: 10px;
width: 220px;
height: auto;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
display: flex;
flex-direction: column;
justify-content: flex-start; /* Элементы начинают сверху */
align-items: center;
padding: 8px; /* Уменьшаем padding */
text-align: center;
position: relative;
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 4px solid transparent;
color: #ffffff; /* Белый текст */
overflow: hidden; /* Скрываем все, что выходит за пределы карточки */
}
/* Цветные обводки для разных ролей */
.card.Captain {
border-color: #B0B7C3; /* Серебристый для Капитана */
}
.card.HeadOfSecurity {
border-color: #FF0000; /* Красный для Главы Безопасности */
}
.card.HeadOfPersonnel {
border-color: #00FF00; /* Зеленый для Главы Персонала */
}
.card.Engineer {
border-color: #FFA500; /* Оранжевый для Старшего Инженера */
}
.card.Scientist {
border-color: #800080; /* Фиолетовый для Научного Руководителя */
}
.card.Doctor {
border-color: #127BB7; /* Синий для Главного Врача */
}
.card.Quartermaster {
border-color: #FFD700; /* Золотой для Квартирмейстера */
}
/* Стили для текста и заголовков */
.card .role-name {
font-weight: bold;
font-size: 1.4em;
color: #ffffff; /* Белый текст */
margin-bottom: 3px;
white-space: normal; /* Разрешить перенос слов */
overflow: hidden;
text-overflow: ellipsis;
text-align: center; /* Центрирование текста */
word-wrap: break-word; /* Перенос слов при необходимости */
display: grid;
grid-template-columns: 212px;
grid-template-rows: 75px;
}
.role-name a {
color: #ccc;
}
/* Стили для изображения */
.card img {
max-width: 160px;
max-height: 160px;
margin-bottom: 3px; /* Уменьшаем отступ снизу */
}
/* Стили для описания роли */
.card .role-description {
font-size: 0.9em;
flex-grow: 1;
margin: 3px 0; /* Минимальные отступы сверху и снизу */
color: #dcdcdc; /* Более светлый текст */
text-align: center;
overflow: hidden;
text-overflow: ellipsis;
white-space: normal; /* Текст переносится */
}
/* Ссылка на СРП */
.card .role-guide {
font-size: 0.85em;
margin-top: 3px; /* Минимальный отступ сверху */
text-align: center; /* Центрируем текст */
}
.card .role-guide a {
color: #00bfff; /* Цвет ссылки */
text-decoration: none;
}
.card .role-guide a:hover {
text-decoration: underline;
}
/* Hover эффект для карточек */
.card:hover {
transform: scale(1.05);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
/*-----------------------------------------------------------------------------------------------------------------------------------*/
* { font-family: Arial }
body {
color: #FAFAFA;
}
img {
image-rendering: pixelated;
}
.flex-container {
display: flex;
align-items: flex-start;
}
.flex-image {
flex-shrink: 0;
margin-right: 20px;
}
.flex-image-description {
flex-grow: 1;
}
.uplinkbuybutton {
background: #464966;
width: 62px;
height: 27px;
color: white;
text-align: center;
font-weight: bolder;
float: right;
padding-top: 4px;
clip-path: polygon(0px 0px, 0px 18px, 9px 27px, 62px 27px, 62px 10px, 53px 0px);
}
.tooltip {
position: relative;
display: inline;
}
.tooltiptext {
position: absolute;
display: initial;
z-index: 99999;
width: 295px;
left: -120px;
top: 42px;
padding: 5px;
pointer-events: none;
visibility: hidden;
opacity: 0;
white-space: normal;
text-align: left;
transition: all 0.2s;
border: 1px solid #b80000;
border-radius: 10px;
background-color: #24242a;
box-shadow: 0 0 5px #b80000;
}
.tooltip:hover > .tooltiptext {
visibility: visible;
opacity: 0.98;
}
.wikitable td ul,
.wikitable td ol,
.wikitable td dl {
text-align: left;
}
.wikitable > tr > th,
.wikitable > tr > td,
.wikitable > * > tr > th,
.wikitable > * > tr > td {
border: 1px solid black;
}
.wikitable > * > tr > th {
background: #27272e;
color: white;
}
@media screen and (min-width: 851px) {
.mobile {
display: none;
}
.job_header {
float: right;
width: 25%;
}
}
@media screen and (max-width: 1420px) {
.tooltiptext {
box-shadow: 0px 0px 100vw 100vh rgb(0 0 0 / 60%);
position: fixed;
width: 80vw;
top: 40vh;
left: 0;
margin: 0 auto;
right: 0;
}
}
@media screen and (max-width: 850px) {
.nomobile {
display: none;
}
.mobilefont {
font-size: 80%;
}
.mobile_sprite,
.mobile_text {
transform: scale(0.75);
}
}
.hover_img_special {
top: 0;
left: 0;
display: none;
}
.img_special:hover .hover_img_special {
display: inline;
}
.img_special:hover .img_spec {
display: none;
}
.mw-contributions-blocked-notice-partial .mw-warning-with-logexcerpt {
border-color: #fc3;
background-color: #fef6e7;
}
html body.mediawiki .mbox-small {
clear: right;
float: right;
margin: 4px 0 4px 1em;
width: 238px;
font-size: 88%;
line-height: 1.25em;
}
.messagebox.small {
width: 238px;
font-size: 85%;
float: right;
margin: 0 0 1em 1em;
line-height: 1.25em;
}
.messagebox.small-talk {
width: 238px;
font-size: 85%;
float: right;
margin: 0 0 1em 1em;
line-height: 1.25em;
background-color: #f8eaba;
}
.infobox {
border: 1px solid #a2a9b1;
background-color: #f8f9fa;
color: black;
margin: 0.5em 0 0.5em 1em;
padding: 0.2em;
float: right;
font-size: 88%;
line-height: 1.5em;
width: 22em;
}
.infobox-header,
.infobox-label,
.infobox-above,
.infobox-full-data,
.infobox-data,
.infobox-below,
.infobox-subheader,
.infobox-image,
.infobox-navbar,
.infobox th,
.infobox td {
vertical-align: top;
}
.infobox-label,
.infobox-data,
.infobox th,
.infobox td {
text-align: left;
}
.infobox .infobox-above,
.infobox .infobox-title,
.infobox caption {
font-size: 125%;
font-weight: bold;
text-align: center;
}
.infobox-title,
.infobox caption {
padding: 0.2em;
}
.infobox .infobox-header,
.infobox .infobox-subheader,
.infobox .infobox-image,
.infobox .infobox-full-data,
.infobox .infobox-below {
text-align: center;
}
.infobox .infobox-navbar {
text-align: right;
}
.mw-default-size {
background-color: #21212600 !important;
border-color: black !important;
}
.mw-default-size img {
border-color: black !important;
}
.mw-default-size figcaption {
background-color: #21212600 !important;
border-color: black !important;
}
.mw-halign-right {
background-color: #27272E00 !important;
border-color: black !important;
}
.mw-halign-right img {
border-color: black !important;
}
.mw-halign-right figcaption {
background-color: #27272E00 !important;
border-color: black !important;
}
.mw-halign-left {
background-color: #27272E00 !important;
border-color: black !important;
}
.mw-halign-left img {
border-color: black !important;
}
.mw-halign-left figcaption {
background-color: #27272E00 !important;
border-color: black !important;
}
.mw-halign-center {
background-color: #27272E00 !important;
border-color: black !important;
}
.mw-halign-center img {
border-color: black !important;
}
.mw-halign-center figcaption {
background-color: #27272E00 !important;
border-color: black !important;
}
th.navbox-group {
white-space: nowrap;
text-align: right;
}
.mw-parser-output .mw-collapsible-toggle {
font-weight: normal;
text-align: right;
}
td.mbox-image {
border: none;
padding: 2px 0 2px 0.9em;
text-align: center;
}
td.mbox-imageright {
border: none;
padding: 2px 0.9em 2px 0;
text-align: center;
}
#p-namespaces {
float: left;
width: 100%;
}
p {
margin-bottom: 1.5em;
}
.infobox-table {
z-index: 3 !important;
width: 400px;
max-width: 100%;
margin-bottom: 1rem;
padding-bottom: 20px !important;
background: hsl(205, 25%, 15%);
border-radius: 8px;
border-spacing: 0;
font-size: 0.875rem;
text-align: left;
}
.infobox-table tr:not(#infobox-table-img-bg) {
display: flex;
margin-top: 10px;
}
.infobox-table th,
.infobox-table td {
padding: 0 15px !important;
}
.infobox-table th,
th.infobox-table-name {
color: hsl(205, 80%, 95%);
}
.infobox-table th {
padding-top: 15px !important;
border-top: 1px solid rgba(255, 255, 255, 0.05);
font-size: 1rem;
text-align: left !important;
}
th.infobox-table-name {
padding-top: 0 !important;
border: 0 !important;
margin-top: 10px;
margin-bottom: 5px;
font-size: 1.4rem !important;
line-height: 1.4;
}
.infobox-table-img img {
max-width: 100%;
height: auto !important;
}
.infobox-table-img img[src$='.svg'] {
background: #eaecf0;
}
.infobox-table .image:hover img {
transform: scale(1.1);
}
.infobox-button {
display: block;
width: 100%;
}
.infobox-button > div {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
@media only screen and (max-width: 720px) {
.infobox-table {
margin-right: auto;
margin-left: auto;
}
}
/*-----------------------------------------------------------------------------------------------------------------------------------*/