Upload folder using huggingface_hub
Browse files- styles.css +22 -7
styles.css
CHANGED
|
@@ -3,7 +3,8 @@
|
|
| 3 |
--bg-color: #ffffff;
|
| 4 |
--text-primary: #111827;
|
| 5 |
--text-secondary: #4b5563;
|
| 6 |
-
--accent-color: #2563eb;
|
|
|
|
| 7 |
--accent-hover: #1d4ed8;
|
| 8 |
--bg-alt: #f9fafb;
|
| 9 |
--border-color: #e5e7eb;
|
|
@@ -25,7 +26,10 @@ body {
|
|
| 25 |
-webkit-font-smoothing: antialiased;
|
| 26 |
}
|
| 27 |
|
| 28 |
-
h1,
|
|
|
|
|
|
|
|
|
|
| 29 |
font-weight: 700;
|
| 30 |
letter-spacing: -0.025em;
|
| 31 |
line-height: 1.2;
|
|
@@ -134,6 +138,7 @@ a {
|
|
| 134 |
margin-bottom: 1.5rem;
|
| 135 |
background: linear-gradient(to right, #111827, #4b5563);
|
| 136 |
-webkit-background-clip: text;
|
|
|
|
| 137 |
-webkit-text-fill-color: transparent;
|
| 138 |
}
|
| 139 |
|
|
@@ -338,13 +343,23 @@ footer {
|
|
| 338 |
.hero h1 {
|
| 339 |
font-size: 2.5rem;
|
| 340 |
}
|
| 341 |
-
|
| 342 |
-
.content-grid,
|
|
|
|
|
|
|
|
|
|
| 343 |
grid-template-columns: 1fr;
|
| 344 |
gap: 2rem;
|
| 345 |
}
|
| 346 |
-
|
| 347 |
.nav-links {
|
| 348 |
-
display: none;
|
|
|
|
| 349 |
}
|
| 350 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
--bg-color: #ffffff;
|
| 4 |
--text-primary: #111827;
|
| 5 |
--text-secondary: #4b5563;
|
| 6 |
+
--accent-color: #2563eb;
|
| 7 |
+
/* Electric Blue */
|
| 8 |
--accent-hover: #1d4ed8;
|
| 9 |
--bg-alt: #f9fafb;
|
| 10 |
--border-color: #e5e7eb;
|
|
|
|
| 26 |
-webkit-font-smoothing: antialiased;
|
| 27 |
}
|
| 28 |
|
| 29 |
+
h1,
|
| 30 |
+
h2,
|
| 31 |
+
h3,
|
| 32 |
+
h4 {
|
| 33 |
font-weight: 700;
|
| 34 |
letter-spacing: -0.025em;
|
| 35 |
line-height: 1.2;
|
|
|
|
| 138 |
margin-bottom: 1.5rem;
|
| 139 |
background: linear-gradient(to right, #111827, #4b5563);
|
| 140 |
-webkit-background-clip: text;
|
| 141 |
+
background-clip: text;
|
| 142 |
-webkit-text-fill-color: transparent;
|
| 143 |
}
|
| 144 |
|
|
|
|
| 343 |
.hero h1 {
|
| 344 |
font-size: 2.5rem;
|
| 345 |
}
|
| 346 |
+
|
| 347 |
+
.content-grid,
|
| 348 |
+
.content-columns,
|
| 349 |
+
.split-layout,
|
| 350 |
+
.conclusion-grid {
|
| 351 |
grid-template-columns: 1fr;
|
| 352 |
gap: 2rem;
|
| 353 |
}
|
| 354 |
+
|
| 355 |
.nav-links {
|
| 356 |
+
display: none;
|
| 357 |
+
/* Simple hide for mobile for now */
|
| 358 |
}
|
| 359 |
+
|
| 360 |
+
.hero-visual {
|
| 361 |
+
height: auto;
|
| 362 |
+
aspect-ratio: 16/9;
|
| 363 |
+
/* Maintain aspect ratio on mobile to prevent blank space */
|
| 364 |
+
}
|
| 365 |
+
}
|