Вилучено вміст Додано вміст
Немає опису редагування |
Немає опису редагування |
||
| (Не показано 9 проміжних версій цього користувача) | |||
| Рядок 1: | Рядок 1: | ||
.charnav-wrap { |
.charnav-wrap { |
||
display: flex; |
display: flex; |
||
justify-content: center; |
|||
gap: 8px; |
gap: 8px; |
||
flex-wrap: wrap; |
flex-wrap: wrap; |
||
margin-bottom: 12px; |
margin-bottom: 12px; |
||
} |
|||
.charnav-wrap a { |
|||
text-decoration: none; |
|||
color: inherit; |
|||
} |
} |
||
| Рядок 9: | Рядок 15: | ||
.charnav-wrap .charnav-current { |
.charnav-wrap .charnav-current { |
||
display: inline-block; |
display: inline-block; |
||
box-sizing: border-box; |
|||
padding: 8px 16px; |
padding: 8px 16px; |
||
border-radius: |
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 { |
.charnav-wrap .charnav-link { |
||
border: 1.5px solid # |
border: 1.5px solid #0073aa; |
||
color: |
color: white; |
||
background: |
background: rgba(0, 0, 0, 0.3); |
||
} |
} |
||
| Рядок 28: | Рядок 36: | ||
.charnav-wrap .charnav-current { |
.charnav-wrap .charnav-current { |
||
background: # |
background: linear-gradient(90deg,#16a085,#2980b9); |
||
color: |
color: white; |
||
border: 1.5px solid # |
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;
}
}