Sha256: a8cf9ac01c2097ed6183c02dc6eab2ceabe0cc3e265504c063f116c66abcd881

Contents?: true

Size: 1.88 KB

Versions: 2

Compression:

Stored size: 1.88 KB

Contents

/*

Settings

These are the default settings for all animations and transitions within the framework.

By default all animations but fadeIn and fadeOut are disabled, use the  ```$animations``` list to enable/disable them.

    $animations:                      fadeIn, fadeOut

If true it generate a placeholder class for every animation with the default settings to use as an ````@extend```.

    $animations-classes:              true

Base settings for animations

    $animations-duration:             .15s      # Duration
    $animations-delay:                0s        # Start delay
    $animations-function:             ease-out  # Easing
    $animations-mode:                 both      # animation-fill-mode

For transitions you can use other settings for duration and easing, by default the use the same settings as the animations.

    $default-transition-duration:     $animations-duration
    $default-transition-function:     $animations-function

Styleguide 20.1

*/

$animations:                        fadeIn, fadeOut                                                         !default;
$animations-classes:                true                                                                    !default;

$animations-duration:               .15s                                                                    !default;
$animations-delay:                  null                                                                    !default;
$animations-function:               ease-out                                                                !default;
$animations-mode:                   both                                                                    !default;

$default-transition-duration:       $animations-duration                                                    !default;
$default-transition-function:       toBezier($animations-function)                                          !default;

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rapido-css-0.1.3 stylesheets/settings/_effects.scss
rapido-css-0.1.2 stylesheets/settings/_effects.scss