File size: 984 Bytes
3aaac41 a2275ad 3aaac41 a2275ad 3aaac41 a2275ad 3aaac41 a2275ad 3aaac41 a2275ad 3aaac41 | 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 | /* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 4px;
}
::-webkit-scrollbar-thumb {
background: #c1c1c1;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #a8a8a8;
}
/* SRT line styling */
.srt-line {
margin-bottom: 1rem;
padding-bottom: 1rem;
border-bottom: 1px dashed #e2e8f0;
}
.srt-line:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}
.line-number {
font-weight: bold;
color: #4b5563;
margin-right: 0.5rem;
}
/* Animation for file upload */
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
.animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
/* Highlight mismatched lines */
.mismatch-line {
background-color: #fef3c7;
border-left: 4px solid #f59e0b;
padding-left: 0.5rem;
margin-bottom: 0.5rem;
} |