v0.5.14: шапка в одну строку, стенды — большие кнопки по центру

This commit is contained in:
2026-08-03 09:39:42 +04:00
parent d26f9a6818
commit da6e765af5
3 changed files with 55 additions and 40 deletions
+38 -24
View File
@@ -38,7 +38,7 @@ body {
.header {
background: var(--bg);
border-bottom: 4px solid var(--brand-primary);
padding: 16px 24px 12px;
padding: 12px 24px;
position: sticky;
top: 0;
z-index: 100;
@@ -47,8 +47,17 @@ body {
.header-top {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 8px;
gap: 10px;
flex-wrap: wrap;
}
.header-stat {
font-size: 13px;
color: var(--text-muted);
}
.header-stat strong {
color: var(--text);
}
.logo {
@@ -74,45 +83,50 @@ body {
color: var(--brand-gray);
}
/* ── Header stands chips ── */
.header-stands {
/* ── Stands section (centered big cards) ── */
.stands-section {
display: flex;
gap: 8px;
margin-top: 8px;
justify-content: center;
gap: 16px;
padding: 32px 0 8px;
}
.stand-chip {
display: flex;
align-items: center;
gap: 6px;
padding: 4px 14px;
.stands-section .stand-card {
min-width: 160px;
padding: 20px 24px;
background: var(--bg);
border: 2px solid var(--border);
border-radius: 100px;
border-radius: var(--radius);
text-decoration: none;
font-size: 13px;
font-weight: 600;
color: var(--text-muted);
text-align: center;
transition: all 0.15s;
}
.stand-chip:hover {
.stands-section .stand-card:hover {
border-color: var(--brand-primary);
color: var(--brand-primary);
box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}
.stand-chip .stand-name {
.stands-section .stand-name {
display: block;
font-size: 24px;
font-weight: 800;
text-transform: uppercase;
font-size: 12px;
color: var(--text);
margin-bottom: 4px;
}
.stand-chip .stand-count {
font-size: 11px;
opacity: 0.7;
.stands-section .stand-count {
font-size: 14px;
color: var(--text-muted);
}
.stand-active {
.stands-section .stand-active {
border-color: var(--brand-primary);
background: #eff6ff;
}
.stands-section .stand-active .stand-name {
color: var(--brand-primary);
}