﻿/*
    This file is to show how CSS and other static resources (such as images) can be
    used from a library project/package.
*/
 
.section {
    overflow: auto;
    height: auto;
    max-height: 100%;
    opacity:1;
    transition-property: opacity, max-height;
    transition-duration: 1.5s, 2s;
    transition-delay: 0.2s, 0s;
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
}

    .section.collapsed {
        overflow: auto;
        height: 0;
        max-height: 0;
        opacity: 0;
        transition-property: opacity, max-height;
        transition-duration: 0.5s, 0.5s;
        transition-delay: 0.02s, 0s;
        transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
    }

