| Server IP : 104.21.84.107 / Your IP : 104.23.243.196 Web Server : Apache/2.4.63 (Ubuntu) System : Linux adminpruebas-Virtual-Machine 6.14.0-37-generic #37-Ubuntu SMP PREEMPT_DYNAMIC Fri Nov 14 22:10:32 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.4.5 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/acreditacion/media/com_media/scss/components/ |
Upload File : |
// 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;
}
}