VyLala commited on
Commit
7c24f84
·
verified ·
1 Parent(s): 7269e3b

Update better_offer.html

Browse files
Files changed (1) hide show
  1. better_offer.html +51 -36
better_offer.html CHANGED
@@ -1,37 +1,52 @@
1
- <body style="background:#ffffff; margin:0; padding:0;">
2
- <div style="background:#ffffff; padding:0; margin:0;">
3
- <style>
4
- /* Force text color on all children */
5
- #classifier-page,
6
- #classifier-page h1,
7
- #classifier-page h2,
8
- #classifier-page h3,
9
- #classifier-page p,
10
- #classifier-page li,
11
- #classifier-page span,
12
- #classifier-page em,
13
- #classifier-page strong,
14
- #classifier-page td,
15
- #classifier-page th {
16
- color: #0f172a !important;
17
- background: #ffffff !important;
18
- }
19
- </style>
20
-
21
- <div id="classifier-page" style="font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
22
- line-height:1.6;
23
- background-color:#ffffff;
24
- max-width:900px;
25
- margin:24px auto;
26
- padding:28px 20px;
27
- border-radius:12px;
28
- box-shadow:0 2px 8px rgba(0,0,0,0.05);">
29
- <!-- Header -->
30
- <h1 style="margin:0 0 8px; font-size:32px;">mtDNA Location Classifier</h1>
31
- <p style="margin:0 0 16px; font-size:18px; color:#334155;">
32
- <strong>AI + Human Intelligence, working together.</strong><br>
33
- The tool suggests structured labels fast — you decide which ones to trust and refine.
34
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
 
36
  <div style="display:flex; gap:8px; flex-wrap:wrap; margin:12px 0 24px;">
37
  <span style="background:#eef2ff; color:#3730a3; padding:6px 10px; border-radius:999px; font-size:12px;">84% country accuracy (n=4,934)</span>
@@ -175,5 +190,5 @@
175
  Rebuild trust in genomic metadata—one mtDNA sample at a time—through transparency, citations, and a tight feedback loop with researchers.
176
  </p>
177
  </div>
178
- </div>
179
- </body>
 
1
+
2
+ <html>
3
+ <head>
4
+ <meta name="color-scheme" content="light">
5
+ <style>
6
+ html, body {
7
+ background: #ffffff !important;
8
+ color: #0f172a !important;
9
+ margin: 0;
10
+ padding: 0;
11
+ }
12
+ * {
13
+ color-scheme: only light;
14
+ }
15
+
16
+ /* Force text color inside your page */
17
+ #classifier-page,
18
+ #classifier-page h1,
19
+ #classifier-page h2,
20
+ #classifier-page h3,
21
+ #classifier-page p,
22
+ #classifier-page li,
23
+ #classifier-page span,
24
+ #classifier-page em,
25
+ #classifier-page strong,
26
+ #classifier-page td,
27
+ #classifier-page th {
28
+ color: #0f172a !important;
29
+ background: #ffffff !important;
30
+ }
31
+ </style>
32
+ </head>
33
+
34
+ <body>
35
+ <div id="classifier-page" style="font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
36
+ line-height:1.6;
37
+ background-color:#ffffff;
38
+ max-width:900px;
39
+ margin:24px auto;
40
+ padding:28px 20px;
41
+ border-radius:12px;
42
+ box-shadow:0 2px 8px rgba(0,0,0,0.05);">
43
+
44
+ <!-- Header -->
45
+ <h1 style="margin:0 0 8px; font-size:32px;">mtDNA Location Classifier</h1>
46
+ <p style="margin:0 0 16px; font-size:18px; color:#334155;">
47
+ <strong>AI + Human Intelligence, working together.</strong><br>
48
+ The tool suggests structured labels fast — you decide which ones to trust and refine.
49
+ </p>
50
 
51
  <div style="display:flex; gap:8px; flex-wrap:wrap; margin:12px 0 24px;">
52
  <span style="background:#eef2ff; color:#3730a3; padding:6px 10px; border-radius:999px; font-size:12px;">84% country accuracy (n=4,934)</span>
 
190
  Rebuild trust in genomic metadata—one mtDNA sample at a time—through transparency, citations, and a tight feedback loop with researchers.
191
  </p>
192
  </div>
193
+ </body>
194
+ </html>