/*!
 * Name: animation.css
 * Description: Animation-CSS-File for the webdesign of PH-CNC-Technik.
 * PH-CNC-Technik
 * Copyright: Sven Zehnder
 * Version: 1.0
 */


/* ########### Open/Close Menu ########### */
@keyframes open-menu {
    from {
        opacity: 0;
        top: -100px;
    }
    to {
        opacity: 1;
        top: 0;
    }
}
@keyframes close-menu {
    from {
        opacity: 1;
        top: 0;
    }
    to {
        opacity: 0;
        top: -100px;
    }
}