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



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

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

Вилучено вміст Додано вміст
Створена сторінка: .char-nav { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; } .char-nav a, .char-nav-item { display: inline-block; padding: 8px 16px; border-radius: 20px; font-weight: 600; text-decoration: none; text-align: center; transition: all 0.2s ease; } .char-nav a { border: 1.5px solid #2ecc71; color: #2ecc71; background: transparent; } .char-nav a:hover { background: rgba(46, 204, 113,...
 
Немає опису редагування
 
(Не показано 10 проміжних версій цього користувача)
Рядок 1: Рядок 1:
.char-nav {
.charnav-wrap {
display: flex;
display: flex;
justify-content: center;
gap: 8px;
gap: 8px;
flex-wrap: wrap;
flex-wrap: wrap;
Рядок 6: Рядок 7:
}
}


.char-nav a,
.charnav-wrap a {
text-decoration: none;
.char-nav-item {
color: inherit;
}

.charnav-wrap .charnav-link,
.charnav-wrap .charnav-current {
display: inline-block;
display: inline-block;
box-sizing: border-box;
padding: 8px 16px;
padding: 8px 16px;
border-radius: 20px;
border-radius: 10px;
font-weight: 600;
font-weight: 600;
text-decoration: none;
text-decoration: none;
text-align: center;
text-align: center;
transition: all 0.2s ease;
transition: all 0.2s ease;
white-space: nowrap;
}
}


.charnav-wrap .charnav-link {
.char-nav a {
border: 1.5px solid #2ecc71;
border: 1.5px solid #0073aa;
color: #2ecc71;
color: white;
background: transparent;
background: rgba(0, 0, 0, 0.3);
}
}


.char-nav a:hover {
.charnav-wrap .charnav-link:hover {
background: rgba(46, 204, 113, 0.15);
background: rgba(46, 204, 113, 0.15);
}
}


.char-nav-item.current {
.charnav-wrap .charnav-current {
background: #2ecc71;
background: linear-gradient(90deg,#16a085,#2980b9);
color: #0a1f14;
color: white;
border: 1.5px solid #2ecc71;
border: 1.5px solid #0073aa;
}

/* Мобільні пристрої */
@media (max-width: 720px) {
.charnav-wrap {
gap: 6px;
}
.charnav-wrap .charnav-link,
.charnav-wrap .charnav-current {
padding: 6px 10px;
font-size: 0.9em;
flex: 1 1 auto;
min-width: 0;
}
}
}

Поточна версія на 20:30, 2 липня 2026

.charnav-wrap {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.charnav-wrap a {
    text-decoration: none;
    color: inherit;
}

.charnav-wrap .charnav-link,
.charnav-wrap .charnav-current {
    display: inline-block;
    box-sizing: border-box;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.charnav-wrap .charnav-link {
    border: 1.5px solid #0073aa;
    color: white;
    background: rgba(0, 0, 0, 0.3);
}

.charnav-wrap .charnav-link:hover {
    background: rgba(46, 204, 113, 0.15);
}

.charnav-wrap .charnav-current {
    background: linear-gradient(90deg,#16a085,#2980b9);
    color: white;
    border: 1.5px solid #0073aa;
}

/* Мобільні пристрої */
@media (max-width: 720px) {
    .charnav-wrap {
        gap: 6px;
    }
    .charnav-wrap .charnav-link,
    .charnav-wrap .charnav-current {
        padding: 6px 10px;
        font-size: 0.9em;
        flex: 1 1 auto;
        min-width: 0;
    }
}