This commit is contained in:
2026-01-27 21:43:42 +03:00
parent 1f18abbc33
commit 7d5769ac8b
4 changed files with 295 additions and 59 deletions

View File

@ -2071,6 +2071,34 @@ html, body {
.instructions-body .faction-n { color: #c4a574; }
.instructions-body .instructions-icon { font-size: 1.1em; vertical-align: middle; margin: 0 0.15em; opacity: 0.9; }
/* Rooms list (Лобби) */
.rooms-list {
margin-top: 1rem;
}
.room-item {
transition: all 0.2s;
}
.room-item:hover {
border-color: rgba(212,168,75,0.4) !important;
background: rgba(0,0,0,0.4) !important;
}
.room-item button:disabled {
opacity: 0.5;
cursor: not-allowed;
}
#spectator-badge {
animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
/* Attack mode bar */
.attack-mode {
position: fixed;