BattleSetupMenu.uss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. VisualElement {}
  2. .setup-card {
  3. background-color: rgb(245, 248, 255);
  4. border-radius: 12px;
  5. border-width: 1px;
  6. border-color: rgb(200,210,230);
  7. border-top-width: 1px;
  8. border-bottom-width: 1px;
  9. border-left-width: 1px;
  10. border-right-width: 1px;
  11. padding: 18px;
  12. margin: 16px;
  13. min-width: 320px;
  14. }
  15. .character-entry {
  16. background-color: rgb(230, 235, 250);
  17. border-radius: 8px;
  18. margin-bottom: 10px;
  19. padding: 10px;
  20. flex-direction: row;
  21. align-items: center;
  22. }
  23. .start-battle-button {
  24. background-color: rgb(80, 180, 90);
  25. color: white;
  26. font-size: 20px;
  27. -unity-font-style: bold; /* Use this for bold text */
  28. border-radius: 10px;
  29. min-width: 180px;
  30. height: 50px;
  31. margin-top: 20px;
  32. transition-property: background-color;
  33. transition-duration: 0.15s;
  34. }
  35. .start-battle-button:hover {
  36. background-color: rgb(100, 200, 110);
  37. }
  38. .start-battle-button:disabled {
  39. background-color: rgb(160, 200, 160);
  40. color: rgb(220, 220, 220);
  41. }
  42. .character-name-field, .weapon-dropdown {
  43. min-width: 120px;
  44. margin-right: 12px;
  45. font-size: 16px;
  46. border-radius: 6px;
  47. background-color: rgb(255,255,255);
  48. border-top-width: 1px;
  49. border-bottom-width: 1px;
  50. border-left-width: 1px;
  51. border-right-width: 1px;
  52. border-color: rgb(200,210,230);
  53. padding: 6px;
  54. }