mam-project-templates
Version:
my personal templating projects
33 lines (26 loc) • 386 B
CSS
@keyframes overlay-slide-in-right {
0% {
width: 100%;
}
100% {
width: 0;
}
}
.overlay-slide-in-right {
right: 0;
width: 0;
animation-name: overlay-slide-in-right;
}
@keyframes overlay-slide-out-right {
0% {
width: 0;
}
100% {
width: 100%;
}
}
.overlay-slide-out-right {
right: 0;
width: 100%;
animation-name: overlay-slide-out-right;
}