Spaces:
Build error
Build error
File size: 516 Bytes
b28041c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
body {
@apply bg-brand-dark text-slate-100 antialiased;
}
}
.glass {
background: rgba(15, 23, 42, 0.7);
backdrop-filter: blur(14px);
border: 1px solid rgba(255, 255, 255, 0.08);
}
.scanner-line {
height: 2px;
background: linear-gradient(90deg, transparent, #3b82f6, transparent);
animation: scan 1.5s linear infinite;
}
@keyframes scan {
from { transform: translateY(-100%); }
to { transform: translateY(100%); }
}
|