mirror of
https://github.com/kaboomserver/website.git
synced 2024-12-22 07:45:00 +00:00
Add missing animation
This commit is contained in:
parent
c130fe6bc4
commit
bff17a57ee
1 changed files with 16 additions and 0 deletions
|
@ -44,6 +44,22 @@ $lightcolor: #555;
|
|||
}
|
||||
}
|
||||
|
||||
@keyframes right-in-delayed {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
30% {
|
||||
opacity: 0;
|
||||
transform: translateX(1.250em);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes top-in {
|
||||
from {
|
||||
opacity: 0;
|
||||
|
|
Loading…
Reference in a new issue