22 lines
193 B
CSS
22 lines
193 B
CSS
@keyframes blink {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes cursor {
|
|
to {
|
|
border-color: transparent;
|
|
}
|
|
}
|
|
|
|
@keyframes typing {
|
|
from {
|
|
width: 0%;
|
|
}
|
|
|
|
to {
|
|
width: 100%;
|
|
}
|
|
}
|