Skip to content

Commit 45530c1

Browse files
committed
add draft
1 parent b1f0ad3 commit 45530c1

File tree

10 files changed

+295
-38
lines changed

10 files changed

+295
-38
lines changed

website/blog/2026-02-05-fluss-for-ai.md

Lines changed: 207 additions & 0 deletions
Large diffs are not rendered by default.
1.51 MB
Loading
551 KB
Loading
225 KB
Loading
1.76 MB
Loading
78.6 KB
Loading
1.03 MB
Loading

website/src/css/custom.css

Lines changed: 79 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,30 @@
2323

2424
/* Import Inter font from Google Fonts */
2525
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
26+
/* Import 'Roboto' */
27+
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
2628

2729
/* You can override the default Infima variables here. */
2830
:root {
29-
--ifm-color-primary: #0071e3;
30-
--ifm-color-primary-dark: #0066cc;
31-
--ifm-color-primary-darker: #0060c1;
32-
--ifm-color-primary-darkest: #004f9f;
33-
--ifm-color-primary-light: #007cfa;
34-
--ifm-color-primary-lighter: #0682ff;
35-
--ifm-color-primary-lightest: #2893ff;
31+
/* Use Roboto consistently across the platform */
32+
--ifm-font-family-base: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
33+
34+
/* Increase line height for a more "airy" and professional feel */
35+
--ifm-line-height-base: 1.65;
36+
37+
/* Refine primary colors to a slightly more professional "Brand Blue" */
38+
--ifm-color-primary: #0062cc;
39+
--ifm-color-primary-dark: #0056b3;
40+
--ifm-color-primary-darker: #004d99;
41+
--ifm-color-primary-darkest: #003d7a;
42+
--ifm-color-primary-light: #1a7ae0;
43+
--ifm-color-primary-lighter: #338df2;
44+
--ifm-color-primary-lightest: #66abf7;
45+
46+
/* Adjust heading weights */
47+
--ifm-heading-font-weight: 700;
48+
3649
--ifm-code-font-size: 90%;
37-
--ifm-font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
3850
--docusaurus-highlighted-code-line-bg: #E2E9F3;
3951

4052
--ifm-menu-color-background-active: #edeefa99;
@@ -48,17 +60,27 @@
4860

4961

5062
.navbar__brand {
51-
font-family: monaco;
63+
font-family: 'Roboto', sans-serif;
64+
font-weight: 700;
65+
letter-spacing: -0.01em;
5266
color: inherit;
5367
}
5468

5569
.hero__title {
56-
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
70+
font-family: 'Roboto', sans-serif;
5771
font-weight: 700;
58-
letter-spacing: -0.03em;
72+
font-size: 3.5rem;
73+
letter-spacing: -0.02em;
74+
line-height: 1.1;
5975
}
6076

6177
.hero__subtitle {
78+
font-family: 'Roboto', sans-serif;
79+
font-weight: 400;
80+
font-size: 1.5rem;
81+
opacity: 0.9;
82+
max-width: 800px;
83+
margin: 0 auto;
6284
padding-bottom: 2rem;
6385
}
6486

@@ -81,28 +103,42 @@
81103
font-weight: 500;
82104
}
83105

106+
.menu__link {
107+
font-weight: 500;
108+
color: #57606a;
109+
}
110+
111+
.menu__link--active {
112+
color: var(--ifm-color-primary);
113+
font-weight: 600;
114+
}
115+
84116
.menu__link--sublist-caret:after {
85117
background: var(--ifm-menu-link-sublist-icon) 50% / 1.5rem 1.5rem;
86118
}
87119

88120

