sonicsculptor-ai / style.css
tm409281's picture
add post processing comparison of audio files to show changes
2770657 verified
raw
history blame contribute delete
733 Bytes
/* Base styles */
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
min-height: 100vh;
display: flex;
flex-direction: column;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
background: #4b0082;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #5a1a9a;
}
/* Waveform styles */
.wavesurfer-container {
border-radius: 4px;
margin-bottom: 8px;
}
/* Animation for processing state and comparison */
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
.processing {
animation: pulse 1.5s infinite;
}