MainTeamSelectUSS.uss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. .character-slots-container {
  2. border-right-width: 3px;
  3. border-right-color: rgba(100, 120, 150, 0.8);
  4. padding: 15px;
  5. width: 30%;
  6. background-color: rgba(30, 30, 50, 0.7);
  7. border-radius: 12px 0px 0px 12px;
  8. }
  9. .slot {
  10. border-width: 2px;
  11. border-color: rgba(150, 150, 170, 0.6);
  12. background-color: rgba(40, 40, 60, 0.3);
  13. justify-content: center;
  14. align-items: center;
  15. flex-grow: 1;
  16. padding: 4px;
  17. margin: 8px;
  18. border-radius: 10px;
  19. transition-duration: 0.2s;
  20. transition-property: border-color, background-color;
  21. min-height: 180px;
  22. width: 180px;
  23. }
  24. .slot:hover {
  25. border-color: rgba(180, 180, 200, 0.8);
  26. background-color: rgba(50, 50, 70, 0.4);
  27. }
  28. .slot.selected-slot {
  29. border-width: 3px;
  30. border-color: rgb(0, 120, 215);
  31. background-color: rgba(0, 120, 215, 0.15);
  32. /* Add a subtle glow effect using multiple borders */
  33. border-left-color: rgba(0, 120, 215, 0.8);
  34. border-right-color: rgba(0, 120, 215, 0.8);
  35. border-top-color: rgba(0, 120, 215, 0.8);
  36. border-bottom-color: rgba(0, 120, 215, 0.8);
  37. }
  38. .row {
  39. flex-direction: row;
  40. flex-grow: 1;
  41. flex-shrink: 1;
  42. justify-content: space-around;
  43. align-items: stretch;
  44. margin-bottom: 10px;
  45. }
  46. .BottomButtonPanel {
  47. flex-grow: 1;
  48. flex-direction: row;
  49. max-height: 60px;
  50. min-height: 60px;
  51. align-items: center;
  52. justify-content: center;
  53. border-top-width: 3px;
  54. border-top-color: rgba(100, 120, 150, 0.8);
  55. background-color: rgba(20, 20, 40, 0.8);
  56. padding: 10px;
  57. border-radius: 0px 0px 12px 12px;
  58. }
  59. .BottomButtonPanel Button {
  60. min-width: 120px;
  61. height: 40px;
  62. margin-left: 10px;
  63. margin-right: 10px;
  64. border-radius: 8px;
  65. font-size: 14px;
  66. -unity-font-style: bold;
  67. transition-duration: 0.2s;
  68. transition-property: background-color, scale;
  69. }
  70. .BottomButtonPanel Button:hover {
  71. scale: 1.05;
  72. }
  73. .BottomButtonPanel Button:active {
  74. scale: 0.95;
  75. }
  76. .BottomButtonPanel Button:disabled {
  77. opacity: 0.5;
  78. }