Sha256: d9cc56552218284aaa26a4835285acf549d2ccc13316f2b01da03dcd2425e7c8

Contents?: true

Size: 1014 Bytes

Versions: 7

Compression:

Stored size: 1014 Bytes

Contents

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

Version data entries

7 entries across 7 versions & 1 rubygems

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