Skip to content

Commit bca7446

Browse files
authored
Update and rename index.html to style
1 parent 24712a0 commit bca7446

File tree

1 file changed

+61
-70
lines changed

1 file changed

+61
-70
lines changed

index.html renamed to style

Lines changed: 61 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -37,18 +37,20 @@
3737
}
3838
[data-theme="dark"] {
3939
--bg-main: #181818;
40-
--text-main: #e5e5e5;
40+
--text-main: #1a1a1a; /* 保持文字颜色一致 */
4141
}
42+
4243
html {
4344
scroll-behavior: smooth;
4445
}
46+
4547
body {
4648
background: var(--bg-main);
4749
color: var(--text-main);
4850
font-family: "Noto Sans", sans-serif;
4951
}
5052

51-
/* Navbar fixed styling */
53+
/* Navbar 固定 */
5254
.navbar {
5355
position: sticky;
5456
top: 0;
@@ -64,41 +66,39 @@
6466
.title.is-1 {
6567
font-size: 2.5rem !important;
6668
}
67-
6869
@media (min-width: 1024px) {
6970
.title.is-1 {
7071
font-size: 3rem !important;
7172
}
7273
}
73-
7474
@media (min-width: 1440px) {
7575
.title.is-1 {
7676
font-size: 3.5rem !important;
7777
}
7878
}
7979

80-
/* Dark mode title fix */
80+
/* 深色模式标题修正 */
8181
[data-theme="dark"] .title {
8282
color: #ffffff !important;
8383
}
8484

85-
/* Dark mode fix for .hero.is-light */
85+
/* Hero is-light 深色背景修正 */
8686
[data-theme="dark"] .hero.is-light {
8787
background: #1e1e1e !important;
8888
color: #e5e5e5 !important;
8989
}
9090

91-
/* Strong/figcaption color fix for dark mode */
91+
/* 强调文字修正 */
9292
[data-theme="dark"] p strong,
9393
[data-theme="dark"] li strong,
9494
[data-theme="dark"] figcaption strong {
95-
color: #ffffff !important;
95+
color: #1a1a1a !important;
9696
}
9797
[data-theme="dark"] figcaption {
98-
color: #dcdcdc !important;
98+
color: #444 !important;
9999
}
100100

101-
/* Key Findings and Summary gradient box */
101+
/* ✅ 关键模块卡片样式统一 */
102102
.gradient-box {
103103
position: relative;
104104
color: #1a1a1a !important;
@@ -108,6 +108,7 @@
108108
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
109109
transition: all 0.2s ease;
110110
}
111+
111112
.gradient-box::before {
112113
content: "";
113114
position: absolute;
@@ -117,34 +118,31 @@
117118
mix-blend-mode: multiply;
118119
pointer-events: none;
119120
}
121+
120122
[data-theme="dark"] .gradient-box {
121-
background: #2b2b2b;
123+
background: #f5f5f5 !important;
122124
color: #1a1a1a !important;
123125
text-shadow: none !important;
124126
}
125127

126-
.gradient-box .title-inside {
127-
margin-top: 0;
128-
margin-bottom: 0.2rem;
129-
font-weight: 600;
130-
font-size: 1.15rem;
131-
line-height: 1.2;
128+
/* ✅ 保证卡片文字统一间距 */
129+
.gradient-box p strong {
130+
display: inline-block;
131+
font-size: 1.1rem;
132+
margin-top: -0.2rem;
133+
margin-bottom: 0.6rem;
132134
}
133135

134-
.gradient-box .box-body-text {
135-
margin-top: 0.4rem;
136-
line-height: 1.5;
137-
font-size: 0.98rem;
138-
}
139-
140-
/* Equal height columns for summary cards */
136+
/* ✅ 等高布局支持 */
141137
.equal-height-columns {
142138
display: flex;
143139
flex-wrap: wrap;
144140
}
141+
145142
.equal-height-columns .column {
146143
display: flex;
147144
}
145+
148146
.equal-height-columns .box {
149147
flex: 1;
150148
display: flex;
@@ -153,39 +151,43 @@
153151
min-height: 240px;
154152
}
155153

156-
/* Figure styles */
154+
/* 图片样式 */
157155
.carousel img,
158156
figure img {
159157
border-radius: 8px;
160158
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
161159
}
160+
162161
figure figcaption {
163162
margin-top: 6px;
164163
font-size: 0.8rem;
165164
color: #666;
166165
text-align: center;
167166
}
168167

169-
/* Author tooltip-style inline affiliations */
168+
/* 作者部分 */
170169
.affiliation {
171170
font-weight: normal;
172171
font-size: 0.9em;
173172
color: #888;
174173
margin-left: 4px;
175174
}
175+
176176
a[title] {
177177
text-decoration: none;
178178
border-bottom: 1px dashed #ccc;
179179
cursor: help;
180180
}
181+
181182
[data-theme="dark"] a[title] {
182183
border-bottom-color: #666;
183184
}
185+
184186
[data-theme="dark"] .affiliation {
185187
color: #aaa;
186188
}
187189

188-
/* BibTeX copy button */
190+
/* BibTeX 拷贝按钮 */
189191
.copy-btn {
190192
position: absolute;
191193
top: 8px;
@@ -199,23 +201,25 @@
199201
cursor: pointer;
200202
}
201203

202-
/* Footer in dark mode */
204+
/* Footer 深色修正 */
203205
[data-theme="dark"] .footer {
204206
background-color: #181818 !important;
205207
color: #e5e5e5 !important;
206208
}
209+
207210
[data-theme="dark"] .footer a {
208211
color: #a0c8ff !important;
209212
}
210213

211-
/* Remove underlines from #design <u> */
214+
/* 去掉 design 中下划线 */
212215
#design u {
213216
text-decoration: none;
214217
}
215218
</style>
216219

217220

218221

222+
219223
<!-- Sticky Nav -->
220224
<nav class="navbar" role="navigation">
221225
<div class="container is-max-desktop" style="justify-content:space-between">
@@ -443,55 +447,42 @@ <h4 class="title is-5">Scaling with parameters</h4>
443447
<figcaption><strong>Scaling Trend.</strong> Accuracy vs. parameter count (1&nbsp;B → 110&nbsp;B).</figcaption>
444448
</figure>
445449

446-
<!-- Result Summary -->
447-
<section class="section">
448-
<div class="container is-max-desktop">
449-
<h2 class="title is-3 has-text-centered">📌 Result Summary</h2>
450-
<div class="columns is-multiline is-centered equal-height-columns" style="margin-top: 2rem;">
451-
452-
<div class="column is-half">
453-
<div class="box gradient-box" style="background:linear-gradient(135deg,#d4eaff,#edf4ff);">
454-
<p class="title-inside">Congruency Effect</p>
455-
<p class="box-body-text">
456-
>95% models show conflict interference.<br>
457-
Stroop: t = 8.99, p &lt; 10⁻¹⁴<br>
458-
Flanker-L: t = 17.88, p &lt; 10⁻³³<br>
459-
Flanker-N: t = 16.85, p &lt; 10⁻³¹
460-
</p>
461-
</div>
450+
<!-- Result Summary Section -->
451+
<section style="margin-top: 3rem;">
452+
<h3 class="title is-4 has-text-centered">Result Summary</h3>
453+
<div class="columns is-multiline is-centered equal-height-columns">
454+
455+
<div class="column is-half">
456+
<div class="box gradient-box solid-style" style="background:#fceabb;">
457+
<p><strong>Congruency Effect</strong><br>
458+
>95% models show conflict interference.<br>
459+
Stroop: t = 8.99, p < 10⁻¹⁴<br>
460+
Flanker-L: t = 17.88, p < 10⁻³³<br>
461+
Flanker-N: t = 16.85, p < 10⁻³¹</p>
462462
</div>
463+
</div>
463464

464-
<div class="column is-half">
465-
<div class="box gradient-box" style="background:linear-gradient(135deg,#ffe9ec,#fff6f7);">
466-
<p class="title-inside">Squared Conflict</p>
467-
<p class="box-body-text">
468-
Fully-incongruent (SIRC) trials show largest drop.<br>
469-
All p &lt; 0.001
470-
</p>
471-
</div>
465+
<div class="column is-half">
466+
<div class="box gradient-box solid-style" style="background:#d5f4e6;">
467+
<p><strong>Squared Conflict</strong><br>
468+
Fully-incongruent (SIRC) trials show largest drop. All p < 0.001</p>
472469
</div>
470+
</div>
473471

474-
<div class="column is-half">
475-
<div class="box gradient-box" style="background:linear-gradient(135deg,#f2fbdc,#fafff0);">
476-
<p class="title-inside">Control Accuracy</p>
477-
<p class="box-body-text">
478-
Accuracy ≈ 85% on 238 control trials<br>
479-
(OCR, color, spatial tasks).
480-
</p>
481-
</div>
472+
<div class="column is-half">
473+
<div class="box gradient-box solid-style" style="background:#e2f0cb;">
474+
<p><strong>Control Accuracy</strong><br>
475+
Accuracy ≈ 85% on 238 control trials (OCR, color, spatial).</p>
482476
</div>
477+
</div>
483478

484-
<div class="column is-half">
485-
<div class="box gradient-box" style="background:linear-gradient(135deg,#f0e8ff,#faf5ff);">
486-
<p class="title-inside">Task Concordance</p>
487-
<p class="box-body-text">
488-
r = 0.96 between Letter-/Number-Flanker<br>
489-
→ shared bottleneck
490-
</p>
491-
</div>
479+
<div class="column is-half">
480+
<div class="box gradient-box solid-style" style="background:#fcd5ce;">
481+
<p><strong>Task Concordance</strong><br>
482+
r = 0.96 between Letter-/Number-Flanker → shared bottleneck</p>
492483
</div>
493-
494484
</div>
485+
495486
</div>
496487
</section>
497488

0 commit comments

Comments
 (0)