⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.45
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
openfire
/
public
/
backend
/
scss
/
utilities
/
View File Name :
_animation.scss
// Animation Utilities // Grow In Animation @keyframes growIn { 0% { transform: scale(0.9); opacity: 0; } 100% { transform: scale(1); opacity: 1; } } .animated--grow-in { animation-name: growIn; animation-duration: 200ms; animation-timing-function: transform cubic-bezier(.18,1.25,.4,1), opacity cubic-bezier(0,1,.4,1); } // Fade In Animation @keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } .animated--fade-in { animation-name: fadeIn; animation-duration: 200ms; animation-timing-function: opacity cubic-bezier(0,1,.4,1); }