TomLii Claude Sonnet 4.6 commited on
Commit
bc3f415
·
1 Parent(s): 2a09b09

Underline "built by OSU NLP Group" byline to cue the link

Browse files

Reason: 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>

Files changed (1) hide show
  1. app.py +9 -3
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: none;
 
 
 
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 {