Spaces:
Running
Running
Update index.html
Browse files- index.html +18 -2
index.html
CHANGED
|
@@ -6,6 +6,7 @@
|
|
| 6 |
<title>StatProver - Automated Statistical Proof Assistant</title>
|
| 7 |
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
|
| 8 |
<style>
|
|
|
|
| 9 |
:root {
|
| 10 |
--primary: #059669; /* 提取自你 Logo 的科技绿 */
|
| 11 |
--primary-dark: #047857;
|
|
@@ -20,6 +21,7 @@
|
|
| 20 |
margin: 0;
|
| 21 |
padding: 0;
|
| 22 |
line-height: 1.7;
|
|
|
|
| 23 |
}
|
| 24 |
|
| 25 |
/* 👇 头部居中区域 (Hero Section) */
|
|
@@ -98,6 +100,16 @@
|
|
| 98 |
/* 优化代码块显示 */
|
| 99 |
pre { background: #f3f4f6; padding: 15px; border-radius: 8px; overflow-x: auto; }
|
| 100 |
code { font-family: ui-monospace, monospace; font-size: 0.9em; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 101 |
</style>
|
| 102 |
</head>
|
| 103 |
<body>
|
|
@@ -108,8 +120,12 @@
|
|
| 108 |
<h1>StatProver</h1>
|
| 109 |
|
| 110 |
<p class="subtitle">
|
| 111 |
-
|
| 112 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 113 |
|
| 114 |
<a href="https://statprover.com" target="_blank" class="cta-button">
|
| 115 |
Launch StatProver
|
|
|
|
| 6 |
<title>StatProver - Automated Statistical Proof Assistant</title>
|
| 7 |
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
|
| 8 |
<style>
|
| 9 |
+
|
| 10 |
:root {
|
| 11 |
--primary: #059669; /* 提取自你 Logo 的科技绿 */
|
| 12 |
--primary-dark: #047857;
|
|
|
|
| 21 |
margin: 0;
|
| 22 |
padding: 0;
|
| 23 |
line-height: 1.7;
|
| 24 |
+
font-size: 18px;
|
| 25 |
}
|
| 26 |
|
| 27 |
/* 👇 头部居中区域 (Hero Section) */
|
|
|
|
| 100 |
/* 优化代码块显示 */
|
| 101 |
pre { background: #f3f4f6; padding: 15px; border-radius: 8px; overflow-x: auto; }
|
| 102 |
code { font-family: ui-monospace, monospace; font-size: 0.9em; }
|
| 103 |
+
|
| 104 |
+
/* 限制 Markdown 里的图片大小 */
|
| 105 |
+
.content-container img {
|
| 106 |
+
max-width: 100%; /* 宽度绝不超过容器 */
|
| 107 |
+
height: auto; /* 高度等比缩放 */
|
| 108 |
+
border-radius: 8px; /* 加一点圆角更好看 */
|
| 109 |
+
box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* 加一点淡淡的阴影,更有质感 */
|
| 110 |
+
margin: 20px 0; /* 上下留白 */
|
| 111 |
+
display: block; /* 避免和文字挤在一起 */
|
| 112 |
+
}
|
| 113 |
</style>
|
| 114 |
</head>
|
| 115 |
<body>
|
|
|
|
| 120 |
<h1>StatProver</h1>
|
| 121 |
|
| 122 |
<p class="subtitle">
|
| 123 |
+
An Automated Statistical Proof Assistant developed by
|
| 124 |
+
<a href="https://statai-lab.github.io/" target="_blank" style="color: var(--primary); font-weight: 600; text-decoration: none;">StatAI Lab</a>,
|
| 125 |
+
led by
|
| 126 |
+
<a href="https://mlzxzhou.github.io/" target="_blank" style="color: var(--primary); font-weight: 600; text-decoration: none;">Prof. Fan Zhou</a>
|
| 127 |
+
at the School of Statistics and Data Science, Shanghai University of Finance and Economics.
|
| 128 |
+
</p>
|
| 129 |
|
| 130 |
<a href="https://statprover.com" target="_blank" class="cta-button">
|
| 131 |
Launch StatProver
|