File size: 1,017 Bytes
fe29394 2de496c fe29394 2de496c fe29394 2de496c fe29394 2de496c fe29394 2de496c fe29394 2de496c fe29394 | 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 | /* Custom styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
}
#visual-preview {
background-size: cover;
background-position: center;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
background: #4B5563;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #6B7280;
}
/* Pulse animation */
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
.animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
/* Audio waveform styles */
#waveform {
background: rgba(255, 255, 255, 0.05);
}
wave {
filter: drop-shadow(0 0 2px rgba(128, 0, 255, 0.5));
}
/* Visualizer canvas styles */
#visualizer {
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
} |