Spaces:
Runtime error
Runtime error
| @import "tailwindcss"; | |
| :root { | |
| --font-inter: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; | |
| } | |
| * { box-sizing: border-box; } | |
| body { | |
| font-family: var(--font-inter), "Noto Sans Thai", sans-serif; | |
| background: #0a0a1a; | |
| color: white; | |
| } | |
| ::-webkit-scrollbar { width: 6px; height: 6px; } | |
| ::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 3px; } | |
| ::-webkit-scrollbar-thumb { background: rgba(139,92,246,0.5); border-radius: 3px; } | |
| ::-webkit-scrollbar-thumb:hover { background: rgba(139,92,246,0.8); } | |
| input[type="range"] { | |
| -webkit-appearance: none; | |
| appearance: none; | |
| height: 4px; | |
| border-radius: 2px; | |
| background: rgba(255,255,255,0.15); | |
| outline: none; | |
| } | |
| input[type="range"]::-webkit-slider-thumb { | |
| -webkit-appearance: none; | |
| width: 16px; | |
| height: 16px; | |
| border-radius: 50%; | |
| background: #8b5cf6; | |
| cursor: pointer; | |
| } | |
| select option { background: #1a1a2e; } | |