Spaces:
Running
Running
File size: 486 Bytes
0853b0a 9269625 0853b0a 9269625 0853b0a 9269625 0853b0a 9269625 0853b0a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | /* Custom styles that can't be done with Tailwind */
#pdf-input:hover + label {
border-color: #818cf8;
}
#process-btn:disabled {
background-color: #cbd5e1;
cursor: not-allowed;
}
#download-btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
/* Animation for processing */
@keyframes spin {
to { transform: rotate(360deg); }
}
.animate-spin {
animation: spin 1s linear infinite;
} |