| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- .panel-container {
- position: absolute;
- top: 20px;
- left: 0;
- right: 0;
- width: 100%;
- align-items: center;
- padding: 20px;
- pointer-events: none;
- }
- .panel-title {
- font-size: 28px;
- color: #ffffff;
- -unity-font-style: bold;
- margin-bottom: 15px;
- }
- .stats-content {
- flex-direction: row;
- gap: 40px;
- justify-content: center;
- align-items: center;
- background-color: rgba(30, 30, 30, 0.85);
- padding: 15px 30px;
- border-left-width: 4px;
- border-left-color: #4a9eff;
- border-top-width: 1px;
- border-top-color: rgba(255, 255, 255, 0.1);
- border-right-width: 1px;
- border-right-color: rgba(0, 0, 0, 0.3);
- border-bottom-width: 1px;
- border-bottom-color: rgba(0, 0, 0, 0.3);
- }
- .stat-row {
- flex-direction: row;
- gap: 12px;
- align-items: center;
- }
- .stat-label {
- font-size: 16px;
- color: #b0b0b0;
- -unity-font-style: bold;
- min-width: 100px;
- }
- .stat-value {
- font-size: 24px;
- color: #4a9eff;
- -unity-font-style: bold;
- min-width: 60px;
- }
- .stat-value-success {
- font-size: 24px;
- color: #2ecc71;
- -unity-font-style: bold;
- min-width: 60px;
- }
- .stat-value-danger {
- font-size: 24px;
- color: #e74c3c;
- -unity-font-style: bold;
- min-width: 60px;
- }
|