Spaces:
Running
Running
Upload styles/globals.css with huggingface_hub
Browse files- styles/globals.css +58 -0
styles/globals.css
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
|
| 2 |
+
|
| 3 |
+
@tailwind base;
|
| 4 |
+
@tailwind components;
|
| 5 |
+
@tailwind utilities;
|
| 6 |
+
|
| 7 |
+
* {
|
| 8 |
+
box-sizing: border-box;
|
| 9 |
+
padding: 0;
|
| 10 |
+
margin: 0;
|
| 11 |
+
}
|
| 12 |
+
|
| 13 |
+
html,
|
| 14 |
+
body {
|
| 15 |
+
max-width: 100vw;
|
| 16 |
+
overflow-x: hidden;
|
| 17 |
+
scroll-behavior: smooth;
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
body {
|
| 21 |
+
font-family: 'Inter', system-ui, sans-serif;
|
| 22 |
+
background-color: #0a0a0a;
|
| 23 |
+
color: #ffffff;
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
a {
|
| 27 |
+
color: inherit;
|
| 28 |
+
text-decoration: none;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
img {
|
| 32 |
+
max-width: 100%;
|
| 33 |
+
height: auto;
|
| 34 |
+
}
|
| 35 |
+
|
| 36 |
+
/* Custom scrollbar */
|
| 37 |
+
::-webkit-scrollbar {
|
| 38 |
+
width: 8px;
|
| 39 |
+
}
|
| 40 |
+
|
| 41 |
+
::-webkit-scrollbar-track {
|
| 42 |
+
background: #0a0a0a;
|
| 43 |
+
}
|
| 44 |
+
|
| 45 |
+
::-webkit-scrollbar-thumb {
|
| 46 |
+
background: #333;
|
| 47 |
+
border-radius: 4px;
|
| 48 |
+
}
|
| 49 |
+
|
| 50 |
+
::-webkit-scrollbar-thumb:hover {
|
| 51 |
+
background: #555;
|
| 52 |
+
}
|
| 53 |
+
|
| 54 |
+
/* Selection color */
|
| 55 |
+
::selection {
|
| 56 |
+
background-color: rgba(255, 255, 255, 0.2);
|
| 57 |
+
color: #ffffff;
|
| 58 |
+
}
|