Spaces:
Sleeping
Sleeping
File size: 1,591 Bytes
3568151 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
.game-controls {
display: flex;
flex-direction: column;
gap: 20px;
}
.game-status {
font-size: 20px;
font-weight: bold;
color: #ffffff;
text-align: center;
min-height: 30px;
display: flex;
align-items: center;
justify-content: center;
}
.control-buttons {
display: flex;
flex-direction: column;
gap: 15px;
}
.main-button {
background-color: #646464;
}
.color-button {
background-color: #646464;
}
.audio-button {
background-color: #646464;
}
.volume-controls {
margin-top: 20px;
padding: 20px;
background-color: rgba(255, 255, 255, 0.05);
border-radius: 8px;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.volume-controls-title {
margin: 0 0 16px 0;
font-size: 16px;
font-weight: 600;
color: #ffffff;
text-align: center;
}
.model-selector {
display: flex;
flex-direction: column;
gap: 8px;
padding: 12px;
background-color: rgba(255, 255, 255, 0.05);
border-radius: 8px;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.model-selector label {
font-size: 14px;
font-weight: 600;
color: #ffffff;
}
.model-dropdown {
padding: 8px 12px;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 6px;
background-color: rgba(255, 255, 255, 0.1);
color: #ffffff;
font-size: 14px;
cursor: pointer;
transition: all 0.2s ease;
}
.model-dropdown:hover:not(:disabled) {
background-color: rgba(255, 255, 255, 0.15);
border-color: rgba(255, 255, 255, 0.3);
}
.model-dropdown:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.model-dropdown option {
background-color: #2a2a2a;
color: #ffffff;
} |