89121
.markdown {
90122
padding-left: 1rem;
123+
color: #24292e;
124+
91125
h1,
92126
h2,
93127
h3,
94128
h4,
95129
h5,
96130
h6 {
97-
color: #1d1d1d;
131+
font-family: 'Roboto', sans-serif;
132+
color: #1a1a1a;
98133
margin-bottom: 0.3125rem;
99134
font-weight: 700;
135+
letter-spacing: -0.01em;
100136
}
101137

102138
b,
103139
strong {
104140
font-weight: 700;
105-
color: #1d1d1d;
141+
color: #1a1a1a;
106142
}
107143

108144
h1,
@@ -129,39 +165,43 @@
129165
line-height: 1.875;
130166

131167
code {
132-
border-radius: 4px;
133-
background-color: #edf2fa;
134-
border: none;
135-
padding: 3px 4px;
136-
font-size: 14px;
137-
color: #4c576c;
138-
}
168+
font-family: 'SFMono-Regular', Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
169+
border-radius: 6px;
170+
background-color: rgba(175, 184, 193, 0.2);
171+
border: none;
172+
padding: 0.2em 0.4em;
173+
font-size: 0.9em;
174+
color: #4c576c;
175+
}
139176
}
140177

141178
li > code {
142-
border-radius: 4px;
143-
background-color: #edf2fa;
179+
font-family: 'SFMono-Regular', Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
180+
border-radius: 6px;
181+
background-color: rgba(175, 184, 193, 0.2);
144182
border: none;
145-
padding: 3px 4px;
146-
font-size: 14px;
183+
padding: 0.2em 0.4em;
184+
font-size: 0.9em;
147185
color: #4c576c;
148186
}
149187

150-
/* pre {
151-
code {
152-
padding: 0.725rem 1.25rem;
153-
background-color: #262a37;
154-
line-height: 1.875;
155-
}
156-
}*/
188+
table {
189+
display: table;
190+
width: 100%;
191+
border-collapse: separate;
192+
border-spacing: 0;
193+
border: 1px solid #e1e4e8;
194+
border-radius: 8px;
195+
overflow: hidden;
196+
}
157197

158198
table thead tr {
159-
background-color: #f7f9fe;
199+
background-color: #f6f8fa;
160200
}
161201

162202
table thead th {
163-
background-color: #f7f9fe;
164-
color: #1d1d1d;
203+
background-color: #f6f8fa;
204+
color: #1a1a1a;
165205
font-size: 1rem;
166206
font-weight: 500;
167207
}
@@ -172,11 +212,12 @@
172212
font-size: var(--global-font-size-small);
173213

174214
code {
175-
border-radius: 4px;
176-
background-color: #edf2fa;
215+
font-family: 'SFMono-Regular', Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
216+
border-radius: 6px;
217+
background-color: rgba(175, 184, 193, 0.2);
177218
border: none;
178-
padding: 3px 4px;
179-
font-size: 14px;
219+
padding: 0.2em 0.4em;
220+
font-size: 0.9em;
180221
color: #4c576c;
181222
}
182223
}

website/src/pages/index.module.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,18 +57,22 @@
5757
}
5858

5959
.heroBanner :global(.hero__title) {
60+
font-family: 'Roboto', sans-serif;
6061
font-size: 4rem;
6162
font-weight: 700;
6263
letter-spacing: -0.02em;
64+
line-height: 1.1;
6365
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
6466
}
6567

6668
.heroBanner :global(.hero__subtitle) {
69+
font-family: 'Roboto', sans-serif;
6770
font-size: 1.5rem;
6871
font-weight: 400;
6972
letter-spacing: 0.01em;
7073
text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
7174
margin-top: 1rem;
75+
opacity: 0.9;
7276
}
7377

7478
.buttons {

website/src/pages/index.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,11 @@ export default function Home(): JSX.Element {
9393
box-shadow: ${isScrolled ? 'var(--ifm-navbar-shadow)' : 'none'} !important;
9494
transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease !important;
9595
}
96+
.navbar__brand {
97+
font-family: 'Roboto', sans-serif !important;
98+
font-weight: 700 !important;
99+
letter-spacing: -0.01em !important;
100+
}
96101
.navbar__link,
97102
.navbar__brand,
98103
.navbar__brand b,

0 commit comments

Comments
 (0)