@tailwind base; @tailwind components; @tailwind utilities; .underline-navigation, .underline-primary-thick { background-image: linear-gradient(to bottom, #00c65e, #00c65e); background-position: 0 1.1rem; background-repeat: repeat-x; background-size: 2px 2px; } @keyframes bg-primary-dashed-animation { 0% { background-position-x: 0; } 100% { background-position-x: 15px; } } .bg-primary-dashed { background: repeating-linear-gradient(to right, #00c65e, #00c65e 10px, transparent 10px, transparent 15px); background-size: 15px 15px; } .bg-primary-dashed.move { animation: bg-primary-dashed-animation 0.3s infinite linear forwards; } .bg-error-dashed { background: repeating-linear-gradient(to right, #ed5454, #ed5454 10px, transparent 10px, transparent 15px); } .tip { width: 0; height: 0; border-style: solid; border-width: 7px 0 7px 6px; border-color: transparent transparent transparent #000000; } @layer base { h1 { @apply font-semibold text-3xl desktop:text-6xl desktop:leading-16; } }