Change main color span in header to povisle
Browse files
app.py
CHANGED
|
@@ -314,19 +314,33 @@ body {
|
|
| 314 |
text-transform: uppercase;
|
| 315 |
}
|
| 316 |
.povisle-hero h1 {
|
| 317 |
-
color: var(--povisle-ink);
|
|
|
|
|
|
|
|
|
|
| 318 |
font-family: var(--povisle-serif);
|
| 319 |
font-size: clamp(1.95rem, 4.2vw, 3.35rem);
|
| 320 |
font-weight: 600;
|
| 321 |
letter-spacing: 0;
|
| 322 |
-
line-height: 1.
|
| 323 |
margin: 0 auto 12px;
|
| 324 |
max-width: 820px;
|
| 325 |
}
|
| 326 |
-
.povisle-
|
| 327 |
-
color: var(--povisle-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 328 |
font-style: italic;
|
| 329 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 330 |
.povisle-hero p {
|
| 331 |
color: var(--povisle-muted);
|
| 332 |
font-size: 0.98rem;
|
|
@@ -629,13 +643,17 @@ body {
|
|
| 629 |
background: #fff1f2 !important;
|
| 630 |
}
|
| 631 |
.povisle-section-label {
|
| 632 |
-
color: var(--povisle-accent);
|
| 633 |
font-size: 0.72rem;
|
| 634 |
font-weight: 700;
|
| 635 |
letter-spacing: 0.1em;
|
| 636 |
margin-bottom: 12px;
|
| 637 |
text-transform: uppercase;
|
| 638 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 639 |
.povisle-section-title {
|
| 640 |
color: var(--povisle-ink);
|
| 641 |
font-family: var(--povisle-serif);
|
|
@@ -1063,7 +1081,10 @@ APP_HEAD = """
|
|
| 1063 |
"""
|
| 1064 |
HERO_HTML = """
|
| 1065 |
<section class="povisle-hero">
|
| 1066 |
-
<h1>
|
|
|
|
|
|
|
|
|
|
| 1067 |
<p>
|
| 1068 |
We introduce PoVisLE, a monocultural vision-language benchmark for Polish designed to evaluate
|
| 1069 |
culturally grounded multimodal understanding under a grounded evaluation paradigm, where language
|
|
|
|
| 314 |
text-transform: uppercase;
|
| 315 |
}
|
| 316 |
.povisle-hero h1 {
|
| 317 |
+
color: var(--povisle-ink) !important;
|
| 318 |
+
display: flex;
|
| 319 |
+
flex-direction: column;
|
| 320 |
+
gap: 2px;
|
| 321 |
font-family: var(--povisle-serif);
|
| 322 |
font-size: clamp(1.95rem, 4.2vw, 3.35rem);
|
| 323 |
font-weight: 600;
|
| 324 |
letter-spacing: 0;
|
| 325 |
+
line-height: 1.08;
|
| 326 |
margin: 0 auto 12px;
|
| 327 |
max-width: 820px;
|
| 328 |
}
|
| 329 |
+
.povisle-title-lead {
|
| 330 |
+
color: var(--povisle-ink) !important;
|
| 331 |
+
display: block;
|
| 332 |
+
}
|
| 333 |
+
.povisle-title-lead em {
|
| 334 |
+
color: var(--povisle-ink) !important;
|
| 335 |
font-style: italic;
|
| 336 |
}
|
| 337 |
+
.povisle-title-sub {
|
| 338 |
+
color: var(--povisle-ink) !important;
|
| 339 |
+
display: block;
|
| 340 |
+
}
|
| 341 |
+
.povisle-title-accent {
|
| 342 |
+
color: var(--povisle-accent) !important;
|
| 343 |
+
}
|
| 344 |
.povisle-hero p {
|
| 345 |
color: var(--povisle-muted);
|
| 346 |
font-size: 0.98rem;
|
|
|
|
| 643 |
background: #fff1f2 !important;
|
| 644 |
}
|
| 645 |
.povisle-section-label {
|
| 646 |
+
color: var(--povisle-accent) !important;
|
| 647 |
font-size: 0.72rem;
|
| 648 |
font-weight: 700;
|
| 649 |
letter-spacing: 0.1em;
|
| 650 |
margin-bottom: 12px;
|
| 651 |
text-transform: uppercase;
|
| 652 |
}
|
| 653 |
+
.povisle-dataset-card .povisle-section-label,
|
| 654 |
+
.povisle-examples-heading .povisle-section-label {
|
| 655 |
+
color: var(--povisle-accent) !important;
|
| 656 |
+
}
|
| 657 |
.povisle-section-title {
|
| 658 |
color: var(--povisle-ink);
|
| 659 |
font-family: var(--povisle-serif);
|
|
|
|
| 1081 |
"""
|
| 1082 |
HERO_HTML = """
|
| 1083 |
<section class="povisle-hero">
|
| 1084 |
+
<h1>
|
| 1085 |
+
<span class="povisle-title-lead"><em>Jako Tako</em> or Fluent?</span>
|
| 1086 |
+
<span class="povisle-title-sub">Presenting <span class="povisle-title-accent">PoVisLE</span></span>
|
| 1087 |
+
</h1>
|
| 1088 |
<p>
|
| 1089 |
We introduce PoVisLE, a monocultural vision-language benchmark for Polish designed to evaluate
|
| 1090 |
culturally grounded multimodal understanding under a grounded evaluation paradigm, where language
|