ThoraxNet / frontend /src /styles /globals.css
Sowaiba01's picture
Upload frontend/src/styles/globals.css with huggingface_hub
bf6c706 verified
Raw
History Blame Contribute Delete
663 Bytes
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--bg-primary: #0f172a;
--bg-card: #1e293b;
--accent: #3b82f6;
--accent-hover: #2563eb;
--text-primary: #f1f5f9;
--text-muted: #94a3b8;
--success: #22c55e;
--warning: #f59e0b;
--danger: #ef4444;
}
body {
background-color: var(--bg-primary);
color: var(--text-primary);
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
.glass-card {
background: rgba(30, 41, 59, 0.8);
backdrop-filter: blur(12px);
border: 1px solid rgba(99, 102, 241, 0.15);
border-radius: 16px;
}
.probability-bar {
transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}