AK-21/Graphite-Industrial-Intelligence
0
1@tailwind base;2@tailwind components;3@tailwind utilities;4 5@layer base {6 body {7 @apply bg-background text-foreground font-sans antialiased;8 background-image: url('/bg.png');9 background-size: cover;10 background-position: center;11 background-repeat: no-repeat;12 background-attachment: fixed;13 }14 h1, h2, h3, h4, h5, h6 {15 @apply font-mono font-bold text-white;16 }17}18 19@layer utilities {20 .glass-panel {21 @apply bg-panel backdrop-blur-xl border border-gray-800 shadow-2xl;22 }23 .glass-card {24 @apply bg-gray-900/50 backdrop-blur-md border border-gray-800 shadow-lg hover:border-gray-700 hover:shadow-cyan-500/10 transition-all duration-300;25 }26 .neon-text {27 text-shadow: 0 0 10px rgba(6, 182, 212, 0.5), 0 0 20px rgba(6, 182, 212, 0.3);28 }29 .animation-delay-2000 {30 animation-delay: 2s;31 }32 .animation-delay-4000 {33 animation-delay: 4s;34 }35}36 37/* Custom scrollbar for dark theme */38::-webkit-scrollbar {39 width: 8px;40 height: 8px;41}42::-webkit-scrollbar-track {43 background: rgba(17, 24, 39, 0.5); 44}45::-webkit-scrollbar-thumb {46 background: rgba(75, 85, 99, 0.8); 47 border-radius: 4px;48}49::-webkit-scrollbar-thumb:hover {50 background: rgba(107, 114, 128, 1); 51}52 