×
Створити нову статтю
Введіть тут заголовок вашої сторінки:
Зараз у нас є 22 статті у Сходження Героя Щита. Введіть назву своєї статті угорі або натисніть на одну з назв унизу і почніть писати!



Сходження Героя Щита

Шаблон:Згортка/styles.css: відмінності між версіями

Вилучено вміст Додано вміст
Немає опису редагування
Немає опису редагування
Рядок 1: Рядок 1:
.section-collapsible {
.section-collapsible .section-collapsible-header {
display: block !important;
margin-bottom: 8px;
width: 100% !important;
border-radius: 6px;
overflow: hidden;
float: none !important;
position: relative !important;
}
background: linear-gradient(90deg, #16a085, #2980b9) !important;

color: #fff !important;
.section-collapsible-header {
background: linear-gradient(90deg, #16a085, #2980b9);
color: #fff;
font-weight: 700;
font-weight: 700;
font-size: 1.1em;
font-size: 1.1em;
Рядок 13: Рядок 11:
cursor: pointer;
cursor: pointer;
user-select: none;
user-select: none;
position: relative;
box-sizing: border-box;
}
}


.section-collapsible-header::after {
.section-collapsible .section-collapsible-content {
content: "▾";
display: block;
position: absolute;
padding: 12px 16px;
background: rgba(0, 0, 0, 0.15);
right: 16px;
transition: transform 0.2s ease;
}
}


.mw-collapsed .section-collapsible-header::after {
.section-collapsible.mw-collapsed .section-collapsible-content {
transform: rotate(-90deg);
display: none !important;
}

.section-collapsible-content {
padding: 12px 16px;
background: rgba(0, 0, 0, 0.15);
}
}

Версія за 21:16, 1 липня 2026

.section-collapsible .section-collapsible-header {
    display: block !important;
    width: 100% !important;
    float: none !important;
    position: relative !important;
    background: linear-gradient(90deg, #16a085, #2980b9) !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 1.1em;
    padding: 10px 16px;
    cursor: pointer;
    user-select: none;
    box-sizing: border-box;
}

.section-collapsible .section-collapsible-content {
    display: block;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.15);
}

.section-collapsible.mw-collapsed .section-collapsible-content {
    display: none !important;
}