Spaces:
Running
Running
File size: 1,125 Bytes
0c67b3e 80cb407 0c67b3e b243a3c 80cb407 0c67b3e 80cb407 0c67b3e 80cb407 0c67b3e 80cb407 0c67b3e 80cb407 0c67b3e 80cb407 0c67b3e b243a3c 80cb407 |
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 |
/* Custom Container Styles */
.container {
max-width: 90vw;
margin-top: 5rem;
margin-bottom: 3rem;
}
@media (min-width: 1280px) {
.container {
max-width: 80vw;
}
}
/* Audio Control Customization */
audio::-webkit-media-controls-panel {
background-color: white;
}
/* Custom Animation */
@keyframes spin {
to {
transform: rotate(360deg);
}
}
.animate-spin {
animation: spin 1s linear infinite;
}
/* Additional Custom Utilities */
.min-h-screen {
min-height: 90vh;
}
/* Responsive Text Sizes */
@media (min-width: 640px) {
.sm\:text-2xl {
font-size: 1.5rem;
line-height: 2rem;
}
.sm\:text-7xl {
font-size: 4.5rem;
line-height: 1;
}
}
.recording-active {
background-color: #dc2626 !important;
/* Tailwind's red-600 */
color: white !important;
animation: pulse 1s infinite;
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
}
70% {
box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
}
} |