pulse-guard / frontend /src /index.css
hemalathashetty
Deploy PulseGuard X self-healing control plane to Hugging Face Spaces
3cb0e2c
Raw
History Blame Contribute Delete
1.79 kB
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
margin: 0;
background-color: #06090D;
color: #F0F6FC;
font-family: 'Inter', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Glassmorphism Styles */
.glass-panel {
background: rgba(14, 18, 27, 0.7);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(253, 253, 253, 0.05);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}
.glass-panel-glow-green {
background: rgba(14, 18, 27, 0.7);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(16, 185, 129, 0.15);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), 0 0 15px rgba(16, 185, 129, 0.08);
}
.glass-panel-glow-blue {
background: rgba(14, 18, 27, 0.7);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(59, 130, 246, 0.15);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), 0 0 15px rgba(59, 130, 246, 0.08);
}
.glass-panel-glow-red {
background: rgba(14, 18, 27, 0.7);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(239, 68, 68, 0.15);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), 0 0 15px rgba(239, 68, 68, 0.08);
}
/* Custom Scrollbars */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: #06090D;
}
::-webkit-scrollbar-thumb {
background: #21262D;
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: #30363D;
}
/* Custom animations */
@keyframes pulseGlow {
0%, 100% {
opacity: 0.6;
transform: scale(1);
}
50% {
opacity: 0.9;
transform: scale(1.02);
}
}
.animate-pulse-glow {
animation: pulseGlow 3s infinite ease-in-out;
}