MediaWiki:Common.css: различия между версиями
Перейти к навигации
Перейти к поиску
Нет описания правки Метка: ручная отмена |
Нет описания правки |
||
Строка 1: | Строка 1: | ||
/* Контейнер для изображения с кнопкой зума */ | |||
.image-container { | |||
position: relative; | |||
display: inline-block; | |||
overflow: hidden; | |||
width: 300px; /* Устанавливаем фиксированную ширину для контейнера */ | |||
} | |||
/* Стили для изображения */ | |||
.image-container img { | |||
max-width: 100%; | |||
height: auto; | |||
transition: transform 0.3s ease; /* Плавный переход при зуме */ | |||
} | |||
/* Зум при наведении */ | |||
.image-container:hover img { | |||
transform: scale(1.5); /* Увеличение на 50% */ | |||
} | |||
/* Кнопка для зума */ | |||
.zoom-button { | |||
position: absolute; | |||
bottom: 10px; | |||
right: 10px; | |||
padding: 5px 10px; | |||
font-size: 12px; | |||
background-color: rgba(0, 0, 0, 0.5); | |||
color: white; | |||
text-decoration: none; | |||
cursor: pointer; | |||
border: none; | |||
} | |||
/* Зум при фокусе на кнопке */ | |||
.zoom-button:focus + img, | |||
.image-container:hover .zoom-button:focus + img { | |||
transform: scale(2); /* Увеличение на 100% */ | |||
} | |||
.pie-chart { | .pie-chart { | ||
width: 280px; | width: 280px; |
Версия от 20:44, 30 августа 2024
/* Контейнер для изображения с кнопкой зума */
.image-container {
position: relative;
display: inline-block;
overflow: hidden;
width: 300px; /* Устанавливаем фиксированную ширину для контейнера */
}
/* Стили для изображения */
.image-container img {
max-width: 100%;
height: auto;
transition: transform 0.3s ease; /* Плавный переход при зуме */
}
/* Зум при наведении */
.image-container:hover img {
transform: scale(1.5); /* Увеличение на 50% */
}
/* Кнопка для зума */
.zoom-button {
position: absolute;
bottom: 10px;
right: 10px;
padding: 5px 10px;
font-size: 12px;
background-color: rgba(0, 0, 0, 0.5);
color: white;
text-decoration: none;
cursor: pointer;
border: none;
}
/* Зум при фокусе на кнопке */
.zoom-button:focus + img,
.image-container:hover .zoom-button:focus + img {
transform: scale(2); /* Увеличение на 100% */
}
.pie-chart {
width: 280px;
height: 280px;
border-radius: 50%;
background-image: conic-gradient(
#49C2DB 0% 50%, /* 50% голубого */
#A2C063 50% 90%, /* 40% зелёного */
#636363 90% 100% /* 10% серого */
);
position: relative;
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
.pie-chart li {
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
clip-path: polygon(50% 50%, 100% 0, 100% 100%);
}
.pie-chart li a {
display: block;
width: 100%;
height: 100%;
border-radius: 50%;
text-indent: -9999px; /* Скрываем текст */
transition: filter 0.3s; /* Плавный переход яркости */
}
.pie-chart li a:hover {
filter: brightness(1.2); /* Яркость увеличивается на 20% при наведении */
}
.pie-chart .segment-1 {
transform: rotate(0deg);
}
.pie-chart .segment-2 {
transform: rotate(180deg);
}
.pie-chart .segment-3 {
transform: rotate(324deg);
}
.pie-chart .center {
position: absolute;
top: 50%;
left: 50%;
width: 220px;
height: 220px;
background-color: var(--setlist-bg-color);
border-radius: 50%;
transform: translate(-50%, -50%);
}
.mw-parser-output a.extiw:visited, .mw-parser-output a.external:visited {
color: transparent;
}
.mw-parser-output a.external.free {
word-break: break-all;
color: #a1383800;
}
li.ring {
width: 250px;
height: 250px;
border-radius: 50%;
position: relative;
list-style-type: none; /* Убирает маркер списка */
margin: 10px;
padding: 0; /* Убирает отступы */
overflow: hidden;
cursor: pointer; /* Курсор указывает на возможность клика */
background-color: #a2c063; /* Цвет кольца */
}
li.ring::before {
content: '';
position: absolute;
width: 50%;
height: 100%;
background-color: red; /* Красный цвет для одной половины */
border-radius: 50%;
top: 0;
left: 0;
z-index: 1;
}
li.ring::after {
content: '';
position: absolute;
width: 160px; /* Размер внутреннего круга */
height: 160px;
background-color: transparent; /* Прозрачный внутренний круг */
border-radius: 50%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #a2c063; /* Цвет внутреннего круга */
z-index: 2; /* Помещает внутренний круг выше */
}
li.ring a {
position: absolute;
display: block;
width: 100%;
height: 100%;
text-indent: -9999px; /* Убирает текст с экрана */
}
.red-area {
background-color: transparent; /* Скрывает фон, чтобы красная зона была видна */
clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%); /* Оставляет только красную половину */
z-index: 1;
}
.center-area {
background-color: transparent; /* Прозрачный фон */
clip-path: circle(50% at 50% 50%); /* Центр кольца */
z-index: 2; /* Обеспечивает, что центр будет выше остальных */
}
.other-area {
background-color: transparent; /* Прозрачный фон */
clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%); /* Остальная часть кольца */
z-index: 3;
}
li.ring:hover {
background-color: #b6d173; /* Подсвеченный цвет при наведении */
}
li.ring a {
display: block;
width: 100%;
height: 100%;
text-decoration: none; /* Убирает подчеркивание */
}
a.ring {
display: block;
width: 250px;
height: 250px;
border-radius: 50%;
background-color: #a2c063; /* Цвет кольца */
position: relative;
list-style-type: none; /* Убирает маркер списка */
margin: 10px;
padding: 0; /* Убирает отступы */
overflow: hidden;
transition: background-color 0.3s ease; /* Плавный переход */
cursor: pointer; /* Курсор указывает на возможность клика */
text-decoration: none; /* Убирает подчеркивание */
color: transparent;
}
a.ring:hover {
background-color: #b6d173; /* Подсвеченный цвет при наведении */
}
li.ring span {
position: relative;
z-index: -1; /* Ensure text is above the pseudo-element */
color: transparent; /* Make the text inside transparent */
}
/* Circular Table Styling */
.circular-table {
display: grid;
grid-template-columns: repeat(8, 1fr);
grid-template-rows: repeat(8, 1fr);
position: relative;
width: 300px;
height: 300px;
border-radius: 50%;
overflow: hidden;
margin: auto;
}
.circular-table a {
position: absolute;
width: 100%;
height: 100%;
}
.circular-table div {
position: absolute;
width: 100%;
height: 100%;
clip-path: polygon(50% 50%, 0 100%, 100% 100%);
transform-origin: center;
transition: background-color 0.6s ease, filter 0.6s ease;
}
.circular-table div:hover {
filter: brightness(1.2);
opacity: 1;
}
/* CSS placed here will be applied to all skins */
/* Стиль для элементов списка с адаптивным размером */
li.custom-adaptive-item {
background-color: #DDD7CC; /* Цвет фона */
border: 2px solid #999; /* Цвет и толщина рамки */
border-radius: 10px; /* Закругленные углы */
padding: 10px; /* Внутренние отступы */
margin-bottom: 10px; /* Отступ между элементами списка */
list-style-type: none; /* Убираем стандартные маркеры списка */
display: inline-block; /* Для уменьшения ширины до содержимого */
min-width: 150px; /* Минимальная ширина элемента */
min-height: 50px; /* Минимальная высота элемента */
max-width: 100%; /* Максимальная ширина до 100% контейнера */
word-wrap: break-word; /* Перенос длинных слов на следующую строку */
box-sizing: border-box; /* Учитываем рамку и отступы в размерах */
position: relative; /* Необходим для позиционирования псевдоэлемента */
transition: background-color 0.3s ease, border-color 0.3s ease, filter 0.3s ease;
}
/* Стиль для ссылки, чтобы она занимала всю область <li> */
li.custom-adaptive-item .link-item {
display: block; /* Занимает всю доступную ширину и высоту */
text-decoration: none; /* Убираем подчеркивание текста */
color: inherit; /* Наследуем цвет от родительского элемента */
height: 100%; /* Занимает полную высоту <li> */
width: 100%; /* Занимает полную ширину <li> */
}
/* Дополнительный эффект при наведении мыши */
li.custom-adaptive-item:hover {
background-color: #CFC8B2; /* Цвет фона при наведении */
border-color: #777; /* Цвет рамки при наведении */
}
/* Изменение оттенка для изображения при наведении на <li> */
li.custom-adaptive-item:hover img {
filter: brightness(0.8); /* Темнее на 20% при наведении */
}
/* Текст "Discography" появляется только в уникальном элементе */
li.unique-item::after {
content: "Discography"; /* Текст для отображения */
color: white; /* Цвет текста */
font-size: 20px; /* Размер шрифта */
font-weight: bold; /* Полужирный шрифт */
position: absolute; /* Абсолютное позиционирование */
top: 50%; /* Центрирование по вертикали */
left: 50%; /* Центрирование по горизонтали */
transform: translate(-50%, -50%); /* Смещение на половину ширины и высоты */
opacity: 0; /* Исходное состояние невидимо */
transition: opacity 0.3s ease; /* Плавный переход */
}
/* Отображение текста при наведении на уникальный элемент */
li.unique-item:hover::after {
opacity: 1; /* Сделать текст видимым */
}
.mw-mmv-post-image { background-color: #DDD7CC; }
.mw-ui-button.mw-ui-progressive:not(:disabled) { background-color: #D02019; }
.custom-table tbody .cell-red { background-color: #ffdddd; }
.custom-table { background-color: #EFE9DE; border: 2px solid #D33328; border-collapse: collapse; }
.disc-table { border: 2px solid #D33328; }
.custom-table .cell-der { background-color: #CC531E; }
.custom-table th, .custom-table td { border: 1px solid #D33328; padding: 3px; }
.custom-table .header-red { background-image:url(/images/d/db/Clancy_Letter_Background1.png); background-size: cover; color: white; text-align: center; }
.custom-table .header-blue { background-image:url(/images/0/0a/Whiteback.jpg); background-size: cover; color: white; text-align: center; }
.custom-table .cell-red { background-color: #FFE281; }
.custom-table .cell-photo { background-color: #DDD7CC; }
.custom-table .cell-box { background-image:url(/images/6/64/Boxm.png); }
.custom-table .cell-blue { background-color: #CEC9C2; border: 1px solid #C14424; height: 2px; }
.custom-table .cell-disco { text-align:center; border-color:#EFBB7F; background-color: #EFE9DE; }
.custom-table .cell-green { background-color: #EFE9DE; border: 1px solid #C14424; height: 2px; }
.custom-table .header-grass { background-color: #EFE9DE; }
#footer-info li { line-height: 1.4; background: #DDD7CC; margin-bottom: 4px; text-indent: 5px; }
#footer-places li { float: left; margin-right: 1em; line-height: 2; background: #DDD7CC; text-indent: 5px; text-indent-right: 5px; }
.background-table { background-image: url(/images/3/3b/Clancy_background.png); background-size: cover;}
.vector-user-menu-legacy li { font-size: 0.75em; float: left; margin-left: 0.75em; padding-top: 2.6em; line-height: 1.16666667; }
.client-js .sortable:not(.jquery-tablesorter) > * > tr:first-child > th:not(.unsortable), .jquery-tablesorter th.headerSort { background-image: url(/resources/src/jquery.tablesorter.styles/images/sort_both.svg?0e440); cursor: pointer; background-repeat: no-repeat; background-position: center right; padding-right: 21px; background-size: auto; }
.table-bg { background-image:url(/images/0/0a/Whiteback.jpg); background-size: cover; background-repeat: no-repeat; }
.border-image-container { border-image-source: linear-gradient(to right, #ff8c00, #ffd700); }
.wikitable { background-color: #EFE9DE; }
.gradient-underline { display: inline-block; position: relative; }
.gradient-underline::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 100%; height: 5px; background-image: linear-gradient(to right, #ff0000, #00ff00); background-size: 100% 100%; z-index: -1; }
.my-template.theme-dark { /* Styles specific to the "dark" theme */ }
.rounded-table { border-collapse: collapse; border-radius: 10px; overflow: hidden; }
.wikitable.transparent { background-color: transparent; border: none; }
/* Change the background color of the bottom and left of eath page, up to behind the logo: */
body { background: #D02019 url(/images/a/a9/Dema_beck_clancy.png) no-repeat; font-family: 'Roboto', Arial, sans-serif; }
#content .client-darkmode { background: #AA3C14; font-family: "Roboto"; }
.theme-dark .infobox { background-color: #333; color: #fff; border: 1px solid #666; }
/* background color of the content and title of pages */
#content { background-color: #DDD7CC; }
/* This is from the background color of the title of the Navigation menu in the left column */
#p-navigation { background-color: #FFD800; border-radius: 10px 10px 0px 0px; border: 3px solid #722215; border-bottom:hidden; background-image:url(/images/9/97/Sidebar.png); }
/* This is from the background color of the title of the Twenty one pilots menu in the left column */
#p-Twenty_one_pilots { background-color: #FFD800; border: 3px solid #722215; border-bottom:hidden; border-top:hidden; background-image:url(/images/3/38/Sidebar2.png); }
/* This is from the background color of the title of the Twenty one pilots menu in the left column */
#p-Тайлер_Джозеф { background-color: #FFD800; border: 3px solid #722215; border-bottom:hidden; border-top:hidden; background-image:url(/images/3/38/Sidebar2.png); }
/* This is from the background color of the title of the Members menu in the left column */
#p-Участники { background-color: #FFD800; border: 3px solid #722215; border-bottom:hidden; border-top:hidden; background-image:url(/images/3/38/Sidebar2.png); }
.background-table { background-image: url(/images/3/3b/Clancy_background.png); background-size: cover;}
.wikitable > tr > th, .wikitable > * > tr > th { background:#}
#catlinks { background:#CEC9C2; border: 1px solid #D33328; }
.mw-parser-output .tracklist th[scope="col"] { background-color: #ef5e29; }
.wikitable > tr > th, .wikitable > * > tr > th { background-color: #D33328; border: 1px solid #7b1325; background-image: url(/images/d/db/Clancy_Letter_Background1.png); background-size: cover; color: #fff; }
.wikitable > tr > th, .wikitable > * > tr > th { background-color: #eaecf0; text-align: center; color: #fff; }
.wikitable > tr > th, .wikitable > * > tr > th { background-color: #D33328; border: 1px solid #7b1325; background-image: url(/images/d/db/Clancy_Letter_Background1.png); }
.wikitable > tr > th, .wikitable > tr > td, .wikitable > * > tr > th, .wikitable > * > tr > td { background: #EFE9DE; }
.wikitable > tr > th, .wikitable > * > tr > th { background-color: #D33328; border: 1px solid #7b1325; background-size: cover; background-image: url(/images/d/db/Clancy_Letter_Background1.png); }
.wikitable > tr > th, .wikitable > tr > td, .wikitable > * > tr > th, .wikitable > * > tr > td { border: 1px solid #7b1325; }
.catlinks li { display: inline-block; line-height: 1.25em; border-left: 1px solid #D33328; margin: 0.125em 0; padding: 0 0.5em; }
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown .vector-menu-heading { background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#722215 100%); background-repeat: no-repeat; background-size: 1px 100%; }
:not(:checked) > .vector-menu-checkbox { background:#EFB737 }
li.gallerybox div.thumb { border: hidden; background-color: #D33328; text-align:center; }
.mw-parser-output .tracklist-total-length th>span { background-color: #d8663d; }
.mw-parser-output .tracklist-total-length td { background-color: #d8663d; }
.vector-menu-dropdown { background-image: linear-gradient(to bottom,rgba(167,215,249,0) 0,#722215 100%); }
.c-actions { margin: 10px 5px 0px 0px; }
.c-item { background-color: #EFE9DE; border:2px solid #D33328; color: #722215; margin: 10px 0px 15px 0px; }
.c-avatar img { padding: 3px; border: 1px solid #dcdcdc; background-color: #bc1313; margin: 6px 0px 0px 6px; }
.c-score { right: 10px; }
.c-container { margin: 0px 0px 0px 75px; }
.c-user { margin: 1px 0px 6px 0px; }
.c-time { color: #af1414; }
.f-message { background-color: #FFF8ED; width: 445px; }
.c-comment { text-indent: 5px; }
.user-section-heading { margin: 0 0 23px 0; }
#profile-title { margin: 15px 20px 29px -6px; }
#profile-image img { margin: 15px 0px 0px 0px; }
body #p-personal li#p-themes > span { position: relative; top: 24px; left: -101px; }
.vector-user-menu-legacy li { position: relative; top: -26px; right: -10px; }
.mwe-popups .mwe-popups-extract:after, .mwe-popups .mwe-popups-extract blockquote:after { content: ' '; position: absolute; bottom: 0; width: 25%; height: 20px; background-color: #EFE9DE; pointer-events: none; }
figure[typeof~='mw:File/Thumb'], figure[typeof~='mw:File/Frame'] { background-color: #D35232; border-color: #9E3A19; }
.mw-content-ltr figure[typeof~='mw:File/Thumb'] > figcaption, .mw-content-ltr figure[typeof~='mw:File/Frame'] > figcaption { background-color: #D02019; border-color: #9E3A19; color: #fff }
.mwe-popups .mwe-popups-extract[dir='ltr']:after { right: 0; background-image: linear-gradient(to right,rgba(255,255,255,0),#EFE9DE 50%); }
.wikitable > tr > th, .wikitable > tr > td, .wikitable > * > tr > th, .wikitable > * > tr > td { background-color: #; border: 1px solid #D33328; padding: 0.2em 0.4em; }
input[type="checkbox" i] { color: #B0E0E6; }
.mwe-popups .mwe-popups-container { background: #EFE9DE; }
.mw-parser-output .infobox-above, .mw-parser-output .infobox-title { font-size: 125%; font-weight: bold; text-align: center; border-radius: 2px 2px; background-image: url(/images/d/db/Clancy_Letter_Background1.png); background-size: cover; }
#n-Discord a { color: #fff !important; font-weight: bold; border-radius: 4px; border: 1px solid #4c57d0; background-color: #5865f2; display: block; position: relative; padding: 4px 4px 5px calc(17px + 6.5px * 2); box-shadow: 0 2px 3px rgba(0,0,0,0.1); transition: 0.2s; }
.vector-legacy-sidebar .vector-menu-portal .vector-menu-heading { display: block; color: #44180D; margin: 0.5em 0 0 0.66666667em; border: 0; padding: 0.25em 0; font-size: 0.80em; font-weight: bold; cursor: default; background-image: linear-gradient(to right,rgba(200,204,209,0) 0,#AA3C14 33%,#AA3C14 66%,rgba(200,204,209,0) 100%); background-position: center bottom; background-repeat: no-repeat; background-size: 100% 1px; }
.vectorTabs span a { background-color: #B0E0E6; }
#p-logo { ; }
.featurebox-heading { background-image: url(/images/1/14/Scaled_transparent.png); color: #fff; }
element.style { width: 60%; background-color: ; background-image: url(/images/1/14/Scaled_transparent.png); }
.toc, .toccolours { border-radius: 8px 8px; border: 3px solid #D33328; background-color: #EFE9DE; }
#p-tb { background-color: #FFD800; border-radius: 0px 0px 10px 10px; border: 3px solid #722215; border-top:hidden; background-image:url(/images/3/38/Sidebar2.png); }
#p-personal ul { background: #DDD7CC; border-radius: 3px 3px; border: 2px solid #D33328; padding:0.1em 1.5em; height: 23px; }
#mw-head { background-image: url(/images/4/42/Heared-3_%283%29.gif);}
.vector-menu-tabs-legacy .selected { background: #DDD7CC }
.vector-menu-checkbox { color: #D33328; }
.mp_header { background-image:url(/images/9/9c/Wikinews_banner_2024.png); background-repeat: no-repeat; background-position: top right; width: 100%;}
.mw-body { border: 1.5px solid #722215; margin-top: -4px; }
h1, h2 { border-color: #57544a; }
.vector-menu-dropdown .mw-list-item a:not(.mw-ui-icon) { background: #F4FFFF; }
img[Attributes Style] { height: 168px; }
.grid * { background: #E0C9AF; }
.vector-search-box-input { color: #312400; border: 1px solid #6D2614; }
.skin-vector .uls-search { border-bottom-color: #7A4D1D; }
.vector-menu-tabs-legacy li { background-image: linear-gradient(to top,#DDD7CC 0,#DDD7CC 1px,#C1BBB2 100% );
.vector-legacy-sidebar .vector-menu-portal .vector-menu-heading { background-image: linear-gradient(to right,rgba(200,204,209,0) 0,#D33328 33%,#F7572E 66%,rgba(200,204,209,0) 100%); background-position: center bottom; background-repeat: no-repeat; background-size: 100% 1px; font-weight: bold; }
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown .vector-menu-heading { background-image: linear-gradient(to bottom,rgba(68,137,145,0) 0,#D33328 100%); border: 4px solid #722215; background-repeat: no-repeat; background-size: 1px 100%; border: 4px solid #D33328; margin-top: -4px; }
.imagelink_telegram a {
width:100px;
height:100px;
display:block;
text-decoration:none;
background-image: url("https://upload.wikimedia.org/wikipedia/commons/thumb/8/82/Telegram_logo.svg/2048px-Telegram_logo.svg.png")
body.page-Main_Page h1.firstHeading { display:none; }
#title-para { background-color: #F0FFFF; }
.hoverimage:hover {
transition: 0.2s ease;
transform: scale(1.1);
}
#mw-content-text .featurebox .featurebox-heading{
background-image:url("https://tfwiki.net/mediawiki/images2/2/26/Allsparkstrip_transparent.png");
}
.hover-highlight:hover {
background-color: #ffffcc; /* Any desired color */
}
/* Hover Box for switching the visibility of the selected item */
.hoverbox { display:inline-block; padding:0em; }
.hoverbox .hoveritem { display:none; margin:0em; padding:0em; }
.hoverbox .hoveritem.selected { display:inline-block; }
.hoverbox:hover .hoveritem { display:inline-block; }
.hoverbox:hover .hoveritem.selected { display:none; }
--theme-background-color: #2c56a0;