sreevidya16's picture
Upload 10 files
862b14b verified
raw
history blame contribute delete
459 Bytes
@tailwind base;
@tailwind components;
@tailwind utilities;
@keyframes typing {
from {
width: 0;
}
to {
width: 100%;
}
}
.markdown > * {
all: revert;
}
.typing {
width: 100%;
white-space: nowrap;
overflow: hidden;
border-right: 0.15em solid rgb(255, 255, 255);
animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}
@keyframes blink-caret {
from,
to {
border-color: transparent;
}
50% {
border-color: orange;
}
}