Spaces:
Build error
Build error
Upload styles/globals.css with huggingface_hub
Browse files- styles/globals.css +39 -0
styles/globals.css
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@tailwind base;
|
| 2 |
+
@tailwind components;
|
| 3 |
+
@tailwind utilities;
|
| 4 |
+
|
| 5 |
+
body {
|
| 6 |
+
background-color: #09090b;
|
| 7 |
+
color: #ffffff;
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
+
/* Custom scrollbar for dark theme */
|
| 11 |
+
::-webkit-scrollbar {
|
| 12 |
+
width: 8px;
|
| 13 |
+
}
|
| 14 |
+
::-webkit-scrollbar-track {
|
| 15 |
+
background: #09090b;
|
| 16 |
+
}
|
| 17 |
+
::-webkit-scrollbar-thumb {
|
| 18 |
+
background: #1f1f1f;
|
| 19 |
+
border-radius: 4px;
|
| 20 |
+
}
|
| 21 |
+
::-webkit-scrollbar-thumb:hover {
|
| 22 |
+
background: #333;
|
| 23 |
+
}
|
| 24 |
+
|
| 25 |
+
.glass-panel {
|
| 26 |
+
background: rgba(20, 20, 20, 0.6);
|
| 27 |
+
border: 1px solid rgba(255, 255, 255, 0.08);
|
| 28 |
+
backdrop-filter: blur(10px);
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
.gradient-text {
|
| 32 |
+
background: linear-gradient(to right, #fff, #a5a5a5);
|
| 33 |
+
-webkit-background-clip: text;
|
| 34 |
+
-webkit-text-fill-color: transparent;
|
| 35 |
+
}
|
| 36 |
+
|
| 37 |
+
.glow-effect {
|
| 38 |
+
box-shadow: 0 0 40px -10px rgba(139, 92, 246, 0.3);
|
| 39 |
+
}
|