README / index.html
xukp20's picture
fix: render organization card colors reliably
bc78423 verified
Raw
History Blame Contribute Delete
5.06 kB
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Observation-grounded benchmarks for scientific modeling and design agents.">
<title>SciModelingBench</title>
<style>
* { box-sizing: border-box; }
body {
margin: 0;
color: #20272d;
background: #fff;
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
letter-spacing: 0;
}
.shell {
width: min(1120px, calc(100% - 40px));
margin: 0 auto;
padding: 24px 0 20px;
}
.topbar {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
padding-bottom: 16px;
border-bottom: 1px solid #dce2df;
color: #5c676d;
font-size: 13px;
}
.status {
display: inline-flex;
align-items: center;
gap: 8px;
color: #087c52;
font-weight: 700;
}
.status::before {
width: 8px;
height: 8px;
border-radius: 50%;
background: #087c52;
content: "";
}
.top-links { display: flex; gap: 18px; }
a { color: inherit; text-decoration: none; }
a:hover { color: #087c52; }
.hero {
min-height: 190px;
display: grid;
grid-template-columns: 126px minmax(0, 1fr) auto;
align-items: center;
gap: 28px;
padding: 24px 0;
}
.logo {
display: block;
width: 126px;
height: 126px;
border-radius: 6px;
object-fit: cover;
}
h1 {
margin: 0;
font-size: 42px;
line-height: 1.05;
font-weight: 780;
}
.lead {
max-width: 650px;
margin: 12px 0 0;
color: #5c676d;
font-size: 17px;
line-height: 1.5;
}
.actions {
display: flex;
flex-direction: column;
gap: 9px;
min-width: 156px;
}
.button {
min-height: 40px;
padding: 9px 14px;
display: inline-flex;
align-items: center;
justify-content: center;
border: 1px solid #087c52;
border-radius: 5px;
background: #087c52;
color: #fff;
font-size: 13px;
font-weight: 700;
}
.button.secondary {
border-color: #dce2df;
background: #fff;
color: #20272d;
}
.button:hover { border-color: #066a46; background: #066a46; color: #fff; }
.button.secondary:hover { background: #f4f7f5; color: #087c52; }
.domains {
display: flex;
align-items: center;
gap: 10px;
padding-top: 16px;
border-top: 1px solid #dce2df;
overflow-x: auto;
color: #5c676d;
font-size: 12px;
white-space: nowrap;
}
.domains strong { color: #20272d; }
.separator { color: #e85643; }
@media (max-width: 760px) {
.shell { width: min(100% - 28px, 1120px); padding-top: 16px; }
.top-links a:first-child { display: none; }
.hero {
grid-template-columns: 84px minmax(0, 1fr);
gap: 18px;
padding: 20px 0;
}
.logo { width: 84px; height: 84px; }
h1 { font-size: 30px; overflow-wrap: anywhere; }
.lead { font-size: 14px; }
.actions {
grid-column: 1 / -1;
flex-direction: row;
}
.button { flex: 1; }
}
</style>
</head>
<body>
<main class="shell">
<div class="topbar">
<span class="status">Public preview</span>
<nav class="top-links" aria-label="Project links">
<a href="https://pypi.org/project/sci-modeling-bench/" target="_blank" rel="noreferrer">PyPI</a>
<a href="https://github.com/xukp20/sci-modeling-bench" target="_blank" rel="noreferrer">GitHub</a>
</nav>
</div>
<section class="hero">
<img
class="logo"
src="https://huggingface.co/spaces/sci-modeling-bench/README/resolve/main/logo.png"
alt="SciModelingBench logo"
>
<div>
<h1>SciModelingBench</h1>
<p class="lead">Observation-grounded benchmarks for scientific modeling and design agents, with explicit Dataset, Protocol, Objective, and Task interfaces.</p>
</div>
<div class="actions">
<a class="button" href="https://huggingface.co/datasets/sci-modeling-bench/design-bench" target="_top">Explore datasets</a>
<a class="button secondary" href="https://github.com/xukp20/sci-modeling-bench/tree/main/docs" target="_blank" rel="noreferrer">Documentation</a>
</div>
</section>
<div class="domains" aria-label="Available scientific domains">
<strong>8 configurations</strong>
<span class="separator">/</span>
<span>DNA binding</span>
<span class="separator">/</span>
<span>sequence design</span>
<span class="separator">/</span>
<span>materials</span>
<span class="separator">/</span>
<span>toxicology</span>
<span class="separator">/</span>
<span>NAS and control</span>
</div>
</main>
</body>
</html>