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



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

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

Вилучено вміст Додано вміст
Створена сторінка: .section-collapsible { margin-bottom: 8px; border-radius: 6px; overflow: hidden; } .section-collapsible-header { background: linear-gradient(90deg, #16a085, #2980b9); color: #fff; font-weight: 700; font-size: 1.1em; padding: 10px 16px; cursor: pointer; position: relative; user-select: none; } .section-collapsible-header::after { content: "▾"; position: absolute; right: 16px; transition: transf...
 
Немає опису редагування
Рядок 12: Рядок 12:
padding: 10px 16px;
padding: 10px 16px;
cursor: pointer;
cursor: pointer;
position: relative;
user-select: none;
user-select: none;
position: relative;
}
}


Рядок 23: Рядок 23:
}
}


.section-collapsible.collapsed .section-collapsible-header::after {
.mw-collapsed .section-collapsible-header::after {
transform: rotate(-90deg);
transform: rotate(-90deg);
}
}
Рядок 30: Рядок 30:
padding: 12px 16px;
padding: 12px 16px;
background: rgba(0, 0, 0, 0.15);
background: rgba(0, 0, 0, 0.15);
}

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

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

.section-collapsible {
    margin-bottom: 8px;
    border-radius: 6px;
    overflow: hidden;
}

.section-collapsible-header {
    background: linear-gradient(90deg, #16a085, #2980b9);
    color: #fff;
    font-weight: 700;
    font-size: 1.1em;
    padding: 10px 16px;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.section-collapsible-header::after {
    content: "▾";
    position: absolute;
    right: 16px;
    transition: transform 0.2s ease;
}

.mw-collapsed .section-collapsible-header::after {
    transform: rotate(-90deg);
}

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