Spaces:
Running
Running
Upload 3 files
Browse files- index.html +4 -0
- style.css +27 -0
index.html
CHANGED
|
@@ -384,6 +384,10 @@
|
|
| 384 |
<span class="task-tag">π Diagrams</span>
|
| 385 |
<span class="task-tag">π― Wireframes</span>
|
| 386 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
| 387 |
</div>
|
| 388 |
<div class="mode-extended-card">
|
| 389 |
<div class="mode-icon-wrapper">π§ </div>
|
|
|
|
| 384 |
<span class="task-tag">π Diagrams</span>
|
| 385 |
<span class="task-tag">π― Wireframes</span>
|
| 386 |
</div>
|
| 387 |
+
<a href="https://huggingface.co/spaces/parthwebashlar/UI-Web" target="_blank"
|
| 388 |
+
class="expert-talk-link">
|
| 389 |
+
<span class="expert-icon">π</span> Experts Talk β
|
| 390 |
+
</a>
|
| 391 |
</div>
|
| 392 |
<div class="mode-extended-card">
|
| 393 |
<div class="mode-icon-wrapper">π§ </div>
|
style.css
CHANGED
|
@@ -825,6 +825,33 @@ body {
|
|
| 825 |
color: var(--text-secondary);
|
| 826 |
}
|
| 827 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 828 |
/* ========== SLIDE 7: Benchmark Table ========== */
|
| 829 |
.benchmarks-section {
|
| 830 |
display: flex;
|
|
|
|
| 825 |
color: var(--text-secondary);
|
| 826 |
}
|
| 827 |
|
| 828 |
+
/* Expert Talk Link */
|
| 829 |
+
.expert-talk-link {
|
| 830 |
+
display: inline-flex;
|
| 831 |
+
align-items: center;
|
| 832 |
+
gap: 6px;
|
| 833 |
+
margin-top: 12px;
|
| 834 |
+
padding: 6px 12px;
|
| 835 |
+
background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(139, 92, 246, 0.15));
|
| 836 |
+
border: 1px solid rgba(236, 72, 153, 0.3);
|
| 837 |
+
border-radius: 100px;
|
| 838 |
+
font-size: 0.75rem;
|
| 839 |
+
font-weight: 600;
|
| 840 |
+
color: var(--accent-tertiary);
|
| 841 |
+
text-decoration: none;
|
| 842 |
+
transition: all var(--transition-smooth);
|
| 843 |
+
}
|
| 844 |
+
|
| 845 |
+
.expert-talk-link:hover {
|
| 846 |
+
background: linear-gradient(135deg, rgba(236, 72, 153, 0.25), rgba(139, 92, 246, 0.25));
|
| 847 |
+
transform: translateY(-2px);
|
| 848 |
+
box-shadow: 0 4px 15px rgba(236, 72, 153, 0.2);
|
| 849 |
+
}
|
| 850 |
+
|
| 851 |
+
.expert-icon {
|
| 852 |
+
font-size: 0.9rem;
|
| 853 |
+
}
|
| 854 |
+
|
| 855 |
/* ========== SLIDE 7: Benchmark Table ========== */
|
| 856 |
.benchmarks-section {
|
| 857 |
display: flex;
|