Update 2018.css

This commit is contained in:
Thomas G 2022-07-28 18:33:21 +10:00
parent 85958d3f8f
commit 5833cac7a7
1 changed files with 15 additions and 5 deletions

View File

@ -1,13 +1,23 @@
@keyframes in {
from {
@keyframes alertanim {
0% {
top: 0px;
animation-timing-function: linear;
}
to {
10% {
background-position-x: 40px;
animation-timing-function: linear;
}
90% {
background-position-x: 40px;
animation-timing-function: linear;
}
100% {
top: 0px;
animation-timing-function: linear;
}
}
html {
@ -62,8 +72,8 @@ body {
#alert, #success {
top: 40px;
animation: in;
animation-duration: 50ms;
animation: alertanim;
animation-duration: 5s;
animation-iteration-count: 1;
}