Underline "built by OSU NLP Group" byline to cue the link
Browse filesReason: byline is a link to x.com/osunlp but looked like plain text;
add a subtle muted underline that shifts to the terracotta accent on
hover so users can see it's clickable.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
app.py
CHANGED
|
@@ -311,11 +311,17 @@ gradio-app > div {
|
|
| 311 |
color: var(--q-muted);
|
| 312 |
font-size: 0.9rem;
|
| 313 |
font-weight: 500;
|
| 314 |
-
text-decoration:
|
|
|
|
|
|
|
|
|
|
| 315 |
width: fit-content;
|
| 316 |
-
transition: color 140ms ease;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 317 |
}
|
| 318 |
-
.quest-header-byline:hover { color: var(--q-accent); }
|
| 319 |
|
| 320 |
/* === Cards (section-card) =============================================== */
|
| 321 |
.section-card {
|
|
|
|
| 311 |
color: var(--q-muted);
|
| 312 |
font-size: 0.9rem;
|
| 313 |
font-weight: 500;
|
| 314 |
+
text-decoration: underline;
|
| 315 |
+
text-decoration-color: rgba(100,116,139,0.45);
|
| 316 |
+
text-underline-offset: 3px;
|
| 317 |
+
text-decoration-thickness: 1px;
|
| 318 |
width: fit-content;
|
| 319 |
+
transition: color 140ms ease, text-decoration-color 140ms ease;
|
| 320 |
+
}
|
| 321 |
+
.quest-header-byline:hover {
|
| 322 |
+
color: var(--q-accent);
|
| 323 |
+
text-decoration-color: var(--q-accent);
|
| 324 |
}
|
|
|
|
| 325 |
|
| 326 |
/* === Cards (section-card) =============================================== */
|
| 327 |
.section-card {
|