evalstate HF Staff commited on
Commit
ebf3641
·
verified ·
1 Parent(s): 3a4b398

Improve deck arrow placement

Browse files
Files changed (3) hide show
  1. README.md +1 -1
  2. index.html +35 -12
  3. publish-manifest.json +2 -2
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- title: Presentations Archive
3
  emoji: 🎤
4
  colorFrom: blue
5
  colorTo: yellow
 
1
  ---
2
+ title: Presentation Archive
3
  emoji: 🎤
4
  colorFrom: blue
5
  colorTo: yellow
index.html CHANGED
@@ -3,7 +3,7 @@
3
  <head>
4
  <meta charset="utf-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1">
6
- <title>Presentations Archive</title>
7
  <style>
8
  :root {
9
  color-scheme: dark;
@@ -254,9 +254,9 @@
254
  }
255
  .card-main {
256
  display: grid;
257
- grid-template-columns: 7.2rem minmax(0, 1fr) 1.6rem;
258
  gap: 1rem;
259
- align-items: baseline;
260
  border-bottom: 0;
261
  }
262
  .talk-copy {
@@ -286,7 +286,28 @@
286
  line-height: 1.22;
287
  letter-spacing: -.035em;
288
  }
289
- .arrow { color: var(--a-0); justify-self: end; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
290
  .card-actions { display: flex; gap: .45rem; justify-content: end; align-items: center; }
291
  .pill {
292
  display: inline-flex;
@@ -335,8 +356,10 @@
335
  .year-section { grid-template-columns: 1fr; }
336
  .year-rail span { position: static; writing-mode: horizontal-tb; transform: none; }
337
  .talk-card { grid-template-columns: 1fr; }
338
- .card-main { grid-template-columns: 1fr 1.6rem; }
339
  .stamp { grid-column: 1 / -1; }
 
 
340
  .card-actions { justify-content: start; }
341
  .note { margin-left: 0; }
342
  }
@@ -347,7 +370,7 @@
347
  <header class="hero">
348
  <div>
349
  <p class="eyebrow">evalstate archive department</p>
350
- <h1>Presentations Archive</h1>
351
  <p class="lede">A maintained shelf of selected talks, demos, and conference decks. Hosted by Hugging Face Spaces.</p>
352
  </div>
353
  <aside class="hero-card">
@@ -416,13 +439,13 @@
416
  <a class="card-main" href="2026/nvidia-meetup/presentation.html">
417
  <span class="stamp"><time datetime="2026-04-30">Apr 2026</time></span>
418
  <span class="talk-copy">
419
- <span class="event-line">AI Native Dev · London</span>
420
  <h3>Upskilling Models, Agents and the ML Pipeline</h3>
421
  </span>
422
  <span class="arrow" aria-hidden="true">↗</span>
423
  </a>
424
  <div class="card-actions">
425
-
426
  <a class="pill" href="2026/nvidia-meetup/presentation.html">View deck</a>
427
  </div>
428
 
@@ -437,10 +460,10 @@
437
  <span class="arrow" aria-hidden="true">↗</span>
438
  </a>
439
  <div class="card-actions">
440
-
441
  <a class="pill" href="2026/mcp-dev-summit-ny/presentation.html">View deck</a>
442
  </div>
443
-
444
  </article>
445
  <article class="talk-card" style="--i:6">
446
  <a class="card-main" href="2026/mcp-conference/presentation.html">
@@ -467,7 +490,7 @@
467
  <span class="arrow" aria-hidden="true">↗</span>
468
  </a>
469
  <div class="card-actions">
470
-
471
  <a class="pill" href="2026/mcp-connect/presentation.html">View deck</a>
472
  </div>
473
 
@@ -530,7 +553,7 @@
530
  </section>
531
  <footer>
532
  <span>Built from <code>evalstate/miscellany@798f9841f5cc</code> · local changes present</span>
533
- <span>2026-06-24T11:43:43.112199+00:00 · <a href="publish-manifest.json">provenance</a></span>
534
  </footer>
535
  </main>
536
  </body>
 
3
  <head>
4
  <meta charset="utf-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1">
6
+ <title>Presentation Archive</title>
7
  <style>
8
  :root {
9
  color-scheme: dark;
 
254
  }
255
  .card-main {
256
  display: grid;
257
+ grid-template-columns: 7.2rem minmax(0, 1fr) 2.35rem;
258
  gap: 1rem;
259
+ align-items: stretch;
260
  border-bottom: 0;
261
  }
262
  .talk-copy {
 
286
  line-height: 1.22;
287
  letter-spacing: -.035em;
288
  }
289
+ .arrow {
290
+ display: grid;
291
+ place-items: center;
292
+ align-self: stretch;
293
+ justify-self: end;
294
+ width: 2.35rem;
295
+ min-height: 2.35rem;
296
+ color: var(--a-0);
297
+ background: rgba(245,164,0,.06);
298
+ border: 1px solid var(--a-line);
299
+ border-radius: 2px;
300
+ font-size: 1.05rem;
301
+ line-height: 1;
302
+ transform: translateX(0);
303
+ transition: transform 180ms cubic-bezier(.2,0,0,1), background 180ms cubic-bezier(.2,0,0,1), border-color 180ms cubic-bezier(.2,0,0,1), color 180ms cubic-bezier(.2,0,0,1);
304
+ }
305
+ .talk-card:hover .arrow {
306
+ color: #0b0c0f;
307
+ background: var(--a-0);
308
+ border-color: var(--a-0);
309
+ transform: translateX(.12rem) translateY(-.12rem);
310
+ }
311
  .card-actions { display: flex; gap: .45rem; justify-content: end; align-items: center; }
312
  .pill {
313
  display: inline-flex;
 
356
  .year-section { grid-template-columns: 1fr; }
357
  .year-rail span { position: static; writing-mode: horizontal-tb; transform: none; }
358
  .talk-card { grid-template-columns: 1fr; }
359
+ .card-main { grid-template-columns: 1fr 2.35rem; }
360
  .stamp { grid-column: 1 / -1; }
361
+ .talk-copy { grid-column: 1; }
362
+ .arrow { grid-column: 2; grid-row: 2; }
363
  .card-actions { justify-content: start; }
364
  .note { margin-left: 0; }
365
  }
 
370
  <header class="hero">
371
  <div>
372
  <p class="eyebrow">evalstate archive department</p>
373
+ <h1>Presentation Archive</h1>
374
  <p class="lede">A maintained shelf of selected talks, demos, and conference decks. Hosted by Hugging Face Spaces.</p>
375
  </div>
376
  <aside class="hero-card">
 
439
  <a class="card-main" href="2026/nvidia-meetup/presentation.html">
440
  <span class="stamp"><time datetime="2026-04-30">Apr 2026</time></span>
441
  <span class="talk-copy">
442
+ <span class="event-line">AI Native Dev (NVidia) · London</span>
443
  <h3>Upskilling Models, Agents and the ML Pipeline</h3>
444
  </span>
445
  <span class="arrow" aria-hidden="true">↗</span>
446
  </a>
447
  <div class="card-actions">
448
+ <a class="pill ghost" href="https://luma.com/oojjhxa2?tk=S9bQsj">Event</a>
449
  <a class="pill" href="2026/nvidia-meetup/presentation.html">View deck</a>
450
  </div>
451
 
 
460
  <span class="arrow" aria-hidden="true">↗</span>
461
  </a>
462
  <div class="card-actions">
463
+ <a class="pill ghost" href="https://mcpdevsummitna26.sched.com/">Event</a>
464
  <a class="pill" href="2026/mcp-dev-summit-ny/presentation.html">View deck</a>
465
  </div>
466
+ <p class="note">Included live demo of fast-agent / Monty Code Generation</p>
467
  </article>
468
  <article class="talk-card" style="--i:6">
469
  <a class="card-main" href="2026/mcp-conference/presentation.html">
 
490
  <span class="arrow" aria-hidden="true">↗</span>
491
  </a>
492
  <div class="card-actions">
493
+ <a class="pill ghost" href="https://luma.com/bj6kgvxh">Event</a>
494
  <a class="pill" href="2026/mcp-connect/presentation.html">View deck</a>
495
  </div>
496
 
 
553
  </section>
554
  <footer>
555
  <span>Built from <code>evalstate/miscellany@798f9841f5cc</code> · local changes present</span>
556
+ <span>2026-06-24T11:50:29.549960+00:00 · <a href="publish-manifest.json">provenance</a></span>
557
  </footer>
558
  </main>
559
  </body>
publish-manifest.json CHANGED
@@ -1,8 +1,8 @@
1
  {
2
- "title": "Presentations Archive",
3
  "space": "evalstate/presentations",
4
  "build": {
5
- "generatedAt": "2026-06-24T11:43:43.112199+00:00",
6
  "gitCommit": "798f9841f5cc979f0dd8b4002c26c29c62780a61",
7
  "gitDirty": true
8
  },
 
1
  {
2
+ "title": "Presentation Archive",
3
  "space": "evalstate/presentations",
4
  "build": {
5
+ "generatedAt": "2026-06-24T11:50:29.549960+00:00",
6
  "gitCommit": "798f9841f5cc979f0dd8b4002c26c29c62780a61",
7
  "gitDirty": true
8
  },