TeamOverview.uss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /* Team Overview Panel Styling */
  2. .team-overview-panel {
  3. position: absolute;
  4. right: 10px;
  5. top: 10px;
  6. width: 250px;
  7. background-color: rgba(30, 30, 30, 0.9);
  8. border-width: 2px;
  9. border-color: rgba(100, 100, 100, 0.8);
  10. border-radius: 8px;
  11. padding: 10px;
  12. max-height: 80%;
  13. }
  14. .team-overview-header {
  15. font-size: 16px;
  16. font-weight: bold;
  17. color: rgb(255, 255, 255);
  18. text-align: center;
  19. margin-bottom: 10px;
  20. background-color: rgba(50, 50, 50, 0.8);
  21. padding: 8px;
  22. border-radius: 5px;
  23. }
  24. .team-member-card {
  25. background-color: rgba(50, 50, 50, 0.8);
  26. border-width: 1px;
  27. border-color: rgba(150, 150, 150, 0.5);
  28. border-radius: 5px;
  29. margin-bottom: 8px;
  30. padding: 8px;
  31. }
  32. .member-name {
  33. font-size: 12px;
  34. font-weight: bold;
  35. color: rgb(255, 255, 255);
  36. margin-bottom: 3px;
  37. }
  38. .member-status {
  39. flex-direction: row;
  40. justify-content: space-between;
  41. align-items: center;
  42. margin-bottom: 5px;
  43. }
  44. .member-health {
  45. font-size: 10px;
  46. color: rgb(200, 255, 200);
  47. }
  48. .member-stats {
  49. flex-direction: row;
  50. flex-wrap: wrap;
  51. justify-content: space-between;
  52. }
  53. .stats-text {
  54. font-size: 9px;
  55. color: rgb(200, 200, 200);
  56. white-space: normal;
  57. }
  58. .team-summary {
  59. margin-top: 10px;
  60. padding-top: 8px;
  61. border-top-width: 1px;
  62. border-top-color: rgba(150, 150, 150, 0.5);
  63. }
  64. .team-summary-label {
  65. font-size: 11px;
  66. color: rgb(220, 220, 220);
  67. text-align: center;
  68. margin-bottom: 8px;
  69. }
  70. .team-actions {
  71. flex-direction: row;
  72. justify-content: space-between;
  73. margin-top: 10px;
  74. }
  75. .team-action-button {
  76. background-color: rgba(70, 120, 180, 0.8);
  77. border-width: 1px;
  78. border-color: rgba(100, 150, 200, 0.8);
  79. border-radius: 4px;
  80. color: rgb(255, 255, 255);
  81. font-size: 10px;
  82. padding: 4px 8px;
  83. flex-grow: 1;
  84. margin-left: 2px;
  85. margin-right: 2px;
  86. }
  87. .team-action-button:hover {
  88. background-color: rgba(90, 140, 200, 0.9);
  89. }
  90. .team-action-button:active {
  91. background-color: rgba(50, 100, 160, 0.9);
  92. }
  93. /* Scrollable team members list */
  94. .team-members-scroll {
  95. max-height: 300px;
  96. overflow: hidden;
  97. }