Uname: Linux dedi-15171674.espacofacial.com.br 5.14.0-687.36.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 7 05:40:49 EDT 2026 x86_64
Software: Apache
PHP version: 8.2.33 [ PHP INFO ] PHP os: Linux
Server Ip: 172.67.154.186
Your Ip: 216.73.216.57
User: espa7358 (1004) | Group: espa7358 (1003)
Safe Mode: OFF
Disable Function:
NONE

name : _animations.scss
// Animations

// slide-fade
.slide-fade-enter-active {
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.slide-fade-leave-active {
  transition: all .2s cubic-bezier(.4, 0, .2, 1);
}

.slide-fade-enter, .slide-fade-leave-to {
  opacity: 0;
  transform: translateY(-10px);
}

// Infobar
.infobar-enter-active {
  animation: slideOutRight .2s reverse;
}

.infobar-leave-active {
  animation: slideOutRight .2s;
}

html[dir=rtl] .infobar-enter-active {
  animation: slideOutLeft .2s reverse;
}

html[dir=rtl] .infobar-leave-active {
  animation: slideOutLeft .2s;
}

// Slide out right animation
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    transform: translateX(0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

// Bounce in animation
.fade-in-enter-active {
  animation: fadeIn .2s;
}

.fade-in-leave-active {
  animation: fadeIn .2s reverse;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
© 2026 UnknownSec