MediaWiki:Common.css: различия между версиями

Страница интерфейса MediaWiki
Нет описания правки
Нет описания правки
Строка 448: Строка 448:
}
}


/*Ниже находится код Данте!*/
/* Ниже находится код Данте! */


 
/* Данте код главного меню */
/*Данте код главного меню*/
/*Данте код главного меню*/
.standard-link td,
.standard-link td,
.standard-link th {
.standard-link th {
Строка 488: Строка 486:
     border-color: #fff;
     border-color: #fff;
}
}
/*Данте код главного меню*/


/*Данте Морпехи*/
/* Данте код главного меню */
 
/* Данте Морпехи */
/* Основные стили для контейнера меню */
/* Основные стили для контейнера меню */
.main-container {
.main-container {
Строка 520: Строка 519:
     background-color: #341d1d; /* Цвет для блока "Другие фракции" */
     background-color: #341d1d; /* Цвет для блока "Другие фракции" */
}
}


/* Стили для заголовков секций */
/* Стили для заголовков секций */
Строка 566: Строка 564:


/* Стили для секции с картами */
/* Стили для секции с картами */
.maps-section ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    margin: 10px 0 0 0;
}
/* Стили для элементов списка в секции карт */
.maps-section ul li {
    flex-basis: 48%;
    margin: 10px 0;
    text-align: center;
}
/* Стили для кнопок карт */
.maps-section .custom-button {
    display: inline-block;
    width: 100%;
    padding: 10px 0;
    border-radius: 8px;
    text-align: center;
    background-color: #333;
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.maps-section .custom-button:hover {
    background-color: #666;
}
/* Стили для контейнера заголовка */
.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; /* Отступы между элементами */
    }
    .custom-button {
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    .maps-section ul {
        flex-direction: column;
    }
    .maps-section ul li {
        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;
    }
}
/* Стили для секции с картами */
.maps-section .map-links {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Отступы между картами */
}
.maps-section .custom-button {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    background-color: #333;
 
.maps-section ul {
.maps-section ul {
     display: flex;
     display: flex;
Строка 731: Строка 572:
}
}


/* Стили для элементов списка в секции карт */
.maps-section ul li {
.maps-section ul li {
     flex-basis: 48%; /* Уменьшаем до 48%, чтобы уместить 2 карты в ряд с отступами */
     flex-basis: 48%; /* Уменьшаем до 48%, чтобы уместить 2 карты в ряд с отступами */
Строка 750: Строка 592:
}
}


/* Если нужно продолжить стили для кнопок или других элементов */
/* Стили для кнопок карт */
.maps-section .custom-button {
.maps-section .custom-button {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
     background-color: #333; /* Цвет фона для кнопок в секции карт */
     background-color: #333; /* Цвет фона для кнопок в секции карт */
     color: white; /* Цвет текста на кнопках в секции карт */
     color: white; /* Цвет текста на кнопках в секции карт */
Строка 759: Строка 605:
     background-color: #666; /* Цвет фона кнопок при наведении */
     background-color: #666; /* Цвет фона кнопок при наведении */
}
}


/* Стили для контейнера заголовка */
/* Стили для контейнера заголовка */
Строка 840: Строка 684:


     .maps-section ul {
     .maps-section ul {
         flex-direction: row; /* Используем row для выравнивания карт в ряд */
         flex-direction: column;
        gap: 10px; /* Отступы между картами */
     }
     }


     .maps-section ul li {
     .maps-section ul li {
         flex-basis: 48%; /* Уменьшаем до 48%, чтобы уместить 2 карты в ряд с отступами */
         margin-bottom: 10px; /* Отступы между картами */
        margin-bottom: 10px;
     }
     }


Строка 873: Строка 715:
}
}


 
/* Выше находится код Данте! */
/*Данте Морпехи*/
 
 
 
/*Выше находится код Данте!*/

Версия от 18:59, 28 августа 2024


* { font-family: Arial }

body {
    color: #FAFAFA;
}

.tabs-label {
	background-color: #19191d !important;
	color: lightgrey;
}

.tabber__tab:visited {
    color: white;
}

.tabber__tab[aria-selected='true']:visited {
    color: #44cbf5;
}

img {
    image-rendering: pixelated;                 /* Universal support since 2021   */
}

.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 #465298;
    background-color: #27272E;
}

.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;
	border: 1px solid black;
	color: white
}

.tooltip:hover>.tooltiptext {
  visibility: visible;
  opacity: 0.98;
}
@media screen and (min-width:851px) {
	.mobile {
		display: none
	}
	
}

