ysharma HF Staff commited on
Commit
f7c3baa
·
verified ·
1 Parent(s): e624df5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +47 -2
README.md CHANGED
@@ -289,6 +289,49 @@ color: var(--moss);
289
  }
290
  .bsh .badge .meta .tag.tentative { color: var(--rust); }
291
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
292
  /* ---------- numbered ledger ---------- */
293
  .bsh .ledger {
294
  border: 1px solid var(--walnut);
@@ -464,9 +507,11 @@ height: 3px;
464
  <div class="title-row">
465
  <div style="flex:1; min-width: 0;">
466
  <div class="eyebrow caps"><span class="dingbat">✦</span> The Build Small Hackathon <span class="dingbat">✦</span></div>
467
-
 
 
 
468
  </div>
469
-
470
  </div>
471
  </header>
472
 
 
289
  }
290
  .bsh .badge .meta .tag.tentative { color: var(--rust); }
291
 
292
+ /* ---------- header cta ---------- */
293
+ .bsh .header-cta {
294
+ display: flex;
295
+ flex-direction: column;
296
+ align-items: center;
297
+ gap: 10px;
298
+ margin-top: 10px;
299
+ }
300
+ .bsh .header-button {
301
+ display: inline-block;
302
+ padding: 12px 22px;
303
+ background: var(--bark);
304
+ color: var(--sun);
305
+ border: 2px solid var(--bark);
306
+ border-radius: 999px;
307
+ font-family: Georgia, serif;
308
+ font-weight: 700;
309
+ font-size: 15px;
310
+ text-decoration: none;
311
+ letter-spacing: 0.04em;
312
+ box-shadow: 0 4px 0 rgba(58,37,22,0.22);
313
+ transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
314
+ }
315
+ .bsh .header-button:hover {
316
+ background: var(--rust);
317
+ border-color: var(--rust);
318
+ color: var(--cream);
319
+ transform: translateY(-2px);
320
+ box-shadow: 0 6px 0 rgba(58,37,22,0.28);
321
+ text-decoration: none;
322
+ }
323
+ .bsh .header-cta-info {
324
+ font-family: Georgia, serif;
325
+ font-style: italic;
326
+ color: var(--rust);
327
+ font-size: 14px;
328
+ }
329
+ .bsh .header-cta-info b {
330
+ font-style: normal;
331
+ color: var(--bark);
332
+ font-weight: 700;
333
+ }
334
+
335
  /* ---------- numbered ledger ---------- */
336
  .bsh .ledger {
337
  border: 1px solid var(--walnut);
 
507
  <div class="title-row">
508
  <div style="flex:1; min-width: 0;">
509
  <div class="eyebrow caps"><span class="dingbat">✦</span> The Build Small Hackathon <span class="dingbat">✦</span></div>
510
+ <div class="header-cta">
511
+ <span class="header-cta-info">You <b>must</b> join this org and register here to participate 👇. Registrations open till <b>June 3, 2026</b></span>
512
+ <a href="https://huggingface.co/spaces/build-small-hackathon/registration" class="header-button">→ &nbsp; Register Now &nbsp; ←</a>
513
+ </div>
514
  </div>
 
515
  </div>
516
  </header>
517