mirror of
https://github.com/withastro/astro.git
synced 2024-12-30 22:03:56 -05:00
44 lines
487 B
CSS
44 lines
487 B
CSS
@keyframes astroFadeInOut {
|
|
from {
|
|
opacity: 1;
|
|
}
|
|
to {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes astroFadeIn {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes astroFadeOut {
|
|
to {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes astroSlideFromRight {
|
|
from {
|
|
transform: translateX(100%);
|
|
}
|
|
}
|
|
|
|
@keyframes astroSlideFromLeft {
|
|
from {
|
|
transform: translateX(-100%);
|
|
}
|
|
}
|
|
|
|
@keyframes astroSlideToRight {
|
|
to {
|
|
transform: translateX(100%);
|
|
}
|
|
}
|
|
|
|
@keyframes astroSlideToLeft {
|
|
to {
|
|
transform: translateX(-100%);
|
|
}
|
|
}
|