25 lines
1.4 KiB
CSS
25 lines
1.4 KiB
CSS
|
|
:root { color-scheme: dark light; }
|
||
|
|
* { box-sizing: border-box; }
|
||
|
|
body { margin: 0; font-family: ui-sans-serif, system-ui, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji"; background: linear-gradient(120deg, #1e3c72, #2a5298); min-height: 100vh; color: #111; }
|
||
|
|
|
||
|
|
.container { max-width: 1000px; margin: 0 auto; padding: 24px; }
|
||
|
|
header { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
|
||
|
|
header h1 { margin: 0; }
|
||
|
|
|
||
|
|
.controls { display: flex; gap: 12px; margin-bottom: 16px; }
|
||
|
|
.controls input { flex: 1; padding: 10px 12px; border-radius: 10px; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.9); }
|
||
|
|
.controls select { padding: 10px 12px; border-radius: 10px; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.9); }
|
||
|
|
|
||
|
|
.error { background: #ffefef; color: #900; border: 1px solid #fcc; padding: 10px 12px; border-radius: 8px; margin-bottom: 12px; }
|
||
|
|
|
||
|
|
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
|
||
|
|
.sound { padding: 18px; border-radius: 14px; border: 0; background: linear-gradient(135deg, #ff8a00, #e52e71); color: #fff; cursor: pointer; font-weight: 700; box-shadow: 0 6px 20px rgba(0,0,0,.2); letter-spacing: .2px; }
|
||
|
|
.sound:hover { filter: brightness(1.05); }
|
||
|
|
.sound:disabled { opacity: 0.6; cursor: not-allowed; }
|
||
|
|
|
||
|
|
.hint { opacity: .7; padding: 24px 0; }
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|