Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions website/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,11 @@ const config: Config = {
position: 'left',
label: 'Documentation',
},
{
to: '/publications',
label: 'Publications',
position: 'left',
},
{
to: '/blog',
label: 'Blog',
Expand All @@ -92,18 +97,18 @@ const config: Config = {
{
type: 'dropdown',
label: 'Community',
position: 'left',
position: 'right',
items: [
{
label: 'Team',
label: 'vLLM-SR Team',
to: '/community/team',
},
{
label: 'Work Groups',
to: '/community/work-groups',
},
{
label: 'Promotion',
label: 'Membership Promotion',
to: '/community/promotion',
},
{
Expand Down Expand Up @@ -131,7 +136,7 @@ const config: Config = {
{
type: 'dropdown',
label: 'Roadmap',
position: 'left',
position: 'right',
items: [
{
label: 'v0.1',
Expand Down
8 changes: 4 additions & 4 deletions website/src/components/TypewriterCode.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -134,12 +134,12 @@
text-align: left;
}

/* 默认深色 */
/* Default dark color */
.defaultColor {
color: #1F2328;
}

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



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

/* 响应式设计 */
/* Responsive design */
@media screen and (max-width: 768px) {
.codeBlock {
min-width: 320px;
Expand Down
38 changes: 34 additions & 4 deletions website/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -244,18 +244,48 @@ h1, h2, h3, h4, h5, h6 {
transition: color 0.3s ease;
}

h1 {
/* Temporarily disable global h1 gradient effect to fix publications page issue */
/* h1 {
background: linear-gradient(45deg, var(--tech-primary-blue), var(--tech-accent-green));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

[data-theme='dark'] h1 {
} */

/* Publications page title exception - multiple selectors ensure override */
.publications-page h1,
.publications-page .title,
.title_ruWM,
.container_hzh_ h1 {
background: none !important;
background-image: none !important;
background-color: transparent !important;
-webkit-background-clip: unset !important;
-webkit-text-fill-color: #b8860b !important;
background-clip: unset !important;
color: #b8860b !important;
}

/* Temporarily disable dark theme global h1 gradient effect to fix publications page issue */
/* [data-theme='dark'] h1 {
background: linear-gradient(45deg, var(--tech-primary-blue), var(--tech-accent-orange));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
} */

/* Publications page dark theme title exception - multiple selectors ensure override */
[data-theme='dark'] .publications-page h1,
[data-theme='dark'] .publications-page .title,
[data-theme='dark'] .title_ruWM,
[data-theme='dark'] .container_hzh_ h1 {
background: none !important;
background-image: none !important;
background-color: transparent !important;
-webkit-background-clip: unset !important;
-webkit-text-fill-color: #ffd700 !important;
background-clip: unset !important;
color: #ffd700 !important;
}

h2 {
Expand Down
Loading
Loading