Sha256: 7e9736fda99327ed1a38cec6eb8bc79a40be5444673d95e8e036dcff25c92c0d

Contents?: true

Size: 739 Bytes

Versions: 1

Compression:

Stored size: 739 Bytes

Contents

@import "settings.animations";

@mixin calendar-keyframes {
  @keyframes menu {
    from {
      transform: scale(0);
      opacity: 0;
    }

    to {
      transform: scale(1);
      opacity: 1;
    }
  }
}

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

@mixin calendar--top {
  transform-origin: top;
}

@mixin calendar--bottom {
  transform-origin: bottom;
}

@mixin calendar--left {
  transform-origin: left;
}

@mixin calendar--right {
  transform-origin: right;
}

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

@mixin calendar--fast {
  animation-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.calendars.scss