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