Fix static preview H1 contrast
Browse filesSet the Quran Lab H1 color explicitly in the static Space preview so the organization card title renders high contrast instead of pale grey on cream.
- index.html +14 -1
index.html
CHANGED
|
@@ -24,8 +24,21 @@
|
|
| 24 |
}
|
| 25 |
h1 {
|
| 26 |
margin: 0 0 12px;
|
|
|
|
| 27 |
font-size: clamp(42px, 8vw, 80px);
|
|
|
|
| 28 |
letter-spacing: -0.06em;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
}
|
| 30 |
p {
|
| 31 |
margin: 0 0 28px;
|
|
@@ -52,7 +65,7 @@
|
|
| 52 |
</head>
|
| 53 |
<body>
|
| 54 |
<main>
|
| 55 |
-
<h1>Quran Lab</h1>
|
| 56 |
<p>Open infrastructure for Quranic speech recognition, evaluation, and reproducible Arabic ASR research.</p>
|
| 57 |
<a href="https://huggingface.co/datasets/Quran-Lab/quranic-asr-benchmark">Benchmark</a>
|
| 58 |
<a class="secondary" href="https://huggingface.co/datasets/Quran-Lab/quranic-asr-cloud-rawdata">Cloud ASR Raw Data</a>
|
|
|
|
| 24 |
}
|
| 25 |
h1 {
|
| 26 |
margin: 0 0 12px;
|
| 27 |
+
color: #003f37 !important;
|
| 28 |
font-size: clamp(42px, 8vw, 80px);
|
| 29 |
+
font-weight: 900;
|
| 30 |
letter-spacing: -0.06em;
|
| 31 |
+
line-height: 0.95;
|
| 32 |
+
text-shadow: 0 2px 0 rgba(232, 199, 116, 0.55);
|
| 33 |
+
}
|
| 34 |
+
h1::after {
|
| 35 |
+
content: "";
|
| 36 |
+
display: block;
|
| 37 |
+
width: min(220px, 55%);
|
| 38 |
+
height: 8px;
|
| 39 |
+
margin-top: 18px;
|
| 40 |
+
border-radius: 999px;
|
| 41 |
+
background: #e8c774;
|
| 42 |
}
|
| 43 |
p {
|
| 44 |
margin: 0 0 28px;
|
|
|
|
| 65 |
</head>
|
| 66 |
<body>
|
| 67 |
<main>
|
| 68 |
+
<h1 style="color: #003f37 !important;">Quran Lab</h1>
|
| 69 |
<p>Open infrastructure for Quranic speech recognition, evaluation, and reproducible Arabic ASR research.</p>
|
| 70 |
<a href="https://huggingface.co/datasets/Quran-Lab/quranic-asr-benchmark">Benchmark</a>
|
| 71 |
<a class="secondary" href="https://huggingface.co/datasets/Quran-Lab/quranic-asr-cloud-rawdata">Cloud ASR Raw Data</a>
|