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