File size: 793 Bytes
4ddfd3d 501c75e 4ddfd3d 501c75e 4ddfd3d 501c75e 4ddfd3d 501c75e 4ddfd3d 501c75e 4ddfd3d |
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 |
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: white }
}
.typing-effect {
overflow: hidden;
white-space: nowrap;
border-right: 2px solid;
animation:
typing 3.5s steps(40, end),
blink-caret .75s step-end infinite;
}
.source-badge {
transition: all 0.3s ease;
}
.source-badge:hover {
transform: translateY(-2px);
box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
}
.search-process {
background: linear-gradient(90deg, #333333, #555555, #333333);
background-size: 200% 100%;
animation: shimmer 1.5s infinite linear;
}
@keyframes shimmer {
0% { background-position: 200% 0; }
100% { background-position: -200% 0; }
} |