| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- .character-entry {
- background-color: rgb(230, 235, 250);
- border-radius: 8px;
- margin-bottom: 10px;
- padding: 12px;
- flex-direction: row;
- align-items: center;
- min-width: 320px;
- }
- .character-name-field {
- min-width: 110px;
- margin-right: 14px;
- 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;
- }
- .weapon-dropdown {
- min-width: 100px;
- margin-right: 14px;
- 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;
- }
- .remove-button {
- background-color: rgb(220, 80, 80);
- color: white;
- font-size: 16px;
- -unity-font-style: bold;
- border-radius: 8px;
- min-width: 80px;
- height: 32px;
- transition-property: background-color;
- transition-duration: 0.15s;
- }
- .remove-button:hover {
- background-color: rgb(240, 100, 100);
- }
- .remove-button:disabled {
- background-color: rgb(180, 180, 180);
- color: rgb(220, 220, 220);
- }
|