Spaces:
Running
Running
feat: add "Coming Soon" badge to demo items with corresponding styles.
Browse files- index.html +3 -0
- style.css +15 -0
index.html
CHANGED
|
@@ -132,6 +132,7 @@
|
|
| 132 |
<i data-lucide="play" class="demo-play-icon"></i>
|
| 133 |
</div>
|
| 134 |
<div class="demo-duration">2:30</div>
|
|
|
|
| 135 |
</div>
|
| 136 |
<div class="demo-info">
|
| 137 |
<h3>Voice Conversation & Medication Logging</h3>
|
|
@@ -148,6 +149,7 @@
|
|
| 148 |
<i data-lucide="play" class="demo-play-icon"></i>
|
| 149 |
</div>
|
| 150 |
<div class="demo-duration">1:45</div>
|
|
|
|
| 151 |
</div>
|
| 152 |
<div class="demo-info">
|
| 153 |
<h3>Headache Tracking & Generative UI</h3>
|
|
@@ -163,6 +165,7 @@
|
|
| 163 |
<i data-lucide="play" class="demo-play-icon"></i>
|
| 164 |
</div>
|
| 165 |
<div class="demo-duration">3:00</div>
|
|
|
|
| 166 |
</div>
|
| 167 |
<div class="demo-info">
|
| 168 |
<h3>Onboarding, Reports & Robot Expressions</h3>
|
|
|
|
| 132 |
<i data-lucide="play" class="demo-play-icon"></i>
|
| 133 |
</div>
|
| 134 |
<div class="demo-duration">2:30</div>
|
| 135 |
+
<div class="demo-badge">Coming Soon</div>
|
| 136 |
</div>
|
| 137 |
<div class="demo-info">
|
| 138 |
<h3>Voice Conversation & Medication Logging</h3>
|
|
|
|
| 149 |
<i data-lucide="play" class="demo-play-icon"></i>
|
| 150 |
</div>
|
| 151 |
<div class="demo-duration">1:45</div>
|
| 152 |
+
<div class="demo-badge">Coming Soon</div>
|
| 153 |
</div>
|
| 154 |
<div class="demo-info">
|
| 155 |
<h3>Headache Tracking & Generative UI</h3>
|
|
|
|
| 165 |
<i data-lucide="play" class="demo-play-icon"></i>
|
| 166 |
</div>
|
| 167 |
<div class="demo-duration">3:00</div>
|
| 168 |
+
<div class="demo-badge">Coming Soon</div>
|
| 169 |
</div>
|
| 170 |
<div class="demo-info">
|
| 171 |
<h3>Onboarding, Reports & Robot Expressions</h3>
|
style.css
CHANGED
|
@@ -602,6 +602,21 @@ code {
|
|
| 602 |
border-radius: 4px;
|
| 603 |
z-index: 1;
|
| 604 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 605 |
.demo-info {
|
| 606 |
padding: 16px 18px;
|
| 607 |
}
|
|
|
|
| 602 |
border-radius: 4px;
|
| 603 |
z-index: 1;
|
| 604 |
}
|
| 605 |
+
.demo-badge {
|
| 606 |
+
position: absolute;
|
| 607 |
+
top: 10px; right: 12px;
|
| 608 |
+
background: rgba(179, 156, 208, 0.25);
|
| 609 |
+
border: 1px solid rgba(179, 156, 208, 0.5);
|
| 610 |
+
color: var(--color-cta);
|
| 611 |
+
font-family: var(--font-heading);
|
| 612 |
+
font-size: 10px;
|
| 613 |
+
font-weight: 700;
|
| 614 |
+
letter-spacing: 0.08em;
|
| 615 |
+
text-transform: uppercase;
|
| 616 |
+
padding: 3px 10px;
|
| 617 |
+
border-radius: 20px;
|
| 618 |
+
z-index: 1;
|
| 619 |
+
}
|
| 620 |
.demo-info {
|
| 621 |
padding: 16px 18px;
|
| 622 |
}
|