Spaces:
Running
Running
File size: 818 Bytes
f58a769 2a62985 f58a769 2a62985 f58a769 2a62985 f58a769 2a62985 f58a769 2a62985 f58a769 2a62985 f58a769 | 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 | /* Custom styles */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
overflow-x: hidden;
}
/* Game canvas styling */
canvas {
display: block;
background: radial-gradient(circle, rgba(56, 43, 107, 0.8) 0%, rgba(25, 18, 56, 0.9) 100%);
}
/* Responsive canvas */
@media (max-width: 768px) {
canvas {
height: 300px !important;
}
}
/* Button animations */
button {
transition: all 0.3s ease;
}
button:active {
transform: scale(0.95);
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
background: rgba(156, 163, 175, 0.5);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(156, 163, 175, 0.7);
} |