Skip to content

Commit 099b11f

Browse files
committed
add paper section
Signed-off-by: bitliu <[email protected]>
1 parent 1a4e1e6 commit 099b11f

File tree

5 files changed

+1235
-12
lines changed

5 files changed

+1235
-12
lines changed

website/docusaurus.config.ts

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,11 @@ const config: Config = {
8484
position: 'left',
8585
label: 'Documentation',
8686
},
87+
{
88+
to: '/publications',
89+
label: 'Publications',
90+
position: 'left',
91+
},
8792
{
8893
to: '/blog',
8994
label: 'Blog',
@@ -92,18 +97,18 @@ const config: Config = {
9297
{
9398
type: 'dropdown',
9499
label: 'Community',
95-
position: 'left',
100+
position: 'right',
96101
items: [
97102
{
98-
label: 'Team',
103+
label: 'vLLM-SR Team',
99104
to: '/community/team',
100105
},
101106
{
102107
label: 'Work Groups',
103108
to: '/community/work-groups',
104109
},
105110
{
106-
label: 'Promotion',
111+
label: 'Membership Promotion',
107112
to: '/community/promotion',
108113
},
109114
{
@@ -131,7 +136,7 @@ const config: Config = {
131136
{
132137
type: 'dropdown',
133138
label: 'Roadmap',
134-
position: 'left',
139+
position: 'right',
135140
items: [
136141
{
137142
label: 'v0.1',

website/src/components/TypewriterCode.module.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,12 +134,12 @@
134134
text-align: left;
135135
}
136136

137-
/* 默认深色 */
137+
/* Default dark color */
138138
.defaultColor {
139139
color: #1F2328;
140140
}
141141

142-
/* 特殊单词样式 */
142+
/* Special word styles */
143143
.vllmSemanticRouterColor {
144144
color: #0969DA;
145145
text-shadow: 0 0 10px rgba(9, 105, 218, 0.3);
@@ -254,9 +254,9 @@
254254

255255

256256

257-
/* 移除科技感增强效果,保持背景统一 */
257+
/* Remove tech enhancement effects, keep background unified */
258258

259-
/* 响应式设计 */
259+
/* Responsive design */
260260
@media screen and (max-width: 768px) {
261261
.codeBlock {
262262
min-width: 320px;

website/src/css/custom.css

Lines changed: 34 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -244,18 +244,48 @@ h1, h2, h3, h4, h5, h6 {
244244
transition: color 0.3s ease;
245245
}
246246

247-
h1 {
247+
/* Temporarily disable global h1 gradient effect to fix publications page issue */
248+
/* h1 {
248249
background: linear-gradient(45deg, var(--tech-primary-blue), var(--tech-accent-green));
249250
-webkit-background-clip: text;
250251
-webkit-text-fill-color: transparent;
251252
background-clip: text;
252-
}
253-
254-
[data-theme='dark'] h1 {
253+
} */
254+
255+
/* Publications page title exception - multiple selectors ensure override */
256+
.publications-page h1,
257+
.publications-page .title,
258+
.title_ruWM,
259+
.container_hzh_ h1 {
260+
background: none !important;
261+
background-image: none !important;
262+
background-color: transparent !important;
263+
-webkit-background-clip: unset !important;
264+
-webkit-text-fill-color: #b8860b !important;
265+
background-clip: unset !important;
266+
color: #b8860b !important;
267+
}
268+
269+
/* Temporarily disable dark theme global h1 gradient effect to fix publications page issue */
270+
/* [data-theme='dark'] h1 {
255271
background: linear-gradient(45deg, var(--tech-primary-blue), var(--tech-accent-orange));
256272
-webkit-background-clip: text;
257273
-webkit-text-fill-color: transparent;
258274
background-clip: text;
275+
} */
276+
277+
/* Publications page dark theme title exception - multiple selectors ensure override */
278+
[data-theme='dark'] .publications-page h1,
279+
[data-theme='dark'] .publications-page .title,
280+
[data-theme='dark'] .title_ruWM,
281+
[data-theme='dark'] .container_hzh_ h1 {
282+
background: none !important;
283+
background-image: none !important;
284+
background-color: transparent !important;
285+
-webkit-background-clip: unset !important;
286+
-webkit-text-fill-color: #ffd700 !important;
287+
background-clip: unset !important;
288+
color: #ffd700 !important;
259289
}
260290

261291
h2 {

0 commit comments

Comments
 (0)