Upload src/index.css with huggingface_hub
Browse files- src/index.css +52 -71
src/index.css
CHANGED
|
@@ -2,93 +2,74 @@
|
|
| 2 |
@tailwind components;
|
| 3 |
@tailwind utilities;
|
| 4 |
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
}
|
| 10 |
-
|
| 11 |
-
body {
|
| 12 |
-
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
| 13 |
-
background-color: #111827;
|
| 14 |
-
color: #f3f4f6;
|
| 15 |
-
line-height: 1.6;
|
| 16 |
-
}
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
}
|
| 22 |
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
|
|
|
| 26 |
|
| 27 |
-
|
| 28 |
-
:
|
| 29 |
-
|
| 30 |
-
height: 8px;
|
| 31 |
-
}
|
| 32 |
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
}
|
| 36 |
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
}
|
| 41 |
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
}
|
| 45 |
|
| 46 |
-
|
| 47 |
-
@
|
| 48 |
-
from {
|
| 49 |
-
opacity: 0;
|
| 50 |
-
transform: translateY(10px);
|
| 51 |
}
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
}
|
| 56 |
-
}
|
| 57 |
|
| 58 |
-
.
|
| 59 |
-
|
| 60 |
-
}
|
| 61 |
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
-webkit-text-fill-color: transparent;
|
| 67 |
-
background-clip: text;
|
| 68 |
}
|
| 69 |
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
}
|
| 76 |
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
}
|
| 81 |
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
}
|
| 85 |
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
|
| 89 |
-
}
|
| 90 |
|
| 91 |
-
.
|
| 92 |
-
|
| 93 |
-
|
| 94 |
}
|
|
|
|
| 2 |
@tailwind components;
|
| 3 |
@tailwind utilities;
|
| 4 |
|
| 5 |
+
@layer base {
|
| 6 |
+
body {
|
| 7 |
+
@apply bg-slate-950 text-slate-100 antialiased;
|
| 8 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
|
| 10 |
+
::selection {
|
| 11 |
+
@apply bg-indigo-500/30;
|
| 12 |
+
}
|
| 13 |
}
|
| 14 |
|
| 15 |
+
@layer components {
|
| 16 |
+
.card {
|
| 17 |
+
@apply bg-slate-900/80 backdrop-blur-sm border border-slate-800 rounded-2xl;
|
| 18 |
+
}
|
| 19 |
|
| 20 |
+
.card-hover {
|
| 21 |
+
@apply transition-all duration-300 hover:border-slate-700 hover:shadow-xl hover:shadow-indigo-500/5;
|
| 22 |
+
}
|
|
|
|
|
|
|
| 23 |
|
| 24 |
+
.btn {
|
| 25 |
+
@apply px-4 py-2 rounded-xl font-medium transition-all duration-200;
|
| 26 |
+
}
|
| 27 |
|
| 28 |
+
.btn-primary {
|
| 29 |
+
@apply bg-gradient-to-r from-indigo-600 to-purple-600 text-white hover:from-indigo-500 hover:to-purple-500 shadow-lg shadow-indigo-500/25;
|
| 30 |
+
}
|
|
|
|
| 31 |
|
| 32 |
+
.btn-secondary {
|
| 33 |
+
@apply bg-slate-800 text-slate-200 hover:bg-slate-700 border border-slate-700;
|
| 34 |
+
}
|
| 35 |
|
| 36 |
+
.code-block {
|
| 37 |
+
@apply bg-slate-950 border border-slate-800 rounded-xl p-4 font-mono text-sm overflow-x-auto;
|
|
|
|
|
|
|
|
|
|
| 38 |
}
|
| 39 |
+
|
| 40 |
+
.gradient-text {
|
| 41 |
+
@apply bg-gradient-to-r from-indigo-400 via-purple-400 to-pink-400 bg-clip-text text-transparent;
|
| 42 |
}
|
|
|
|
| 43 |
|
| 44 |
+
.glow {
|
| 45 |
+
@apply relative;
|
| 46 |
+
}
|
| 47 |
|
| 48 |
+
.glow::before {
|
| 49 |
+
content: '';
|
| 50 |
+
@apply absolute -inset-1 bg-gradient-to-r from-indigo-600 to-purple-600 rounded-2xl blur-lg opacity-25;
|
| 51 |
+
}
|
|
|
|
|
|
|
| 52 |
}
|
| 53 |
|
| 54 |
+
@layer utilities {
|
| 55 |
+
.scrollbar-thin {
|
| 56 |
+
scrollbar-width: thin;
|
| 57 |
+
scrollbar-color: #475569 #1e293b;
|
| 58 |
+
}
|
|
|
|
| 59 |
|
| 60 |
+
.scrollbar-thin::-webkit-scrollbar {
|
| 61 |
+
@apply w-2 h-2;
|
| 62 |
+
}
|
|
|
|
| 63 |
|
| 64 |
+
.scrollbar-thin::-webkit-scrollbar-track {
|
| 65 |
+
@apply bg-slate-900 rounded-full;
|
| 66 |
+
}
|
| 67 |
|
| 68 |
+
.scrollbar-thin::-webkit-scrollbar-thumb {
|
| 69 |
+
@apply bg-slate-700 rounded-full;
|
| 70 |
+
}
|
|
|
|
| 71 |
|
| 72 |
+
.scrollbar-thin::-webkit-scrollbar-thumb:hover {
|
| 73 |
+
@apply bg-slate-600;
|
| 74 |
+
}
|
| 75 |
}
|