@media screen and (max-width:850px) {
	.nomobile {
		display: none
	}
	.tooltip{
  position: static;
}
	.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;
	}
	.mobilefont{
		font-size: 80%
	}
}

.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;
	box-sizing: border-box;
	width: 238px;
	font-size: 88%;
	line-height: 1.25em
}

.messagebox.small {
	width: 238px;
	font-size: 85%;
	float: right;
	clear: both;
	margin: 0 0 1em 1em;
	line-height: 1.25em
}

.messagebox.small-talk {
	width: 238px;
	font-size: 85%;
	float: right;
	clear: both;
	margin: 0 0 1em 1em;
	line-height: 1.25em;
	background-color: #f8eaba
}

.mw-collapsible-leftside-toggle .mw-collapsible-toggle {
	float: left;
	text-align: left
}

.infobox {
	border: 1px solid #a2a9b1;
	border-spacing: 3px;
	background-color: #f8f9fa;
	color: black;
	margin: 0.5em 0 0.5em 1em;
	padding: 0.2em;
	float: right;
	clear: 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
}

.ambox td.mbox-imageright {
	padding: 2px 0.5em 2px 0
}

.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;
	padding-right: 0.2em;
	padding-left: 0.2em
}

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;
	overflow: hidden;
	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;
	display: block;
}

.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,
.infobox-table tr > td:first-child {
	font-weight: 600;
}

.infobox-table tr > td:first-child {
	color: hsl(205,25%,65%);
	font-size: 0.8125rem;
	font-weight: normal;
	letter-spacing: 0.75px;
}

.infobox-table th,
th.infobox-table-name {
	color: hsl(205,80%,95%);
}

.infobox-table th {
	padding-top: 15px !important;
	border-top: 1px solid;
	border-color: 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 {
	background: rgba(255,255,255,0.07000000000000001); /* var(--background-color-quiet--hover) */
}

.infobox-table .infobox-table-img {
	padding: 0 !important;
}

.infobox-table-img img {
	max-width: 100%;
	height: auto !important;
}

/* Neutral background for all transprent SVG */
.infobox-table-img img[ src$='.svg' ] {
	background: #eaecf0;
}

.infobox-table-img a.image {
	background: 0 !important;
}

.infobox-table .image:hover img {
	transform: scale(1.1);
}

.infobox-table ul,
.infobox-table ol {
	margin-top: 0;
}

.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;
	}
}

/* Ниже находится код Данте! */

/* Данте код главного меню */
.standard-link td,
.standard-link th {
    vertical-align: middle;
    padding: 4px;
}

.standard-link a {
    text-decoration: none;
    color: #ffffff;
    border: 1px solid #888;
    border-radius: 4px;
    padding: 4px;
    margin: 2px;
    display: flex;
    align-items: center;
    background-color: transparent;
    transition: all 0.3s ease;
}

.standard-link a:hover {
    background-color: #666;
    color: #fff;
    border-color: #fff;
}

/* Стиль для выделения элемента при наведении */
.standard-link .highlight {
    background-color: #666;
    color: #fff;
    border-color: #fff;
}

.standard-link .highlight img {
    border-color: #fff;
}

/* Данте код главного меню */

/* Данте Морпехи */
/* Основные стили для контейнера меню */
.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: #171c27;
    color: #fff;
}

/* Индивидуальные цвета для секций */
.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;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #ccc;
    background-color: #444;
    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;
}

/* Стили для кнопок */
.custom-button {
    display: inline-block;
    width: 100%;
    padding: 10px 0;
    border-radius: 8px;
    text-align: center;
    background-color: #333;
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.custom-button:hover {
    background-color: #666;
}

/* Стили для секции с картами */
.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: #333;
    color: white;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
}

.maps-section ul li a:hover {
    background-color: #666; /* Цвет фона при наведении на ссылку в секции карт */
}

/* Стили для кнопок карт */
.maps-section .custom-button {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    background-color: #333; /* Цвет фона для кнопок в секции карт */
    color: white; /* Цвет текста на кнопках в секции карт */
}

.maps-section .custom-button:hover {
    background-color: #666; /* Цвет фона кнопок при наведении */
}

/* Стили для контейнера заголовка */
.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; /* Отступы между элементами */
    }

    .custom-button {
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .maps-section ul {
        flex-direction: column;
    }

    .maps-section ul li {
        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;
    }
}

/* Выше находится код Данте! */