aboutsummaryrefslogtreecommitdiffstats
path: root/demo/src/less/lib/animation.less
blob: c8c05548d5e075f7ea151c7472f87c3f84093a19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// ==========================================================================
// Animations
// ==========================================================================

// Fade
@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}