Sha256: d6ed47a30dfe68a0b86f7cf97c9aa11eba31c67bff92c55189f7441d0b53ea46

Contents?: true

Size: 1.11 KB

Versions: 7

Compression:

Stored size: 1.11 KB

Contents

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
railsstrap-4.0.0.beta3 vendor/assets/stylesheets/animate/zoom/zoomOutDown.scss
railsstrap-4.0.0.beta2 vendor/assets/stylesheets/animate/zoom/zoomOutDown.scss
railsstrap-3.3.4 vendor/assets/stylesheets/animate/zoom/zoomOutDown.less
railsstrap-3.3.2 vendor/assets/stylesheets/animate/zoom/zoomOutDown.less
railsstrap-3.3.1 vendor/assets/stylesheets/animate/zoom/zoomOutDown.less
railsstrap-3.3.0 vendor/assets/stylesheets/animate/zoom/zoomOutDown.less
railsstrap-3.2.0.3 vendor/assets/stylesheets/animate/zoom/zoomOutDown.less