/* spa-animations.css - Pure Crossfade Version */

/* Prevent scrollbar during swipe/fade */
html.is-animating {
    overflow: hidden !important;
}

/* The actual visual effect on the page body */
body {
    transition: opacity 0.3s ease-in-out;
}

/* Fade out */
html.is-animating.is-leaving body {
    opacity: 0;
}

/* Fade in new page */
html.is-animating.is-rendering body {
    opacity: 0;
}
