feat: соц-кнопки и кнопка «Наверх» внизу + русская плюрализация

- Под лентой контента появилась панель из трёх pill-кнопок:
  Telegram (t.me/anotherreflections), ВКонтакте (vk.com/anotherreflections)
  и «Наверх» (smooth scroll to top)
- Универсальный plural() в consts.ts — больше нет «8 мира»,
  hero показывает «8 миров / 50 публикаций / 20 лет онлайн»
  с автоматически правильной формой при любом значении
- Уточнено описание Ренессанса: «фантастическими допущениями мира Сумрака»
This commit is contained in:
2026-05-21 01:43:30 +03:00
parent 65a55ca6ef
commit 5f9ec37211
6 changed files with 81 additions and 7 deletions

View File

@@ -519,6 +519,40 @@ pre {
background: var(--bg-elev-2);
}
/* ============================== SOCIAL BAR ============================== */
.social-bar {
display: flex;
justify-content: center;
gap: .75rem;
margin: 4rem auto 1rem;
flex-wrap: wrap;
}
.social-btn {
display: inline-flex;
align-items: center;
gap: .55em;
padding: .65em 1.25em;
background: var(--bg-elev);
border: 1px solid var(--border);
border-radius: 100px;
color: var(--fg-muted);
font-size: .88rem;
font-weight: 500;
letter-spacing: 0.02em;
cursor: pointer;
font-family: inherit;
transition: border-color .2s, color .2s, background .2s, transform .2s;
border-bottom: 1px solid var(--border);
}
.social-btn:hover {
border-color: var(--accent);
color: var(--accent);
background: var(--bg-elev-2);
transform: translateY(-1px);
border-bottom-color: var(--accent);
}
.social-btn svg { flex-shrink: 0; }
/* ============================== FOOTER ============================== */
.site-footer {
border-top: 1px solid var(--border);