AgentStatsPanel.uss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .panel-container {
  2. position: absolute;
  3. top: 20px;
  4. left: 0;
  5. right: 0;
  6. width: 100%;
  7. align-items: center;
  8. padding: 20px;
  9. pointer-events: none;
  10. }
  11. .panel-title {
  12. font-size: 28px;
  13. color: #ffffff;
  14. -unity-font-style: bold;
  15. margin-bottom: 15px;
  16. }
  17. .stats-content {
  18. flex-direction: row;
  19. gap: 40px;
  20. justify-content: center;
  21. align-items: center;
  22. background-color: rgba(30, 30, 30, 0.85);
  23. padding: 15px 30px;
  24. border-left-width: 4px;
  25. border-left-color: #4a9eff;
  26. border-top-width: 1px;
  27. border-top-color: rgba(255, 255, 255, 0.1);
  28. border-right-width: 1px;
  29. border-right-color: rgba(0, 0, 0, 0.3);
  30. border-bottom-width: 1px;
  31. border-bottom-color: rgba(0, 0, 0, 0.3);
  32. }
  33. .stat-row {
  34. flex-direction: row;
  35. gap: 12px;
  36. align-items: center;
  37. }
  38. .stat-label {
  39. font-size: 16px;
  40. color: #b0b0b0;
  41. -unity-font-style: bold;
  42. min-width: 100px;
  43. }
  44. .stat-value {
  45. font-size: 24px;
  46. color: #4a9eff;
  47. -unity-font-style: bold;
  48. min-width: 60px;
  49. }
  50. .stat-value-success {
  51. font-size: 24px;
  52. color: #2ecc71;
  53. -unity-font-style: bold;
  54. min-width: 60px;
  55. }
  56. .stat-value-danger {
  57. font-size: 24px;
  58. color: #e74c3c;
  59. -unity-font-style: bold;
  60. min-width: 60px;
  61. }