Sha256: 2c852b9778d16d87ef159c8ebd36f1aec75ece0c3f9153d9f6758683566acca5

Contents?: true

Size: 767 Bytes

Versions: 1

Compression:

Stored size: 767 Bytes

Contents

@import "settings.animations";

@mixin tree-keyframes {
  @keyframes tree {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }
}

@mixin tree {
  animation-name: tree;
  animation-duration: $animation-duration;
  animation-fill-mode: both;
  animation-timing-function: $animation-easing;
}

@mixin tree--slow {
  animation-duration: $animation-duration-slow;
}

@mixin tree--fast {
  animation-duration: $animation-duration-fast;
}

@mixin tree__item {
  transition-property: color, transform;
  transition-duration: $animation-duration;
  transition-timing-function: $animation-easing;
}

@mixin tree__item--slow {
  transition-duration: $animation-duration-slow;
}

@mixin tree__item--fast {
  transition-duration: $animation-duration-fast;
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
blaze-css-rails-0.0.1 app/assets/stylesheets/mixins/_animations.trees.scss