Spaces:
Running
Running
RemiFabre
commited on
Commit
·
15d0622
1
Parent(s):
789d667
Added credits
Browse files- emotions/static/index.html +10 -0
- emotions/static/style.css +41 -0
emotions/static/index.html
CHANGED
|
@@ -65,6 +65,16 @@
|
|
| 65 |
<strong>Sync diagnostics</strong>
|
| 66 |
<p>Loading…</p>
|
| 67 |
</section>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 68 |
</main>
|
| 69 |
|
| 70 |
<div id="tooltip" class="tooltip" role="status" aria-live="polite"></div>
|
|
|
|
| 65 |
<strong>Sync diagnostics</strong>
|
| 66 |
<p>Loading…</p>
|
| 67 |
</section>
|
| 68 |
+
|
| 69 |
+
<section class="credits-panel">
|
| 70 |
+
<strong>Credits</strong>
|
| 71 |
+
<ul>
|
| 72 |
+
<li><strong>AnneCha</strong><span>Most of the animations + the voiceovers.</span></li>
|
| 73 |
+
<li><strong>Coco</strong><span>Teleop software and ... antennas lol.</span></li>
|
| 74 |
+
<li><strong>Gus</strong><span>Actually plays the flute.</span></li>
|
| 75 |
+
<li><strong>Remi</strong><span>Karma farming.</span></li>
|
| 76 |
+
</ul>
|
| 77 |
+
</section>
|
| 78 |
</main>
|
| 79 |
|
| 80 |
<div id="tooltip" class="tooltip" role="status" aria-live="polite"></div>
|
emotions/static/style.css
CHANGED
|
@@ -399,6 +399,47 @@ body {
|
|
| 399 |
font-style: italic;
|
| 400 |
}
|
| 401 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 402 |
.tooltip {
|
| 403 |
position: fixed;
|
| 404 |
pointer-events: none;
|
|
|
|
| 399 |
font-style: italic;
|
| 400 |
}
|
| 401 |
|
| 402 |
+
.credits-panel {
|
| 403 |
+
margin: 48px auto 0;
|
| 404 |
+
padding: 18px 0 0;
|
| 405 |
+
max-width: 720px;
|
| 406 |
+
border-top: 1px solid rgba(255, 255, 255, 0.08);
|
| 407 |
+
color: var(--text-muted);
|
| 408 |
+
font-size: 0.85rem;
|
| 409 |
+
}
|
| 410 |
+
|
| 411 |
+
.credits-panel > strong {
|
| 412 |
+
display: block;
|
| 413 |
+
color: var(--text-soft);
|
| 414 |
+
margin-bottom: 8px;
|
| 415 |
+
text-transform: uppercase;
|
| 416 |
+
letter-spacing: 0.2em;
|
| 417 |
+
font-size: 0.85rem;
|
| 418 |
+
}
|
| 419 |
+
|
| 420 |
+
.credits-panel ul {
|
| 421 |
+
list-style: none;
|
| 422 |
+
margin: 0;
|
| 423 |
+
padding: 0;
|
| 424 |
+
display: flex;
|
| 425 |
+
flex-direction: column;
|
| 426 |
+
gap: 6px;
|
| 427 |
+
}
|
| 428 |
+
|
| 429 |
+
.credits-panel li {
|
| 430 |
+
display: flex;
|
| 431 |
+
flex-wrap: wrap;
|
| 432 |
+
align-items: baseline;
|
| 433 |
+
gap: 8px;
|
| 434 |
+
color: var(--text-muted);
|
| 435 |
+
}
|
| 436 |
+
|
| 437 |
+
.credits-panel li strong {
|
| 438 |
+
font-size: 0.9rem;
|
| 439 |
+
color: var(--text-muted);
|
| 440 |
+
font-weight: 600;
|
| 441 |
+
}
|
| 442 |
+
|
| 443 |
.tooltip {
|
| 444 |
position: fixed;
|
| 445 |
pointer-events: none;
|