v0.5.1: ссылки на стенды на главной + в Swagger описании

This commit is contained in:
2026-08-01 20:23:01 +04:00
parent edecf13493
commit 06bd9f704e
5 changed files with 99 additions and 2 deletions
+60
View File
@@ -115,6 +115,66 @@ main {
color: #fff;
}
/* ── Stands cards ── */
.card-stands .card-header {
display: flex;
align-items: baseline;
gap: 12px;
}
.stands-grid {
display: flex;
gap: 12px;
}
.stand-card {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
gap: 6px;
padding: 16px 12px;
background: var(--brand-grey-light);
border: 2px solid var(--border);
border-radius: var(--radius);
text-decoration: none;
color: var(--text);
transition: all 0.15s;
}
.stand-card:hover {
border-color: var(--brand-primary);
background: #eff6ff;
}
.stand-active {
border-color: var(--brand-primary);
background: #eff6ff;
}
.stand-name {
font-size: 18px;
font-weight: 700;
text-transform: uppercase;
color: var(--brand-primary);
}
.stand-count {
font-size: 13px;
color: var(--text-muted);
}
.stand-arrow {
font-size: 12px;
color: var(--brand-primary);
opacity: 0;
transition: opacity 0.15s;
}
.stand-card:hover .stand-arrow {
opacity: 1;
}
/* ── Dots ── */
.dot {
display: inline-block;