| Server IP : 213.186.33.4 / Your IP : 216.73.216.222 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www2/wp-content/themes/thevoux-wp/assets/sass/ |
Upload File : |
$transition2: .45s 1 $transition;
.animation {
opacity: 1;
@include translate3d(0,0,0);
@include perspective(1000);
will-change: opacity;
@include min-break($break-small) {
opacity: 0;
}
}
.animate {
will-change: opacity, transform;
}
.fade-in.animate {
@include animation(fade-in $transition2);
@include max-break($break-small) {
@include animation(none);
}
}
.right-to-left.animate {
@include animation(right-to-left $transition2);
@include max-break($break-small) {
@include animation(none);
}
}
.left-to-right.animate {
@include animation(left-to-right $transition2);
@include max-break($break-small) {
@include animation(none);
}
}
.bottom-to-top.animate {
@include animation(bottom-to-top $transition2);
@include max-break($break-small) {
@include animation(none);
}
}
.top-to-bottom.animate {
@include animation(top-to-bottom $transition2);
@include max-break($break-small) {
@include animation(none);
}
}
.scale.animate {
@include animation(scale $transition2);
@include max-break($break-small) {
@include animation(none);
}
}
.swingIn.animate {
@include transform-origin(50%, 0);
@include animation(swingInX $transition2);
@include max-break($break-small) {
@include animation(none);
}
}
.animate {
@include opacity(1);
}
.spinY {
@include animation(spinY 0.5s linear);
@include animation-fill-mode(both);
@include animation-timing-function(cubic-bezier(0.75, 0, 0.175, 1));
}
@include keyframes(fade-in) {
0% {@include opacity(0);}
100% {@include opacity(1);}
}
@include keyframes(right-to-left) {
0% {@include opacity(0); @include translateX(50px);}
100% {@include opacity(1); @include translateX(0px);}
}
@include keyframes(left-to-right) {
0% {@include opacity(0); @include translateX(-50px);}
100% {@include opacity(1); @include translateX(0px);}
}
@include keyframes(bottom-to-top) {
0% {@include opacity(0); @include translateY(50px);}
100% {@include opacity(1); @include translateY(0px);}
}
@include keyframes(top-to-bottom) {
0% {@include opacity(0); @include translateY(-50px);}
100% {@include opacity(1); @include translateY(0px);}
}
@include keyframes(scale) {
0% {@include opacity(0); @include scale(0);}
100% {@include opacity(1); @include scale(1);}
}