Spaces:
Sleeping
Sleeping
Upload styles/globals.css with huggingface_hub
Browse files- styles/globals.css +19 -0
styles/globals.css
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@tailwind base;
|
| 2 |
+
@tailwind components;
|
| 3 |
+
@tailwind utilities;
|
| 4 |
+
|
| 5 |
+
@layer base {
|
| 6 |
+
body {
|
| 7 |
+
@apply bg-gray-900 text-white antialiased;
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
+
html {
|
| 11 |
+
scroll-behavior: smooth;
|
| 12 |
+
}
|
| 13 |
+
}
|
| 14 |
+
|
| 15 |
+
@layer utilities {
|
| 16 |
+
.text-gradient {
|
| 17 |
+
@apply bg-gradient-to-r from-primary-400 to-accent-500 bg-clip-text text-transparent;
|
| 18 |
+
}
|
| 19 |
+
}
|