Spaces:
Running
Running
Upload styles/globals.css with huggingface_hub
Browse files- styles/globals.css +44 -0
styles/globals.css
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@tailwind base;
|
| 2 |
+
@tailwind components;
|
| 3 |
+
@tailwind utilities;
|
| 4 |
+
|
| 5 |
+
@layer base {
|
| 6 |
+
body {
|
| 7 |
+
@apply bg-gray-950 text-gray-100 antialiased;
|
| 8 |
+
}
|
| 9 |
+
}
|
| 10 |
+
|
| 11 |
+
@layer components {
|
| 12 |
+
.glass-card {
|
| 13 |
+
@apply bg-gray-900/60 backdrop-blur-xl border border-gray-800/50 rounded-2xl;
|
| 14 |
+
}
|
| 15 |
+
.agent-card {
|
| 16 |
+
@apply glass-card p-4 transition-all duration-300 hover:border-indigo-500/50 hover:shadow-lg hover:shadow-indigo-500/10;
|
| 17 |
+
}
|
| 18 |
+
.glow-border {
|
| 19 |
+
@apply border border-indigo-500/30 shadow-lg shadow-indigo-500/10;
|
| 20 |
+
}
|
| 21 |
+
.status-dot {
|
| 22 |
+
@apply w-2.5 h-2.5 rounded-full;
|
| 23 |
+
}
|
| 24 |
+
.workflow-line {
|
| 25 |
+
@apply absolute w-0.5 bg-gradient-to-b from-indigo-500 to-purple-500;
|
| 26 |
+
}
|
| 27 |
+
}
|
| 28 |
+
|
| 29 |
+
::-webkit-scrollbar {
|
| 30 |
+
width: 6px;
|
| 31 |
+
height: 6px;
|
| 32 |
+
}
|
| 33 |
+
|
| 34 |
+
::-webkit-scrollbar-track {
|
| 35 |
+
@apply bg-gray-900;
|
| 36 |
+
}
|
| 37 |
+
|
| 38 |
+
::-webkit-scrollbar-thumb {
|
| 39 |
+
@apply bg-gray-700 rounded-full;
|
| 40 |
+
}
|
| 41 |
+
|
| 42 |
+
::-webkit-scrollbar-thumb:hover {
|
| 43 |
+
@apply bg-gray-600;
|
| 44 |
+
}
|