Sha256: 7936aa2861df4fd1977ecd7168fce7632f2894e71dc7447f10e092caae90c7c7

Contents?: true

Size: 738 Bytes

Versions: 147

Compression:

Stored size: 738 Bytes

Contents

[data-turn-exit],
[data-turn-enter] {
  animation-timing-function: cubic-bezier(0.65, 0.05, 0.35, 1);
  animation-fill-mode: forwards;
}

html.turn-exit [data-turn-exit] {
  animation-name: fade-out-up;
  animation-duration: .3s;
}

html.turn-enter [data-turn-enter] {
  animation-name: fade-in-up;
  animation-duration: .6s;
}

html.turn-before-exit [data-turn-exit],
html.turn-exit [data-turn-exit] {
  will-change: transform, opacity;
}

@keyframes fade-out-up {
  0% {
   opacity: 1;
   transform: translateZ(0)
  }

  100% {
   opacity: 0;
   transform: translate3d(0, -2rem, 0)
  }
}

@keyframes fade-in-up {
  0% {
   opacity: 0;
   transform: translate3d(0, 2rem, 0)
  }

  100% {
   opacity: 1;
   transform: translateZ(0)
  }
}

Version data entries

147 entries across 147 versions & 1 rubygems

Version Path
bullet_train-themes-light-1.2.8 app/assets/stylesheets/light/turn.css
bullet_train-themes-light-1.2.7 app/assets/stylesheets/light/turn.css
bullet_train-themes-light-1.2.6 app/assets/stylesheets/light/turn.css
bullet_train-themes-light-1.2.5 app/assets/stylesheets/light/turn.css
bullet_train-themes-light-1.2.4 app/assets/stylesheets/light/turn.css
bullet_train-themes-light-1.2.3 app/assets/stylesheets/light/turn.css
bullet_train-themes-light-1.2.2 app/assets/stylesheets/light/turn.css