grubmit commited on
Commit
eea7375
·
verified ·
1 Parent(s): 6bb2722

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. index.html +89 -2
index.html CHANGED
@@ -27,18 +27,31 @@
27
  box-sizing: border-box;
28
  }
29
 
 
 
 
 
30
  body {
31
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
32
  background: var(--bg);
33
  color: var(--text);
34
  min-height: 100vh;
35
  line-height: 1.6;
 
 
36
  }
37
 
38
  .container {
39
  max-width: 900px;
40
  margin: 0 auto;
41
  padding: 60px 24px;
 
 
 
 
 
 
 
42
  }
43
 
44
  /* Header */
@@ -56,6 +69,7 @@
56
  .logo svg {
57
  height: 50px;
58
  width: auto;
 
59
  }
60
 
61
  .tagline {
@@ -188,7 +202,13 @@
188
  gap: 16px;
189
  }
190
 
191
- @media (max-width: 600px) {
 
 
 
 
 
 
192
  .product-features {
193
  grid-template-columns: 1fr;
194
  }
@@ -238,6 +258,7 @@
238
 
239
  .event-content {
240
  flex: 1;
 
241
  }
242
 
243
  .event-badge {
@@ -270,6 +291,72 @@
270
  color: var(--text);
271
  font-size: 1.5rem;
272
  margin-left: 16px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
273
  }
274
 
275
  </style>
@@ -324,7 +411,7 @@
324
  </div>
325
  <p class="tagline">Leverage Licensed Training Data<br>from Premium News & Sports Sources</p>
326
  <p class="subtitle">
327
- Discover and access high-quality, fully licensed video and image datasets from leading media organizations.
328
  Train bespoke vision models with confidence.
329
  </p>
330
  <nav class="links">
 
27
  box-sizing: border-box;
28
  }
29
 
30
+ html {
31
+ overflow-x: hidden;
32
+ }
33
+
34
  body {
35
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
36
  background: var(--bg);
37
  color: var(--text);
38
  min-height: 100vh;
39
  line-height: 1.6;
40
+ overflow-x: hidden;
41
+ -webkit-overflow-scrolling: touch;
42
  }
43
 
44
  .container {
45
  max-width: 900px;
46
  margin: 0 auto;
47
  padding: 60px 24px;
48
+ width: 100%;
49
+ }
50
+
51
+ @media (max-width: 480px) {
52
+ .container {
53
+ padding: 40px 16px;
54
+ }
55
  }
56
 
57
  /* Header */
 
69
  .logo svg {
70
  height: 50px;
71
  width: auto;
72
+ max-width: 100%;
73
  }
74
 
75
  .tagline {
 
202
  gap: 16px;
203
  }
204
 
205
+ @media (max-width: 768px) {
206
+ .product-features {
207
+ grid-template-columns: repeat(2, 1fr);
208
+ }
209
+ }
210
+
211
+ @media (max-width: 480px) {
212
  .product-features {
213
  grid-template-columns: 1fr;
214
  }
 
258
 
259
  .event-content {
260
  flex: 1;
261
+ min-width: 0;
262
  }
263
 
264
  .event-badge {
 
291
  color: var(--text);
292
  font-size: 1.5rem;
293
  margin-left: 16px;
294
+ flex-shrink: 0;
295
+ }
296
+
297
+ /* Mobile responsive fixes */
298
+ @media (max-width: 480px) {
299
+ .header {
300
+ margin-bottom: 40px;
301
+ }
302
+
303
+ .tagline {
304
+ font-size: 1.25rem;
305
+ }
306
+
307
+ .subtitle {
308
+ font-size: 1rem;
309
+ }
310
+
311
+ .links {
312
+ gap: 16px;
313
+ }
314
+
315
+ section {
316
+ margin-bottom: 36px;
317
+ }
318
+
319
+ h2 {
320
+ font-size: 1.25rem;
321
+ }
322
+
323
+ .product-hero {
324
+ padding: 24px 20px;
325
+ border-radius: 12px;
326
+ }
327
+
328
+ .product-hero h3 {
329
+ font-size: 1.25rem;
330
+ }
331
+
332
+ .product-hero a {
333
+ padding: 12px 24px;
334
+ font-size: 1rem;
335
+ }
336
+
337
+ .event-link {
338
+ padding: 16px;
339
+ flex-direction: column;
340
+ align-items: flex-start;
341
+ gap: 12px;
342
+ }
343
+
344
+ .event-arrow {
345
+ margin-left: 0;
346
+ align-self: flex-end;
347
+ }
348
+
349
+ .event-content h3 {
350
+ font-size: 1rem;
351
+ }
352
+
353
+ .event-content p {
354
+ font-size: 0.85rem;
355
+ }
356
+
357
+ .feature {
358
+ padding: 16px;
359
+ }
360
  }
361
 
362
  </style>
 
411
  </div>
412
  <p class="tagline">Leverage Licensed Training Data<br>from Premium News & Sports Sources</p>
413
  <p class="subtitle">
414
+ Discover and access high-quality, fully licensed video and image datasets from leading media organizations.
415
  Train bespoke vision models with confidence.
416
  </p>
417
  <nav class="links">