Law/app/web/client.css
2026-03-02 21:32:11 +03:00

150 lines
2.3 KiB
CSS

.client-page-shell {
min-height: 100vh;
}
.client-main {
width: min(1400px, calc(100% - 1.6rem));
margin: 0 auto;
padding: 1rem 0 1.6rem;
}
.client-topbar p {
margin: 0.35rem 0 0;
}
.client-title-row {
display: inline-flex;
align-items: center;
gap: 0.52rem;
}
.client-title-row .brand-mark {
width: 24px;
height: 24px;
}
.client-title-row h1 {
margin: 0;
}
.client-section {
display: block;
}
.client-request-toolbar {
display: flex;
gap: 0.6rem;
align-items: flex-end;
margin-bottom: 0.85rem;
}
.client-request-toolbar .field.grow {
flex: 1;
}
.client-summary {
margin-bottom: 0.85rem;
}
.client-summary-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 0.75rem 1.1rem;
flex-wrap: wrap;
padding: 0.2rem 0;
}
.client-summary-chips {
display: inline-flex;
align-items: center;
gap: 0.42rem;
flex-wrap: wrap;
}
.client-summary-chip {
display: inline-flex;
align-items: center;
gap: 0.24rem;
border-radius: 999px;
border: 1px solid rgba(121, 152, 197, 0.3);
background: rgba(74, 106, 157, 0.14);
color: #deebff;
padding: 0.2rem 0.58rem;
font-size: 0.78rem;
font-weight: 700;
line-height: 1.25;
}
.client-summary-chip span {
color: #f0f6ff;
}
.client-summary-chip-topic {
border-color: rgba(143, 168, 208, 0.32);
background: rgba(96, 126, 171, 0.15);
}
.client-summary-dates {
display: inline-flex;
align-items: center;
flex-wrap: wrap;
gap: 0.4rem 0.85rem;
color: #9fb3cc;
font-size: 0.79rem;
}
.client-summary-dates b {
color: #dce8f8;
font-weight: 700;
}
.client-help-modal {
width: min(760px, 100%);
}
.client-help-stack {
display: grid;
gap: 0.75rem;
}
.client-help-block {
border: 1px solid var(--line);
border-radius: 12px;
background: rgba(255, 255, 255, 0.02);
padding: 0.7rem;
display: grid;
gap: 0.6rem;
}
.client-help-description {
margin: 0;
color: #dbe6f4;
line-height: 1.45;
}
#client-page-status {
margin-top: 0.7rem;
}
@media (max-width: 1120px) {
.client-summary-row {
align-items: flex-start;
}
}
@media (max-width: 760px) {
.client-main {
width: calc(100% - 1rem);
}
.client-request-toolbar {
flex-direction: column;
align-items: stretch;
}
.client-summary-dates {
display: grid;
gap: 0.3rem;
}
}