„css/skeleton-auto.css“ ändern

This commit is contained in:
Yann Mölle 2023-05-29 14:24:56 +02:00
parent 7624b381dc
commit 434a6f00d6

View File

@ -285,16 +285,23 @@ hr {
.animate-zoom-7 {animation:animatezoom 1.8s}@keyframes animatezoom{from{transform:scale(0)} to{transform:scale(1)}} .animate-zoom-7 {animation:animatezoom 1.8s}@keyframes animatezoom{from{transform:scale(0)} to{transform:scale(1)}}
.typed { .typed {
overflow: hidden; width: 22ch;
animation: typing 2s steps(22), blink .5s step-end infinite alternate;
white-space: nowrap; white-space: nowrap;
width: 0; overflow: hidden;
animation: typing; border-right: 3px solid;
animation-duration: 1.5s; font-family: monospace;
animation-timing-function: steps(30, end); font-size: 2em;
animation-fill-mode: forwards;
} }
@keyframes typing { @keyframes typing {
from { width: 0 } from {
to { width: 100% } width: 0
}
}
@keyframes blink {
50% {
border-color: transparent
}
} }