Sha256: f3f2b470cec90c9123b9affb30c8732e1c426e2759a287ca2ee64b8f028cb34a

Contents?: true

Size: 525 Bytes

Versions: 5

Compression:

Stored size: 525 Bytes

Contents

// Keyframes for Animations

// Fade-In animation
@mixin fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade-in { @include fade-in; }
   @-moz-keyframes fade-in { @include fade-in; }
        @keyframes fade-in { @include fade-in; }


// Fade-out animation
@mixin fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fade-out { @include fade-out; }
   @-moz-keyframes fade-out { @include fade-out; }
        @keyframes fade-out { @include fade-out; }

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
wiskey-0.0.2 app/assets/stylesheets/addons/_animation-keyframes.scss
wiskey-0.0.1 app/assets/stylesheets/addons/_animation-keyframes.scss
bourbon-0.1.5 app/assets/stylesheets/addons/_animation-keyframes.scss
bourbon-0.1.4 app/assets/stylesheets/addons/_animation-keyframes.scss
bourbon-0.1.3 app/assets/stylesheets/addons/_animation-keyframes.css.scss