This commit is contained in:
parent
7a42e6ffce
commit
cba5fc0410
|
@ -2933,3 +2933,29 @@ button#togglebg {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@keyframes fadeIn {
|
||||||
|
0% {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes fadeOut {
|
||||||
|
0% {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.fader-in {
|
||||||
|
animation: fadeIn .8s steps(100) forwards;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fader-out {
|
||||||
|
animation: fadeOut .8s steps(100) forwards
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user