Sha256: e6d9b204b0d9220130ddd4933d5f66a212b3c168997855f53642c4809f3a0d42

Contents?: true

Size: 437 Bytes

Versions: 29

Compression:

Stored size: 437 Bytes

Contents

// Definitions of animation keyframes

@keyframes fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes grow-in {
    0% { transform: scale(1, 0); transform-origin: bottom center; }
    100% { transform: scale(1, 1); transform-origin: bottom center; }
}

@keyframes shrink-out {
    0% { transform: scale(1, 1); transform-origin: bottom center; }
    100% { transform: scale(1, 0); transform-origin: bottom center; }
}

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
hematite-0.0.9 _sass/_animations.scss
hematite-0.0.8 _sass/_animations.scss
hematite-0.0.7 _sass/_animations.scss
hematite-0.0.6 _sass/_animations.scss
hematite-0.0.5 _sass/_animations.scss
hematite-0.0.4 _sass/_animations.scss
hematite-0.0.3 _sass/_animations.scss
hematite-0.0.2 _sass/_animations.scss
hematite-0.0.1 _sass/_animations.scss