Spaces:
Runtime error
Runtime error
File size: 1,093 Bytes
d77e7e7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
/* Base layout */
html, body, [data-testid="stAppViewContainer"] {
background: var(--bg) !important;
}
.card {
background: var(--card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 16px 16px;
box-shadow: 0 1px 2px rgba(0,0,0,0.04);
margin-bottom: 16px;
}
.card-title {
color: var(--text);
font-weight: 700;
margin-bottom: 8px;
}
.kpi {
display: flex;
flex-direction: column;
gap: 6px;
}
.kpi .card-label {
color: var(--muted);
font-size: 13px;
text-transform: uppercase;
letter-spacing: 0.06em;
}
.kpi .card-value {
color: var(--text);
font-size: 26px;
font-weight: 800;
}
/* Streamlit tweaks */
button[kind="secondary"] {
border-color: var(--primary) !important;
}
/* Inputs */
section[data-testid="stSidebar"] .stSelectbox label,
section[data-testid="stSidebar"] .stMultiSelect label,
section[data-testid="stSidebar"] .stDateInput label {
color: var(--muted) !important;
}
/* Tables */
div[data-testid="stTable"] {
border-radius: 8px;
overflow: hidden;
}
|