Server IP : 103.191.208.50 / Your IP : 216.73.216.53 Web Server : LiteSpeed System : Linux orion.herosite.pro 4.18.0-553.53.1.lve.el8.x86_64 #1 SMP Wed May 28 17:01:02 UTC 2025 x86_64 User : celkcksm ( 1031) PHP Version : 7.4.33 Disable Function : show_source, system, shell_exec, passthru, popen, exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/celkcksm/demoadmin.ncriptech.com/public/dist-front/scss/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
/*** ==================================================================== Marquee Section ==================================================================== ***/ .marquee-section { position: relative; background-color: var(--bg-theme-color1); padding: 15px 0; } .marquee { position: relative; --duration: 30s; --gap: 0px; display: flex; overflow: hidden; user-select: none; gap: var(--gap); .marquee-group { flex-shrink: 0; display: flex; align-items: center; justify-content: space-around; gap: var(--gap); min-width: 100%; animation: scroll var(--duration) linear infinite; } .text { font-size: 20px; line-height: 36px; color: var(--theme-color2); font-weight: 500; text-transform: uppercase; letter-spacing: .1em; margin: 0 25px; } @media (prefers-reduced-motion: reduce) { .marquee-group { animation-play-state: play; } } @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-100% - var(--gap))); } } }