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