Spaces:
Sleeping
Sleeping
.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; | |
} |