CharacterEntryPrefab.uss 1.3 KB

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