File size: 1,641 Bytes
f84495b 66f97e1 f84495b 66f97e1 29917e8 66f97e1 29917e8 66f97e1 29917e8 8df51c2 29917e8 8df51c2 f84495b 66f97e1 f84495b 66f97e1 566ddf8 66f97e1 f84495b 66f97e1 f84495b |
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 |
/* Base styles */
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
/* Sample player styles */
.sample-player {
transition: all 0.2s ease;
cursor: pointer;
}
.sample-player:hover {
transform: scale(1.02);
}
.sample-player.playing {
box-shadow: 0 0 0 2px rgba(129, 140, 248, 0.5);
}
/* Pack card hover effects */
.pack-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pack-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}
/* Pulse animation for active buttons */
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
}
70% {
box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
}
}
.pulse {
animation: pulse 1.5s infinite;
}
/* Sound Library Styles */
.sound-card {
transition: all 0.3s ease;
}
.sound-card:hover {
transform: translateY(-5px);
}
/* Play button animation */
@keyframes pulse-wave {
0% { transform: scale(1); opacity: 1; }
70% { transform: scale(1.1); opacity: 0.7; }
100% { transform: scale(1); opacity: 1; }
}
.playing {
animation: pulse-wave 1.5s infinite;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: rgba(17, 24, 39, 0.5);
}
::-webkit-scrollbar-thumb {
background: rgba(79, 70, 229, 0.7);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(99, 102, 241, 0.9);
} |