3de138ff41
Navigation: - Nav bar pill shape (border-radius: 100px), dark glass style - Icons added to all nav items (FA4 outline variants, fixed-width alignment) - Footer hidden on all devices (nav panel covers mobile) - Footer nav icons + text added before removal Forms (ask.md, plan.md): - Full glassmorphism redesign: rounded card, blur backdrop - Input borders visible (#b8c4ce), focus ring, proper placeholder colors - Select: self-contained CSS, no backdrop-filter conflict, arrow fixed - Submit button: gradient with shadow - File upload button: .file-btn class, fa-arrow-down icon - form-note styled as info callout with left border + ⓘ icon - Footnotes sup.fn: circular badge, baseline positioning (no line-height jump) - Footnote ¹ on both consent checkboxes, accordion = full legal text - Dark mode: opaque dark card (rgba 22,26,34,0.88), proper contrast - Dark mode success/error messages adapted - Double checkmark bug fixed (removed ::after overlay) - Italic removed from privacy-details text Layout: - #main rounded corners (20px all sides) + margin for visibility - Post card images rounded (border-radius: 10px) - Page titles: uppercase removed, font-weight 900, left-aligned - "Подробнее" button hidden on post cards - iOS background-attachment: fixed bug fixed (scroll on mobile) - Pagination mobile: counter restored, buttons above footer Content: - Page titles uncommented in front matter (gallery, map, ask, plan) - Duplicate rawhtml title blocks removed Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
82 lines
1.8 KiB
CSS
Executable File
82 lines
1.8 KiB
CSS
Executable File
/* Пагинация — новые классы, нет конфликтов с темой */
|
|
|
|
.pager {
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 1.5rem 0 3.5rem;
|
|
}
|
|
|
|
.pager-inner {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
/* Кнопки Новее / Старше */
|
|
.pager-btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.4rem;
|
|
padding: 0.5rem 1.1rem;
|
|
font-size: 0.82rem;
|
|
font-weight: 500;
|
|
color: #555c63;
|
|
background: transparent;
|
|
border: 1px solid #d0d4d8;
|
|
border-radius: 20px;
|
|
text-decoration: none;
|
|
transition: color 0.18s, border-color 0.18s, background 0.18s;
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
letter-spacing: 0.01em;
|
|
}
|
|
|
|
.pager-btn:hover {
|
|
color: #5b9bd5;
|
|
border-color: #5b9bd5;
|
|
background: rgba(24, 191, 239, 0.06);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.pager-btn svg {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
/* Заблокированная кнопка */
|
|
.pager-disabled {
|
|
color: #c0c5ca;
|
|
border-color: #e8eaec;
|
|
cursor: default;
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* Счётчик страниц */
|
|
.pager-info {
|
|
font-size: 0.78rem;
|
|
color: #aaa;
|
|
padding: 0 0.5rem;
|
|
white-space: nowrap;
|
|
font-variant-numeric: tabular-nums;
|
|
min-width: 3.5rem;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Мобильные: уменьшить счётчик, добавить пространство */
|
|
@media (max-width: 736px) {
|
|
.pager-info {
|
|
font-size: 0.72rem;
|
|
min-width: 2.5rem;
|
|
color: #bbb;
|
|
}
|
|
|
|
/* Больше белого пространства под кнопками — чёткое разделение с футером */
|
|
#main > nav.pager {
|
|
padding-bottom: 3rem !important;
|
|
}
|
|
|
|
.pager-btn {
|
|
padding: 0.6rem 1.4rem;
|
|
font-size: 0.85rem;
|
|
}
|
|
}
|