Webnet/cmf-radar-scanner
0
1@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');2 3body {4 font-family: 'Inter', sans-serif;5}6 7/* Smooth scroll behavior */8html {9 scroll-behavior: smooth;10}11 12/* Custom scrollbar */13::-webkit-scrollbar {14 width: 8px;15 height: 8px;16}17 18::-webkit-scrollbar-track {19 background: #1a202c;20}21 22::-webkit-scrollbar-thumb {23 background: #4a5568;24 border-radius: 4px;25}26 27::-webkit-scrollbar-thumb:hover {28 background: #718096;29}30 31/* Animation for the scanner button */32@keyframes pulse {33 0% {34 box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);35 }36 70% {37 box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);38 }39 100% {40 box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);41 }42}43 44.scanner-active {45 animation: pulse 2s infinite;46}