| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- VisualElement {}
- .setup-card {
- background-color: rgb(245, 248, 255);
- border-radius: 12px;
- border-width: 1px;
- border-color: rgb(200,210,230);
- border-top-width: 1px;
- border-bottom-width: 1px;
- border-left-width: 1px;
- border-right-width: 1px;
- padding: 18px;
- margin: 16px;
- min-width: 320px;
- }
- .character-entry {
- background-color: rgb(230, 235, 250);
- border-radius: 8px;
- margin-bottom: 10px;
- padding: 10px;
- flex-direction: row;
- align-items: center;
- }
- .start-battle-button {
- background-color: rgb(80, 180, 90);
- color: white;
- font-size: 20px;
- -unity-font-style: bold; /* Use this for bold text */
- border-radius: 10px;
- min-width: 180px;
- height: 50px;
- margin-top: 20px;
- transition-property: background-color;
- transition-duration: 0.15s;
- }
- .start-battle-button:hover {
- background-color: rgb(100, 200, 110);
- }
- .start-battle-button:disabled {
- background-color: rgb(160, 200, 160);
- color: rgb(220, 220, 220);
- }
- .character-name-field, .weapon-dropdown {
- min-width: 120px;
- margin-right: 12px;
- font-size: 16px;
- border-radius: 6px;
- background-color: rgb(255,255,255);
- border-top-width: 1px;
- border-bottom-width: 1px;
- border-left-width: 1px;
- border-right-width: 1px;
- border-color: rgb(200,210,230);
- padding: 6px;
- }
|