@use "../core/instances" as *;

.documentationpage {
            @include keyframes(fade) {
                from { opacity: 0; }
                to { opacity: 1; }
            }

            .keyframes_example {
                @include whs(60px);
                background-color: $c5;
                animation: fade 1s infinite alternate;
            }
}
