File size: 1,093 Bytes
ec5f15b f5c0144 7bc796e ec5f15b f5c0144 7bc796e ec5f15b 7bc796e ec5f15b 7bc796e ec5f15b 7bc796e ec5f15b 7bc796e ec5f15b 7bc796e ec5f15b 7bc796e ec5f15b 7bc796e ec5f15b 7bc796e ec5f15b 7bc796e ec5f15b 7bc796e ec5f15b 7bc796e |
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 |
/* Custom styling for the application */
body {
min-height: 100vh;
display: flex;
flex-direction: column;
}
.container {
flex: 1;
}
/* Add a bit of spacing around the audio player */
#audioPlayerContainer {
padding: 10px 0;
}
/* Make the audio player responsive */
audio {
width: 100%;
border-radius: 0.25rem;
}
/* Fade in animation for the audio card */
@keyframes fadeIn {
0% { opacity: 0; transform: translateY(20px); }
100% { opacity: 1; transform: translateY(0); }
}
.fade-in {
animation: fadeIn 0.5s ease forwards;
}
/* Style for the text area */
#textInput {
resize: vertical;
min-height: 150px;
}
/* Little pulse effect for the loading spinner */
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
}
.spinner-border {
animation: spinner-border 0.75s linear infinite, pulse 2s ease infinite;
}
/* Responsive adjustments */
@media (max-width: 768px) {
h1.display-4 {
font-size: 2.5rem;
}
.lead {
font-size: 1.1rem;
}
}
|