iot-page.css 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. .iot-page .main-container {
  2. display: flex;
  3. flex: 1;
  4. min-height: 0;
  5. }
  6. .iot-page .sidebar {
  7. flex-shrink: 0;
  8. }
  9. .iot-page .content-area {
  10. flex: 1;
  11. padding: 16px 20px 24px;
  12. overflow: auto;
  13. min-width: 0;
  14. }
  15. .iot-page .stat-row {
  16. margin-bottom: 12px;
  17. }
  18. .iot-page .stat-card {
  19. text-align: center;
  20. background: var(--card);
  21. border: 1px solid var(--border);
  22. }
  23. .iot-page .stat-num {
  24. font-size: 28px;
  25. font-weight: 700;
  26. color: var(--primary);
  27. }
  28. .iot-page .stat-num.stat-success {
  29. color: #16a34a;
  30. }
  31. .iot-page .stat-num.stat-warn {
  32. color: #ea580c;
  33. }
  34. .iot-page .stat-label {
  35. font-size: 13px;
  36. color: var(--muted);
  37. margin-top: 4px;
  38. }
  39. .iot-page .iot-card {
  40. margin-top: 12px;
  41. background: var(--card);
  42. border: 1px solid var(--border);
  43. }
  44. .iot-page .card-header {
  45. display: flex;
  46. align-items: center;
  47. justify-content: space-between;
  48. }
  49. .iot-page .card-header h2 {
  50. margin: 0;
  51. font-size: 16px;
  52. }
  53. .iot-page .search-form {
  54. margin-bottom: 12px;
  55. }
  56. .iot-page .date-separator {
  57. margin: 0 8px;
  58. color: var(--muted);
  59. }