Skip to content

Commit eb71db6

Browse files
committed
feat: Update documentation design and content across all languages
- Fix header layout: center page titles and reduce header padding - Make navbar links single-line with responsive font sizing - Remove duplicate titles and descriptions from homepage and subpages - Update all language versions (EN, TR, DE, RU) with consistent content - Add interactive provider tabs for configuration pages - Improve mobile compatibility and dark theme readability - Simplify content structure and remove redundant sections
1 parent a3afe1e commit eb71db6

File tree

8 files changed

+1352
-710
lines changed

8 files changed

+1352
-710
lines changed

docs/assets/css/style.css

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,26 @@ h1, h2, h3, h4, h5, h6 {
137137
transition: var(--transition);
138138
}
139139

140+
.navbar .container {
141+
max-width: 100%;
142+
padding: 0 var(--spacing-sm);
143+
}
144+
145+
.navbar-nav {
146+
flex-wrap: nowrap;
147+
overflow-x: auto;
148+
-webkit-overflow-scrolling: touch;
149+
}
150+
151+
.navbar-nav::-webkit-scrollbar {
152+
display: none;
153+
}
154+
155+
.navbar-nav {
156+
-ms-overflow-style: none;
157+
scrollbar-width: none;
158+
}
159+
140160
[data-theme="dark"] .navbar {
141161
background: rgba(15, 23, 42, 0.95);
142162
border-bottom-color: var(--dark-border);
@@ -164,6 +184,8 @@ h1, h2, h3, h4, h5, h6 {
164184
display: flex;
165185
align-items: center;
166186
gap: var(--spacing-xs);
187+
white-space: nowrap;
188+
font-size: 0.9rem;
167189
}
168190

169191
[data-theme="dark"] .navbar-nav .nav-link {
@@ -189,8 +211,9 @@ h1, h2, h3, h4, h5, h6 {
189211
/* Page Header */
190212
.page-header {
191213
background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
192-
padding: var(--spacing-2xl) 0;
214+
padding: var(--spacing-lg) 0;
193215
border-bottom: 1px solid var(--gray-200);
216+
text-align: center;
194217
}
195218

196219
[data-theme="dark"] .page-header {
@@ -203,6 +226,7 @@ h1, h2, h3, h4, h5, h6 {
203226
font-weight: 700;
204227
color: var(--gray-900);
205228
margin-bottom: var(--spacing-sm);
229+
text-align: center;
206230
}
207231

208232
[data-theme="dark"] .page-title {
@@ -1114,6 +1138,12 @@ h1, h2, h3, h4, h5, h6 {
11141138

11151139
/* Responsive Design */
11161140
@media (max-width: 991.98px) {
1141+
.navbar-nav .nav-link {
1142+
font-size: 0.85rem;
1143+
padding: var(--spacing-xs) 0.5rem !important;
1144+
margin: 0 0.25rem;
1145+
}
1146+
11171147
.hero-title {
11181148
font-size: 2.5rem;
11191149
}
@@ -1132,6 +1162,16 @@ h1, h2, h3, h4, h5, h6 {
11321162
}
11331163

11341164
@media (max-width: 767.98px) {
1165+
.navbar-nav .nav-link {
1166+
font-size: 0.8rem;
1167+
padding: var(--spacing-xs) 0.25rem !important;
1168+
margin: 0 0.1rem;
1169+
}
1170+
1171+
.navbar-nav .nav-link i {
1172+
display: none;
1173+
}
1174+
11351175
.main-content {
11361176
margin-top: 70px;
11371177
}

0 commit comments

Comments
 (0)