﻿/******************************************************************************

	nodomain.net digital animations
	©2018, Josh Moyer <JMoyer@nodomain.net>. All rights reserved.

 ******************************************************************************/

#content-navigation {
    animation-duration: .5s;
}

#content-main {
    animation-duration: .5s;
}

#content-settings {
    animation-duration: .5s;
}

#chevron {
    animation-duration: .5s;
    transform-origin: .25em center;
    display: inline-block;
}

#gear-large {
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-name: spinLargeGear;
    animation-timing-function: linear;
    transform-origin: 37% 63%;
}

#gear-small {
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-name: spinSmallGear;
    animation-timing-function: linear;
    transform-origin: 81% 18.5%;
}

@keyframes openChevron {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(-180deg);
    }
}

@keyframes closeChevron {
    from {
        transform: rotate(-180deg);
    }

    to {
        transform: rotate(0);
    }
}

@keyframes makeOpaque {
    from {
        opacity: 0.0;
    }
    to {
        opacity: 1.0;
    }
}

@keyframes makeTransparent {
    from {
        opacity:1.0;
    }
    to {
        opacity:0.0;
    }
}

@keyframes moveIntoView {
    from {
        opacity: 0;
        top: 100%;
    }

    to {
        opacity: 1.0;
        top: 0;
    }
}

@keyframes moveOutOfView {
    from {
        opacity: 1.0;
        top: 0;
    }

    to {
        opacity: 0;
        top: -100%;
    }
}

@keyframes navigationSlideUp {
    from {
        top: 0%;
        bottom: 0%;
    }

    to {
        top: -100%;
        bottom: 100%;
    }
}

@keyframes navigationSlideDown {
    from {
        bottom: 100%;
        top: -100%;
    }

    to {
        bottom: 0%;
        top: 0%;
    }
}

@keyframes pageSlideUp {
    from {
        top: 100%;
    }

    to {
        top: 0%;
    }
}

@keyframes pageSlideDown {
    from {
        top: 0%;
    }

    to {
        top: 100%;
    }
}

@keyframes spinLargeGear {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spinSmallGear {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(-360deg);
    }
}


