anim
This commit is contained in:
parent
07d26b9f98
commit
85958d3f8f
|
|
@ -1,3 +1,15 @@
|
||||||
|
@keyframes in {
|
||||||
|
from {
|
||||||
|
top: 0px;
|
||||||
|
animation-timing-function: linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
to {
|
||||||
|
background-position-x: 40px;
|
||||||
|
animation-timing-function: linear;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
html {
|
html {
|
||||||
background: none;
|
background: none;
|
||||||
}
|
}
|
||||||
|
|
@ -50,6 +62,9 @@ body {
|
||||||
|
|
||||||
#alert, #success {
|
#alert, #success {
|
||||||
top: 40px;
|
top: 40px;
|
||||||
|
animation: in;
|
||||||
|
animation-duration: 50ms;
|
||||||
|
animation-iteration-count: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
#alert {
|
#alert {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue