57 lines
1.7 KiB
CSS
57 lines
1.7 KiB
CSS
/* Wereldexport — KPIs + layout lock */
|
|
|
|
.wereldexport-workspace.vtabs-layout {
|
|
display: flex !important;
|
|
flex-direction: row !important;
|
|
align-items: flex-start !important;
|
|
gap: 1rem !important;
|
|
}
|
|
.wereldexport-workspace > .vtabs-nav {
|
|
flex: 0 0 220px !important;
|
|
width: 220px !important;
|
|
max-width: 220px !important;
|
|
}
|
|
.wereldexport-workspace > .vtabs-content {
|
|
flex: 1 1 0 !important;
|
|
min-width: 0 !important;
|
|
}
|
|
|
|
.ei-neo-kpi-row {
|
|
display: grid;
|
|
grid-template-columns: repeat(6, 1fr);
|
|
gap: 0.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
@media (max-width: 1100px) { .ei-neo-kpi-row { grid-template-columns: repeat(3, 1fr); } }
|
|
@media (max-width: 600px) { .ei-neo-kpi-row { grid-template-columns: repeat(2, 1fr); } }
|
|
|
|
.ei-neo-kpi {
|
|
padding: 0.65rem 0.75rem;
|
|
border-radius: 10px;
|
|
background: rgba(10, 14, 20, 0.85);
|
|
border: 1px solid rgba(148, 163, 184, 0.12);
|
|
}
|
|
.ei-neo-kpi-top { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.25rem; }
|
|
.ei-neo-ring {
|
|
width: 32px; height: 32px; border-radius: 50%;
|
|
background: conic-gradient(var(--ring-color, #0ea5e9) calc(var(--ring-pct, 70) * 1%), rgba(30, 41, 59, 0.8) 0);
|
|
display: flex; align-items: center; justify-content: center;
|
|
}
|
|
.ei-neo-ring-inner {
|
|
width: 26px; height: 26px; border-radius: 50%;
|
|
background: #0a0e14;
|
|
display: flex; align-items: center; justify-content: center;
|
|
font-size: 0.85rem;
|
|
}
|
|
.ei-neo-kpi-label { font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: #64748b; }
|
|
.ei-neo-kpi-value { font-size: 1.35rem; font-weight: 700; color: #f1f5f9; line-height: 1.1; }
|
|
|
|
.ei-sync-bar {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
padding: 0.5rem 0;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
.ei-sync-bar .btn { font-size: 0.72rem; }
|