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