| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- .character-slots-container {
- border-right-width: 3px;
- border-right-color: rgba(100, 120, 150, 0.8);
- padding: 15px;
- width: 30%;
- background-color: rgba(30, 30, 50, 0.7);
- border-radius: 12px 0px 0px 12px;
- }
- .slot {
- border-width: 2px;
- border-color: rgba(150, 150, 170, 0.6);
- background-color: rgba(40, 40, 60, 0.3);
- justify-content: center;
- align-items: center;
- flex-grow: 1;
- padding: 4px;
- margin: 8px;
- border-radius: 10px;
- transition-duration: 0.2s;
- transition-property: border-color, background-color;
- min-height: 180px;
- width: 180px;
- }
- .slot:hover {
- border-color: rgba(180, 180, 200, 0.8);
- background-color: rgba(50, 50, 70, 0.4);
- }
- .slot.selected-slot {
- border-width: 3px;
- border-color: rgb(0, 120, 215);
- background-color: rgba(0, 120, 215, 0.15);
- /* Add a subtle glow effect using multiple borders */
- border-left-color: rgba(0, 120, 215, 0.8);
- border-right-color: rgba(0, 120, 215, 0.8);
- border-top-color: rgba(0, 120, 215, 0.8);
- border-bottom-color: rgba(0, 120, 215, 0.8);
- }
- .row {
- flex-direction: row;
- flex-grow: 1;
- flex-shrink: 1;
- justify-content: space-around;
- align-items: stretch;
- margin-bottom: 10px;
- }
- .BottomButtonPanel {
- flex-grow: 1;
- flex-direction: row;
- max-height: 60px;
- min-height: 60px;
- align-items: center;
- justify-content: center;
- border-top-width: 3px;
- border-top-color: rgba(100, 120, 150, 0.8);
- background-color: rgba(20, 20, 40, 0.8);
- padding: 10px;
- border-radius: 0px 0px 12px 12px;
- }
- .BottomButtonPanel Button {
- min-width: 120px;
- height: 40px;
- margin-left: 10px;
- margin-right: 10px;
- border-radius: 8px;
- font-size: 14px;
- -unity-font-style: bold;
- transition-duration: 0.2s;
- transition-property: background-color, scale;
- }
- .BottomButtonPanel Button:hover {
- scale: 1.05;
- }
- .BottomButtonPanel Button:active {
- scale: 0.95;
- }
- .BottomButtonPanel Button:disabled {
- opacity: 0.5;
- }
|