Files
michaelschiemer/resources/css/admin/06-components/_stat-list.css
Michael Schiemer fc3d7e6357 feat(Production): Complete production deployment infrastructure
- Add comprehensive health check system with multiple endpoints
- Add Prometheus metrics endpoint
- Add production logging configurations (5 strategies)
- Add complete deployment documentation suite:
  * QUICKSTART.md - 30-minute deployment guide
  * DEPLOYMENT_CHECKLIST.md - Printable verification checklist
  * DEPLOYMENT_WORKFLOW.md - Complete deployment lifecycle
  * PRODUCTION_DEPLOYMENT.md - Comprehensive technical reference
  * production-logging.md - Logging configuration guide
  * ANSIBLE_DEPLOYMENT.md - Infrastructure as Code automation
  * README.md - Navigation hub
  * DEPLOYMENT_SUMMARY.md - Executive summary
- Add deployment scripts and automation
- Add DEPLOYMENT_PLAN.md - Concrete plan for immediate deployment
- Update README with production-ready features

All production infrastructure is now complete and ready for deployment.
2025-10-25 19:18:37 +02:00

49 lines
1.1 KiB
CSS

/**
* Stat List Component
*
* List of statistics with labels and values for dashboard cards.
*/
@layer admin-components {
.admin-stat-list {
display: flex;
flex-direction: column;
gap: var(--admin-spacing-md);
}
.admin-stat-list__item {
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--admin-spacing-sm);
padding-bottom: var(--admin-spacing-sm);
border-bottom: 1px solid var(--admin-border-light);
}
.admin-stat-list__item:last-child {
border-bottom: none;
padding-bottom: 0;
}
.admin-stat-list__label {
font-size: var(--admin-font-size-sm);
color: var(--admin-content-text);
opacity: 0.8;
}
.admin-stat-list__value {
font-size: var(--admin-font-size-sm);
font-weight: var(--admin-font-weight-semibold);
color: var(--admin-content-text);
}
/* Compact variant */
.admin-stat-list--compact {
gap: var(--admin-spacing-sm);
}
.admin-stat-list--compact .admin-stat-list__item {
padding-bottom: var(--admin-spacing-xs);
}
}