Spaces:
Configuration error
Configuration error
Create assets/style.css
Browse files- assets/style.css +18 -0
assets/style.css
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
scroll-behavior: smooth;
|
| 3 |
+
}
|
| 4 |
+
|
| 5 |
+
.glass {
|
| 6 |
+
backdrop-filter: blur(12px);
|
| 7 |
+
-webkit-backdrop-filter: blur(12px);
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
+
.code-block {
|
| 11 |
+
font-family: "JetBrains Mono", monospace;
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
+
.gradient-text {
|
| 15 |
+
background: linear-gradient(to right, #22d3ee, #8b5cf6);
|
| 16 |
+
-webkit-background-clip: text;
|
| 17 |
+
-webkit-text-fill-color: transparent;
|
| 18 |
+
}
|