@-moz-document domain("int.alkemics.com") { :root { --stripe-size: 100px; --color1: hsl(195, 70%, 45%); --color2: hsl(195, 70%, 50%); --duration: 30s; } .Navbar::before { z-index: -10; content: ""; position: absolute; top: 0; left: 0; width: calc(100% + var(--stripe-size)); height: 100%; background: repeating-linear-gradient(-45deg, var(--color2) 25%, var(--color1) 75%); background-size: var(--stripe-size) var(--stripe-size); animation: stripeTransform var(--duration) linear infinite; } @keyframes stripeTransform { from { background-position: 0 0; } to { background-position: var(--stripe-size) 0; } } }