Spaces:
Build error
Build error
File size: 549 Bytes
4501e16 | 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 | body {
font-family: Arial, sans-serif;
}
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
gap: 12px;
margin-bottom: 16px;
}
.card {
background: #ffffff;
border: 1px solid #e5e7eb;
border-radius: 14px;
padding: 14px;
text-align: center;
box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.card .label {
font-size: 12px;
color: #6b7280;
margin-bottom: 6px;
text-transform: uppercase;
letter-spacing: 0.04em;
}
.card .value {
font-size: 22px;
font-weight: 700;
color: #111827;
}
|