Skip to content

Commit 462b953

Browse files
committed
Update with Zoo's current status
1 parent 4de5c8f commit 462b953

File tree

2 files changed

+58
-6
lines changed

2 files changed

+58
-6
lines changed

index.html

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -94,16 +94,16 @@ <h1>Hack Club: Web Dev Series</h1>
9494
</div>
9595
<div class="arrow"></div>
9696
<div class="flow-indicator">why not take a trip to the zoo and learn SvelteKit, do...</div>
97-
<div class="box" style="--box-bg: #103D10; --box-title: #408000; --box-desc: #ffffff;">
98-
<img class="box-img" src="./imgs/zoo.png" alt="Box Image" />
97+
<div class="box unreleased-box" style="--box-bg: #103D10; --box-title: #408000; --box-desc: white;">
98+
<img class="box-img unreleased" src="./imgs/zoo.png" alt="Zoo Logo">
9999
<div class="box-content">
100-
<div class="box-title">The Zoo</div>
100+
<div class="box-title">Zoo</div>
101101
<div class="box-desc"><strong>Make an animal themed SvelteKit site, get plushies and stickers!</strong></div>
102102
<div class="box-desc">Estimated time: 1-2 hours</div>
103103
<div class="price-tag">$10+</div>
104104
</div>
105-
<a href="https://zoo.hackclub.com/"><button class="box-btn">check it out!</button></a>
106-
<a href=""><button class="box-btn" style="background: gray;">run a workshop!</button></a>
105+
<button href="https://zoo.hackclub.com" class="box-btn unreleased-btn" disabled>check it out!</button>
106+
<button class="box-btn unreleased-btn" disabled>Ended!</button>
107107
</div>
108108
<div class="arrow"></div>
109109
<div class="flow-indicator">if you want to go 3D, do...</div>
@@ -119,7 +119,13 @@ <h1>Hack Club: Web Dev Series</h1>
119119
<a href="https://forms.hackclub.com/t/nGoLApvXMDus"><button class="box-btn box-btn-white">run a workshop!</button></a>
120120
</div>
121121
</div>
122-
122+
</div>
123+
<div class="fulfillment-section">
124+
<div class="unreleased-note">
125+
<h2>Zoo: Ended</h2>
126+
<p><strong>Zoo</strong> is currently not active. Stay tuned for updates about Zoo V2.</p>
127+
</div>
128+
</div>
123129
<div class="fulfillment-section">
124130
<h2>How do I receive my grant?</h2>
125131
<div class="payment-methods">

styles.css

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332,3 +332,49 @@ h2 {
332332
color: #666;
333333
font-size: 0.95rem;
334334
}
335+
/* Unrealesed Box from cad.hackclub.com */
336+
337+
.box.unreleased-box[style*='enclosure'] {
338+
--box-bg: #c10007 !important;
339+
--box-title: #ffdf20 !important;
340+
--box-desc: white !important;
341+
}
342+
/* Greyscale unreleased boxes */
343+
.unreleased-box {
344+
filter: grayscale(1) brightness(1.1) opacity(0.7) !important;
345+
pointer-events: none;
346+
}
347+
/* Unreleased (greyed out) styles */
348+
.unreleased,
349+
.unreleased-btn {
350+
filter: grayscale(1) brightness(1.2) opacity(0.6);
351+
pointer-events: none;
352+
}
353+
.unreleased-btn {
354+
background: #bbb !important;
355+
color: #fff !important;
356+
cursor: not-allowed !important;
357+
box-shadow: none !important;
358+
border: none !important;
359+
}
360+
.unreleased-note {
361+
background: #f3f3f3;
362+
border-left: 6px solid #888;
363+
border-radius: 12px;
364+
padding: 1.5rem 2rem;
365+
margin: 2rem auto 1.5rem auto;
366+
max-width: 700px;
367+
text-align: center;
368+
color: #444;
369+
box-shadow: 0 2px 8px rgba(0,0,0,0.04);
370+
}
371+
.unreleased-note h2 {
372+
color: #ec3750;
373+
margin-bottom: 0.5rem;
374+
font-size: 1.5rem;
375+
font-weight: 700;
376+
}
377+
.unreleased-note p {
378+
font-size: 1.1rem;
379+
margin: 0;
380+
}

0 commit comments

Comments
 (0)