Sha256: 993d74fa0717d6269128d3ee0a570bd8bdc607565b6abbdf3baf868715c637d4

Contents?: true

Size: 707 Bytes

Versions: 1

Compression:

Stored size: 707 Bytes

Contents

@import "settings.animations";

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

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

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

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

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

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

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

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

@mixin menu--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.menus.scss