@mgks/docmd 0.3.7 → 0.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/README.md +61 -63
- package/bin/docmd.js +13 -16
- package/bin/postinstall.js +4 -4
- package/package.json +12 -10
- package/src/assets/css/docmd-highlight-dark.css +86 -1
- package/src/assets/css/docmd-highlight-light.css +86 -1
- package/src/assets/css/docmd-main.css +544 -464
- package/src/assets/css/docmd-theme-retro.css +105 -106
- package/src/assets/css/docmd-theme-ruby.css +92 -92
- package/src/assets/css/docmd-theme-sky.css +63 -64
- package/src/assets/favicon.ico +0 -0
- package/src/assets/images/docmd-logo-dark.png +0 -0
- package/src/assets/images/docmd-logo-light.png +0 -0
- package/src/assets/js/docmd-image-lightbox.js +2 -2
- package/src/assets/js/docmd-main.js +1 -1
- package/src/assets/js/docmd-mermaid.js +1 -1
- package/src/assets/js/docmd-search.js +1 -1
- package/src/commands/build.js +71 -370
- package/src/commands/dev.js +141 -80
- package/src/commands/init.js +107 -132
- package/src/commands/live.js +145 -0
- package/src/core/asset-manager.js +72 -0
- package/src/core/config-loader.js +2 -2
- package/src/core/config-validator.js +1 -1
- package/src/core/file-processor.js +13 -9
- package/src/core/fs-utils.js +40 -0
- package/src/core/html-formatter.js +97 -0
- package/src/core/html-generator.js +61 -65
- package/src/core/icon-renderer.js +1 -1
- package/src/core/logger.js +1 -1
- package/src/core/markdown/containers.js +1 -1
- package/src/core/markdown/renderers.js +1 -1
- package/src/core/markdown/rules.js +1 -2
- package/src/core/markdown/setup.js +1 -1
- package/src/core/navigation-helper.js +1 -1
- package/src/index.js +12 -0
- package/src/live/core.js +5 -1
- package/src/live/index.html +16 -1
- package/src/live/live.css +157 -68
- package/src/plugins/analytics.js +1 -1
- package/src/plugins/seo.js +26 -36
- package/src/plugins/sitemap.js +2 -2
- package/src/templates/layout.ejs +50 -81
- package/src/templates/navigation.ejs +23 -76
- package/src/templates/no-style.ejs +115 -129
- package/src/templates/partials/theme-init.js +1 -1
- package/src/templates/toc.ejs +6 -35
- package/dist/assets/css/docmd-highlight-dark.css +0 -1
- package/dist/assets/css/docmd-highlight-light.css +0 -1
- package/dist/assets/css/docmd-main.css +0 -1627
- package/dist/assets/css/docmd-theme-retro.css +0 -868
- package/dist/assets/css/docmd-theme-ruby.css +0 -629
- package/dist/assets/css/docmd-theme-sky.css +0 -618
- package/dist/assets/favicon.ico +0 -0
- package/dist/assets/images/docmd-logo-dark.png +0 -0
- package/dist/assets/images/docmd-logo-light.png +0 -0
- package/dist/assets/images/docmd-logo.png +0 -0
- package/dist/assets/js/docmd-image-lightbox.js +0 -74
- package/dist/assets/js/docmd-main.js +0 -222
- package/dist/assets/js/docmd-mermaid.js +0 -205
- package/dist/assets/js/docmd-search.js +0 -218
- package/dist/assets/js/mermaid.min.js +0 -2811
- package/dist/assets/js/minisearch.js +0 -2013
- package/dist/docmd-live.js +0 -30748
- package/dist/index.html +0 -201
- package/dist/live.css +0 -167
- package/docmd.config.js +0 -175
- package/scripts/build-live.js +0 -157
- package/scripts/failsafe.js +0 -37
- package/scripts/test-live.js +0 -54
- package/src/assets/images/docmd-logo.png +0 -0
- package/src/live/templates.js +0 -9
|
@@ -1,19 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
content: counter(list-counter) ".";
|
|
3
|
-
font-weight: 700;
|
|
4
|
-
margin-right: 0.5em;
|
|
5
|
-
color: var(--accent-color, #007acc);
|
|
6
|
-
}
|
|
1
|
+
/* Source file from the docmd project — https://github.com/docmd-io/docmd */
|
|
7
2
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
3
|
+
/*
|
|
4
|
+
* docmd-main.css
|
|
5
|
+
* Main CSS styles for the docmd generated site.
|
|
6
|
+
*/
|
|
11
7
|
|
|
12
8
|
:root {
|
|
13
9
|
--font-family-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
14
|
-
--font-family-mono:
|
|
15
|
-
--bg-color: #
|
|
16
|
-
--text-color: #
|
|
10
|
+
--font-family-mono: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
|
11
|
+
--bg-color: #fff;
|
|
12
|
+
--text-color: #333;
|
|
17
13
|
--sidebar-bg: #f4f7f9;
|
|
18
14
|
--sidebar-text: #2c3e50;
|
|
19
15
|
--sidebar-link-active-bg: #e0e7ec;
|
|
@@ -22,19 +18,19 @@
|
|
|
22
18
|
--border-color: #e0e0e0;
|
|
23
19
|
--code-bg: #f8f8f8;
|
|
24
20
|
--code-text: #333;
|
|
25
|
-
--header-bg: #
|
|
21
|
+
--header-bg: #fff;
|
|
26
22
|
--header-border: #e0e0e0;
|
|
27
23
|
--image-border-color: #e0e0e0;
|
|
28
|
-
--image-shadow: 0 2px 8px
|
|
24
|
+
--image-shadow: 0 2px 8px #0000001a;
|
|
29
25
|
--image-caption-bg: #f8f8f8;
|
|
30
26
|
--image-caption-text: #666;
|
|
31
|
-
--lightbox-bg:
|
|
27
|
+
--lightbox-bg: #000000e6;
|
|
32
28
|
--lightbox-text: #fff;
|
|
33
29
|
--accent-color: #858585;
|
|
34
|
-
--white: #
|
|
30
|
+
--white: #fff
|
|
35
31
|
}
|
|
36
32
|
|
|
37
|
-
:root[data-theme=
|
|
33
|
+
:root[data-theme=dark] {
|
|
38
34
|
--bg-color: #1a1a1a;
|
|
39
35
|
--text-color: #e0e0e0;
|
|
40
36
|
--sidebar-bg: #2c2c2c;
|
|
@@ -42,36 +38,37 @@
|
|
|
42
38
|
--sidebar-link-active-bg: #3a3a3a;
|
|
43
39
|
--sidebar-link-active-parent-bg: #343434;
|
|
44
40
|
--link-color: #58a6ff;
|
|
45
|
-
--border-color: #
|
|
41
|
+
--border-color: #444;
|
|
46
42
|
--code-bg: #282c34;
|
|
47
43
|
--code-text: #abb2bf;
|
|
48
44
|
--header-bg: #1a1a1a;
|
|
49
|
-
--header-border: #
|
|
50
|
-
--image-border-color: #
|
|
51
|
-
--image-shadow: 0 2px 8px
|
|
45
|
+
--header-border: #444;
|
|
46
|
+
--image-border-color: #444;
|
|
47
|
+
--image-shadow: 0 2px 8px #0000004d;
|
|
52
48
|
--image-caption-bg: #2c2c2c;
|
|
53
49
|
--image-caption-text: #bdc3c7;
|
|
54
|
-
--lightbox-bg:
|
|
55
|
-
--lightbox-text: #fff
|
|
50
|
+
--lightbox-bg: #000000f2;
|
|
51
|
+
--lightbox-text: #fff
|
|
56
52
|
}
|
|
57
53
|
|
|
58
54
|
body {
|
|
59
55
|
font-family: var(--font-family-sans);
|
|
60
56
|
background-color: var(--bg-color);
|
|
61
57
|
color: var(--text-color);
|
|
62
|
-
margin:
|
|
58
|
+
margin: 0;
|
|
63
59
|
display: flex;
|
|
64
60
|
min-height: 100vh;
|
|
65
|
-
line-height: 1.6
|
|
61
|
+
line-height: 1.6
|
|
66
62
|
}
|
|
67
63
|
|
|
68
|
-
code,
|
|
64
|
+
code,
|
|
65
|
+
pre {
|
|
69
66
|
font-family: var(--font-family-mono);
|
|
70
|
-
background-color: var(--code-bg)
|
|
67
|
+
background-color: var(--code-bg)
|
|
71
68
|
}
|
|
72
69
|
|
|
73
70
|
a:any-link {
|
|
74
|
-
color: var(--link-color)
|
|
71
|
+
color: var(--link-color)
|
|
75
72
|
}
|
|
76
73
|
|
|
77
74
|
.sidebar {
|
|
@@ -82,25 +79,25 @@ a:any-link {
|
|
|
82
79
|
border-right: 1px solid var(--border-color);
|
|
83
80
|
height: 100vh;
|
|
84
81
|
position: fixed;
|
|
85
|
-
top:
|
|
86
|
-
left:
|
|
82
|
+
top: 0;
|
|
83
|
+
left: 0;
|
|
87
84
|
overflow-y: auto;
|
|
88
85
|
box-sizing: border-box;
|
|
89
|
-
flex-shrink: 0
|
|
86
|
+
flex-shrink: 0
|
|
90
87
|
}
|
|
91
88
|
|
|
92
89
|
.sidebar h1 {
|
|
93
90
|
font-size: 1.5em;
|
|
94
|
-
margin-top:
|
|
91
|
+
margin-top: 0;
|
|
95
92
|
margin-bottom: 20px;
|
|
96
93
|
padding-bottom: 10px;
|
|
97
|
-
border-bottom: 1px solid var(--border-color)
|
|
94
|
+
border-bottom: 1px solid var(--border-color)
|
|
98
95
|
}
|
|
99
96
|
|
|
100
97
|
.sidebar nav ul {
|
|
101
98
|
list-style: none;
|
|
102
|
-
padding:
|
|
103
|
-
margin:
|
|
99
|
+
padding: 0;
|
|
100
|
+
margin: 0
|
|
104
101
|
}
|
|
105
102
|
|
|
106
103
|
.sidebar nav li a {
|
|
@@ -109,76 +106,105 @@ a:any-link {
|
|
|
109
106
|
text-decoration: none;
|
|
110
107
|
color: var(--sidebar-text);
|
|
111
108
|
border-radius: 4px;
|
|
112
|
-
transition: background-color
|
|
109
|
+
transition: background-color .2s
|
|
113
110
|
}
|
|
114
111
|
|
|
115
|
-
.copy-code-button:hover,
|
|
116
|
-
|
|
112
|
+
.copy-code-button:hover,
|
|
113
|
+
.docmd-tabs-nav-item:hover,
|
|
114
|
+
.sidebar nav li a.active,
|
|
115
|
+
.sidebar nav li a:hover,
|
|
116
|
+
.theme-toggle-button:hover {
|
|
117
|
+
background-color: var(--sidebar-link-active-bg)
|
|
117
118
|
}
|
|
118
119
|
|
|
119
120
|
.sidebar nav li a.active {
|
|
120
121
|
font-weight: 600;
|
|
121
|
-
color: var(--link-color)
|
|
122
|
+
color: var(--link-color)
|
|
122
123
|
}
|
|
123
124
|
|
|
124
|
-
.sidebar nav li.active-parent
|
|
125
|
+
.sidebar nav li.active-parent>a {
|
|
125
126
|
background-color: var(--sidebar-link-active-parent-bg);
|
|
126
127
|
font-weight: 500;
|
|
127
|
-
position: relative
|
|
128
|
+
position: relative
|
|
128
129
|
}
|
|
129
130
|
|
|
130
|
-
.sidebar nav li.active-parent
|
|
131
|
+
.sidebar nav li.active-parent>a::before {
|
|
131
132
|
content: "";
|
|
132
133
|
position: absolute;
|
|
133
|
-
left:
|
|
134
|
-
top:
|
|
135
|
-
bottom:
|
|
134
|
+
left: 0;
|
|
135
|
+
top: 0;
|
|
136
|
+
bottom: 0;
|
|
136
137
|
width: 3px;
|
|
137
138
|
background-color: var(--link-color);
|
|
138
|
-
opacity:
|
|
139
|
+
opacity: .5
|
|
139
140
|
}
|
|
140
141
|
|
|
141
|
-
.copy-code-button:hover,
|
|
142
|
-
|
|
142
|
+
.copy-code-button:hover,
|
|
143
|
+
.sidebar nav li.active-parent>a.active::before,
|
|
144
|
+
div:hover>.copy-code-button {
|
|
145
|
+
opacity: 1
|
|
143
146
|
}
|
|
144
147
|
|
|
145
148
|
.sidebar nav ul ul {
|
|
146
149
|
padding-left: 20px;
|
|
147
|
-
margin-top: 5px
|
|
150
|
+
margin-top: 5px
|
|
148
151
|
}
|
|
149
152
|
|
|
150
153
|
.sidebar-toggle-button {
|
|
151
|
-
background:
|
|
154
|
+
background: 0 0;
|
|
152
155
|
border: 1px solid transparent;
|
|
153
156
|
color: var(--text-color);
|
|
154
157
|
cursor: pointer;
|
|
155
|
-
padding:
|
|
156
|
-
margin:
|
|
158
|
+
padding: 0;
|
|
159
|
+
margin: .5em 0 0;
|
|
157
160
|
display: none;
|
|
158
|
-
border-radius: 4px
|
|
161
|
+
border-radius: 4px
|
|
159
162
|
}
|
|
160
163
|
|
|
161
164
|
.sidebar-toggle-button:hover {
|
|
162
165
|
background-color: var(--sidebar-bg);
|
|
163
|
-
border-color: var(--border-color)
|
|
166
|
+
border-color: var(--border-color)
|
|
164
167
|
}
|
|
165
168
|
|
|
166
169
|
.sidebar-toggle-button .lucide-icon {
|
|
167
170
|
width: 2em;
|
|
168
|
-
height: 2em
|
|
171
|
+
height: 2em
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.docmd-container.steps-reset .docmd-container.steps-reset ol.steps-list>li.step-item::before,
|
|
175
|
+
.docmd-container.steps-reset ol.steps-list>li.step-item::before,
|
|
176
|
+
.docmd-container.steps-reset ol.steps-list[start]>li.step-item::before {
|
|
177
|
+
content: counter(list-counter) ".";
|
|
178
|
+
font-weight: 700;
|
|
179
|
+
margin-right: .5em;
|
|
180
|
+
color: var(--accent-color, #007acc)
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.docmd-tab-pane.active,
|
|
184
|
+
.logo-link img,
|
|
185
|
+
.logo-link img.logo-light,
|
|
186
|
+
.tab-panel.active,
|
|
187
|
+
.theme-toggle-button .icon-sun,
|
|
188
|
+
body.sidebar-collapsible .sidebar-toggle-button,
|
|
189
|
+
html[data-theme=dark] .logo-link img.logo-dark,
|
|
190
|
+
html[data-theme=dark] .theme-toggle-button .icon-moon,
|
|
191
|
+
img {
|
|
192
|
+
display: block
|
|
169
193
|
}
|
|
170
194
|
|
|
171
195
|
body.sidebar-collapsed .sidebar {
|
|
172
196
|
transform: translateX(-100%);
|
|
173
|
-
visibility: hidden
|
|
197
|
+
visibility: hidden
|
|
174
198
|
}
|
|
175
199
|
|
|
176
|
-
.toc-level-2,
|
|
177
|
-
|
|
200
|
+
.toc-level-2,
|
|
201
|
+
body.sidebar-collapsed .main-content-wrapper {
|
|
202
|
+
margin-left: 0
|
|
178
203
|
}
|
|
179
204
|
|
|
180
|
-
.main-content-wrapper,
|
|
181
|
-
|
|
205
|
+
.main-content-wrapper,
|
|
206
|
+
.sidebar {
|
|
207
|
+
transition: transform .3s, margin-left .3s, visibility .3s
|
|
182
208
|
}
|
|
183
209
|
|
|
184
210
|
.main-content-wrapper {
|
|
@@ -186,12 +212,13 @@ body.sidebar-collapsed .sidebar {
|
|
|
186
212
|
flex-grow: 1;
|
|
187
213
|
display: flex;
|
|
188
214
|
flex-direction: column;
|
|
189
|
-
overflow: hidden
|
|
215
|
+
overflow: hidden
|
|
190
216
|
}
|
|
191
217
|
|
|
192
|
-
.header-left,
|
|
218
|
+
.header-left,
|
|
219
|
+
.page-header {
|
|
193
220
|
align-items: center;
|
|
194
|
-
display: flex
|
|
221
|
+
display: flex
|
|
195
222
|
}
|
|
196
223
|
|
|
197
224
|
.page-header {
|
|
@@ -199,47 +226,50 @@ body.sidebar-collapsed .sidebar {
|
|
|
199
226
|
border-bottom: 1px solid var(--header-border);
|
|
200
227
|
background-color: var(--header-bg);
|
|
201
228
|
justify-content: space-between;
|
|
202
|
-
min-height: 2.5em
|
|
229
|
+
min-height: 2.5em
|
|
203
230
|
}
|
|
204
231
|
|
|
205
232
|
.header-left {
|
|
206
|
-
gap: 15px
|
|
233
|
+
gap: 15px
|
|
207
234
|
}
|
|
208
235
|
|
|
209
236
|
.header-right {
|
|
210
237
|
display: flex;
|
|
211
|
-
align-items: center
|
|
238
|
+
align-items: center
|
|
212
239
|
}
|
|
213
240
|
|
|
214
241
|
.page-header h1 {
|
|
215
|
-
margin:
|
|
216
|
-
font-size: 1.8em
|
|
242
|
+
margin: 0;
|
|
243
|
+
font-size: 1.8em
|
|
217
244
|
}
|
|
218
245
|
|
|
219
|
-
.docmd-search-trigger,
|
|
246
|
+
.docmd-search-trigger,
|
|
247
|
+
.theme-toggle-header {
|
|
220
248
|
padding: 8px;
|
|
221
249
|
background: var(--content-bg);
|
|
222
250
|
border: 1px solid var(--border-color);
|
|
223
251
|
border-radius: 6px;
|
|
224
252
|
cursor: pointer;
|
|
225
|
-
transition:
|
|
253
|
+
transition: .2s
|
|
226
254
|
}
|
|
227
255
|
|
|
228
|
-
.docmd-search-trigger:hover,
|
|
256
|
+
.docmd-search-trigger:hover,
|
|
257
|
+
.theme-toggle-header:hover {
|
|
229
258
|
background: var(--sidebar-bg);
|
|
230
|
-
border-color: var(--accent-color)
|
|
259
|
+
border-color: var(--accent-color)
|
|
231
260
|
}
|
|
232
261
|
|
|
233
|
-
.card .card-title,
|
|
234
|
-
|
|
262
|
+
.card .card-title,
|
|
263
|
+
.sidebar-header {
|
|
264
|
+
border-bottom: 1px solid var(--border-color)
|
|
235
265
|
}
|
|
236
266
|
|
|
237
267
|
.content-area {
|
|
238
268
|
padding: 2.5rem 2rem;
|
|
239
269
|
max-width: 1200px;
|
|
240
|
-
margin:
|
|
270
|
+
margin: 0 auto;
|
|
241
271
|
width: 100%;
|
|
242
|
-
box-sizing: border-box
|
|
272
|
+
box-sizing: border-box
|
|
243
273
|
}
|
|
244
274
|
|
|
245
275
|
pre {
|
|
@@ -248,107 +278,111 @@ pre {
|
|
|
248
278
|
border-radius: 4px;
|
|
249
279
|
overflow-x: auto;
|
|
250
280
|
position: relative;
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
pre {
|
|
254
|
-
margin: 1.5em 0px;
|
|
281
|
+
margin: 1.5em 0;
|
|
255
282
|
border-radius: 8px;
|
|
256
283
|
box-shadow: var(--shadow-sm);
|
|
257
284
|
background-color: var(--code-bg);
|
|
258
285
|
padding: 1.25em;
|
|
259
286
|
color: var(--code-text);
|
|
260
287
|
overflow-x: auto;
|
|
261
|
-
position: relative
|
|
288
|
+
position: relative
|
|
262
289
|
}
|
|
263
290
|
|
|
264
291
|
code {
|
|
265
|
-
padding:
|
|
292
|
+
padding: .2em .4em;
|
|
266
293
|
border-radius: 3px;
|
|
267
|
-
font-size:
|
|
294
|
+
font-size: .9em
|
|
268
295
|
}
|
|
269
296
|
|
|
270
297
|
pre code {
|
|
271
298
|
background-color: transparent;
|
|
272
|
-
padding:
|
|
273
|
-
font-size: inherit
|
|
299
|
+
padding: 0;
|
|
300
|
+
font-size: inherit
|
|
274
301
|
}
|
|
275
302
|
|
|
276
303
|
.table-wrapper {
|
|
277
304
|
display: block;
|
|
278
305
|
width: 100%;
|
|
279
306
|
overflow-x: auto;
|
|
280
|
-
margin: 1.5em
|
|
307
|
+
margin: 1.5em 0;
|
|
281
308
|
border-radius: 8px;
|
|
282
|
-
box-shadow: var(--shadow-sm)
|
|
309
|
+
box-shadow: var(--shadow-sm)
|
|
283
310
|
}
|
|
284
311
|
|
|
285
312
|
table {
|
|
286
313
|
width: 100%;
|
|
287
314
|
border-collapse: separate;
|
|
288
|
-
border-spacing:
|
|
289
|
-
margin:
|
|
315
|
+
border-spacing: 0;
|
|
316
|
+
margin: 0
|
|
290
317
|
}
|
|
291
318
|
|
|
292
319
|
th {
|
|
293
320
|
text-align: left;
|
|
294
321
|
font-weight: 600;
|
|
295
|
-
padding:
|
|
322
|
+
padding: .75rem 1rem;
|
|
296
323
|
border-bottom: 1px solid var(--border-color);
|
|
297
324
|
background-color: var(--sidebar-bg);
|
|
298
|
-
white-space: nowrap
|
|
325
|
+
white-space: nowrap
|
|
299
326
|
}
|
|
300
327
|
|
|
301
328
|
td {
|
|
302
|
-
padding:
|
|
303
|
-
border-bottom: 1px solid var(--border-color)
|
|
329
|
+
padding: .75rem 1rem;
|
|
330
|
+
border-bottom: 1px solid var(--border-color)
|
|
304
331
|
}
|
|
305
332
|
|
|
306
333
|
tr:last-child td {
|
|
307
334
|
border-bottom-width: medium;
|
|
308
335
|
border-bottom-style: none;
|
|
309
|
-
border-bottom-color: currentcolor
|
|
336
|
+
border-bottom-color: currentcolor
|
|
310
337
|
}
|
|
311
338
|
|
|
312
339
|
.sidebar-header {
|
|
313
340
|
padding-bottom: 10px;
|
|
314
341
|
margin-bottom: 10px;
|
|
315
342
|
text-align: center;
|
|
316
|
-
height: 2.5em
|
|
343
|
+
height: 2.5em
|
|
317
344
|
}
|
|
318
345
|
|
|
319
346
|
.sidebar-header h1 {
|
|
320
347
|
font-size: 1.5em;
|
|
321
|
-
margin-top:
|
|
322
|
-
margin-bottom:
|
|
348
|
+
margin-top: 0;
|
|
349
|
+
margin-bottom: 0
|
|
323
350
|
}
|
|
324
351
|
|
|
325
352
|
.logo-link img {
|
|
326
353
|
max-height: 40px;
|
|
327
354
|
width: auto;
|
|
328
|
-
margin:
|
|
355
|
+
margin: 0 auto
|
|
329
356
|
}
|
|
330
357
|
|
|
331
|
-
.docmd-tab-pane,
|
|
332
|
-
|
|
358
|
+
.docmd-tab-pane,
|
|
359
|
+
.logo-link img.logo-dark,
|
|
360
|
+
.sidebar nav li.collapsible:not([aria-expanded=true])>.submenu,
|
|
361
|
+
.tab-panel,
|
|
362
|
+
.theme-toggle-button .icon-moon,
|
|
363
|
+
html[data-theme=dark] .logo-link img.logo-light,
|
|
364
|
+
html[data-theme=dark] .theme-toggle-button .icon-sun {
|
|
365
|
+
display: none
|
|
333
366
|
}
|
|
334
367
|
|
|
335
368
|
.sidebar-nav .lucide-icon {
|
|
336
369
|
width: 1em;
|
|
337
370
|
height: 1em;
|
|
338
|
-
margin-right:
|
|
339
|
-
vertical-align:
|
|
340
|
-
stroke-width: 2
|
|
371
|
+
margin-right: .5em;
|
|
372
|
+
vertical-align: -.15em;
|
|
373
|
+
stroke-width: 2
|
|
341
374
|
}
|
|
342
375
|
|
|
343
376
|
.sidebar-nav .nav-external-icon {
|
|
344
377
|
width: 1em;
|
|
345
378
|
height: 1.5em;
|
|
346
379
|
float: right;
|
|
347
|
-
margin-left:
|
|
348
|
-
opacity:
|
|
380
|
+
margin-left: .3em;
|
|
381
|
+
opacity: .7
|
|
349
382
|
}
|
|
350
383
|
|
|
351
|
-
.docmd-search-trigger,
|
|
384
|
+
.docmd-search-trigger,
|
|
385
|
+
.theme-toggle-button {
|
|
352
386
|
background-color: var(--sidebar-bg);
|
|
353
387
|
border: 1px solid var(--border-color);
|
|
354
388
|
color: var(--sidebar-text);
|
|
@@ -359,21 +393,27 @@ tr:last-child td {
|
|
|
359
393
|
align-items: center;
|
|
360
394
|
justify-content: center;
|
|
361
395
|
width: 100%;
|
|
362
|
-
margin: 0
|
|
396
|
+
margin: 0 .25em
|
|
363
397
|
}
|
|
364
398
|
|
|
365
|
-
.next-page,
|
|
399
|
+
.next-page,
|
|
400
|
+
.prev-page,
|
|
401
|
+
.step::before {
|
|
366
402
|
color: var(--link-color);
|
|
367
|
-
display: flex
|
|
403
|
+
display: flex
|
|
368
404
|
}
|
|
369
405
|
|
|
370
|
-
.callout .callout-content
|
|
371
|
-
|
|
406
|
+
.callout .callout-content> :first-child,
|
|
407
|
+
.card .card-content> :first-child,
|
|
408
|
+
.docmd-container> :first-child,
|
|
409
|
+
.step-content> :first-child,
|
|
410
|
+
.step-title {
|
|
411
|
+
margin-top: 0
|
|
372
412
|
}
|
|
373
413
|
|
|
374
414
|
.theme-toggle-button .lucide-icon {
|
|
375
415
|
width: 1.2em;
|
|
376
|
-
height: 1.2em
|
|
416
|
+
height: 1.2em
|
|
377
417
|
}
|
|
378
418
|
|
|
379
419
|
.docmd-container {
|
|
@@ -381,56 +421,60 @@ tr:last-child td {
|
|
|
381
421
|
margin-bottom: 1.5rem;
|
|
382
422
|
border-radius: 6px;
|
|
383
423
|
border: 1px solid var(--border-color);
|
|
384
|
-
background-color: var(--code-bg)
|
|
424
|
+
background-color: var(--code-bg)
|
|
385
425
|
}
|
|
386
426
|
|
|
387
|
-
.callout .callout-content
|
|
388
|
-
|
|
427
|
+
.callout .callout-content> :last-child,
|
|
428
|
+
.card .card-content> :last-child,
|
|
429
|
+
.docmd-container> :last-child,
|
|
430
|
+
.step-content> :last-child {
|
|
431
|
+
margin-bottom: 0
|
|
389
432
|
}
|
|
390
433
|
|
|
391
434
|
.callout {
|
|
392
435
|
border-left-width: 5px;
|
|
393
|
-
background-color: transparent
|
|
436
|
+
background-color: transparent
|
|
394
437
|
}
|
|
395
438
|
|
|
396
439
|
.callout-title {
|
|
397
440
|
font-weight: 700;
|
|
398
|
-
margin-bottom:
|
|
441
|
+
margin-bottom: .5em
|
|
399
442
|
}
|
|
400
443
|
|
|
401
444
|
.callout-info {
|
|
402
|
-
border-left-color:
|
|
403
|
-
background-color:
|
|
445
|
+
border-left-color: #3498db;
|
|
446
|
+
background-color: #3498db12
|
|
404
447
|
}
|
|
405
448
|
|
|
406
449
|
.callout-warning {
|
|
407
|
-
border-left-color:
|
|
408
|
-
background-color:
|
|
450
|
+
border-left-color: #f39c12;
|
|
451
|
+
background-color: #f39c1212
|
|
409
452
|
}
|
|
410
453
|
|
|
411
|
-
.callout-success,
|
|
412
|
-
|
|
413
|
-
|
|
454
|
+
.callout-success,
|
|
455
|
+
.callout-tip {
|
|
456
|
+
border-left-color: #2ecc71;
|
|
457
|
+
background-color: #2ecc7112
|
|
414
458
|
}
|
|
415
459
|
|
|
416
460
|
.callout-danger {
|
|
417
|
-
border-left-color:
|
|
418
|
-
background-color:
|
|
461
|
+
border-left-color: #e74c3c;
|
|
462
|
+
background-color: #e74c3c12
|
|
419
463
|
}
|
|
420
464
|
|
|
421
465
|
.card .card-title {
|
|
422
466
|
font-weight: 700;
|
|
423
467
|
font-size: 1.1em;
|
|
424
468
|
margin: -1rem -1.5rem 1rem;
|
|
425
|
-
padding:
|
|
469
|
+
padding: .75rem 1.5rem
|
|
426
470
|
}
|
|
427
471
|
|
|
428
472
|
.docmd-container.steps {
|
|
429
473
|
position: relative;
|
|
430
474
|
padding-left: 3rem;
|
|
431
475
|
border: medium;
|
|
432
|
-
background:
|
|
433
|
-
box-shadow: none
|
|
476
|
+
background: 0 0;
|
|
477
|
+
box-shadow: none
|
|
434
478
|
}
|
|
435
479
|
|
|
436
480
|
.docmd-container.steps::before {
|
|
@@ -440,23 +484,23 @@ tr:last-child td {
|
|
|
440
484
|
bottom: 1rem;
|
|
441
485
|
left: 2.5rem;
|
|
442
486
|
width: 2px;
|
|
443
|
-
background-color: var(--border-color)
|
|
487
|
+
background-color: var(--border-color)
|
|
444
488
|
}
|
|
445
489
|
|
|
446
490
|
.step {
|
|
447
491
|
position: relative;
|
|
448
|
-
padding-bottom: 1.5rem
|
|
492
|
+
padding-bottom: 1.5rem
|
|
449
493
|
}
|
|
450
494
|
|
|
451
495
|
.step:last-child {
|
|
452
|
-
padding-bottom:
|
|
496
|
+
padding-bottom: 0
|
|
453
497
|
}
|
|
454
498
|
|
|
455
499
|
.step::before {
|
|
456
500
|
content: attr(data-step);
|
|
457
501
|
position: absolute;
|
|
458
502
|
left: -3rem;
|
|
459
|
-
top:
|
|
503
|
+
top: .1rem;
|
|
460
504
|
width: 2.5rem;
|
|
461
505
|
height: 2.5rem;
|
|
462
506
|
background-color: var(--bg-color);
|
|
@@ -466,139 +510,144 @@ tr:last-child td {
|
|
|
466
510
|
justify-content: center;
|
|
467
511
|
font-size: 1rem;
|
|
468
512
|
font-weight: 600;
|
|
469
|
-
z-index: 1
|
|
513
|
+
z-index: 1
|
|
470
514
|
}
|
|
471
515
|
|
|
472
516
|
.step-title {
|
|
473
517
|
font-size: 1.25rem;
|
|
474
518
|
font-weight: 600;
|
|
475
|
-
margin-bottom:
|
|
519
|
+
margin-bottom: .5rem
|
|
476
520
|
}
|
|
477
521
|
|
|
478
522
|
.docmd-container.steps-reset {
|
|
479
|
-
counter-reset: step-counter 0
|
|
523
|
+
counter-reset: step-counter 0
|
|
480
524
|
}
|
|
481
525
|
|
|
482
526
|
.docmd-container.steps-reset ol.steps-list {
|
|
483
527
|
counter-reset: list-counter 0;
|
|
484
|
-
list-style: none
|
|
528
|
+
list-style: none
|
|
485
529
|
}
|
|
486
530
|
|
|
487
|
-
.docmd-container.steps-reset ol.steps-list
|
|
531
|
+
.docmd-container.steps-reset ol.steps-list>li.step-item {
|
|
488
532
|
counter-increment: list-counter 1;
|
|
489
533
|
position: relative;
|
|
490
|
-
padding-left:
|
|
491
|
-
margin-bottom: 2.5rem
|
|
534
|
+
padding-left: 0;
|
|
535
|
+
margin-bottom: 2.5rem
|
|
492
536
|
}
|
|
493
537
|
|
|
494
|
-
.docmd-container.steps-reset ol.steps-list
|
|
495
|
-
font-size: 2rem
|
|
538
|
+
.docmd-container.steps-reset ol.steps-list>li.step-item::before {
|
|
539
|
+
font-size: 2rem
|
|
496
540
|
}
|
|
497
541
|
|
|
498
|
-
.docmd-container.steps-reset .docmd-container.steps-reset ol.steps-list,
|
|
499
|
-
|
|
542
|
+
.docmd-container.steps-reset .docmd-container.steps-reset ol.steps-list,
|
|
543
|
+
.docmd-container.steps-reset ol.steps-list[start] {
|
|
544
|
+
counter-reset: list-counter 0
|
|
500
545
|
}
|
|
501
546
|
|
|
502
|
-
.docmd-container.steps-reset .docmd-container.steps-reset ol.steps-list
|
|
503
|
-
|
|
547
|
+
.docmd-container.steps-reset .docmd-container.steps-reset ol.steps-list>li.step-item,
|
|
548
|
+
.docmd-container.steps-reset ol.steps-list[start]>li.step-item {
|
|
549
|
+
counter-increment: list-counter 1
|
|
504
550
|
}
|
|
505
551
|
|
|
506
|
-
.docmd-container.steps-reset ol:not(.steps-list)::before,
|
|
507
|
-
|
|
508
|
-
|
|
552
|
+
.docmd-container.steps-reset ol:not(.steps-list)::before,
|
|
553
|
+
.docmd-container.steps-reset ol:not(.steps-list)>li::before,
|
|
554
|
+
.docmd-container.steps-reset ul::before,
|
|
555
|
+
.docmd-container.steps-reset ul>li::before {
|
|
556
|
+
width: .75rem;
|
|
557
|
+
height: .75rem;
|
|
509
558
|
left: -1.5rem;
|
|
510
|
-
top:
|
|
511
|
-
content: "" !important
|
|
559
|
+
top: .5rem;
|
|
560
|
+
content: "" !important
|
|
512
561
|
}
|
|
513
562
|
|
|
514
563
|
.mermaid-container {
|
|
515
|
-
margin: 1.5rem
|
|
564
|
+
margin: 1.5rem 0;
|
|
516
565
|
overflow-x: auto;
|
|
517
|
-
text-align: center
|
|
566
|
+
text-align: center
|
|
518
567
|
}
|
|
519
568
|
|
|
520
569
|
.mermaid-container svg {
|
|
521
570
|
max-width: 100%;
|
|
522
571
|
height: auto;
|
|
523
|
-
display: inline-block
|
|
572
|
+
display: inline-block
|
|
524
573
|
}
|
|
525
574
|
|
|
526
575
|
.mermaid-error {
|
|
527
|
-
color:
|
|
576
|
+
color: #e74c3c;
|
|
528
577
|
padding: 1rem;
|
|
529
|
-
margin:
|
|
530
|
-
background-color:
|
|
578
|
+
margin: 0;
|
|
579
|
+
background-color: #e74c3c12;
|
|
531
580
|
border-left-width: 4px;
|
|
532
581
|
border-left-style: solid;
|
|
533
|
-
border-left-color:
|
|
582
|
+
border-left-color: #e74c3c;
|
|
534
583
|
border-radius: 4px;
|
|
535
|
-
font-size:
|
|
584
|
+
font-size: .9rem
|
|
536
585
|
}
|
|
537
586
|
|
|
538
587
|
pre.mermaid {
|
|
539
588
|
background-color: transparent;
|
|
540
|
-
padding:
|
|
541
|
-
margin:
|
|
589
|
+
padding: 0;
|
|
590
|
+
margin: 0;
|
|
542
591
|
border: medium;
|
|
543
|
-
display: none
|
|
592
|
+
display: none
|
|
544
593
|
}
|
|
545
594
|
|
|
546
595
|
.docmd-container.collapsible {
|
|
547
|
-
padding:
|
|
596
|
+
padding: 0;
|
|
548
597
|
background-color: var(--card-bg, var(--bg-color));
|
|
549
598
|
border: 1px solid var(--border-color);
|
|
550
599
|
border-radius: 8px;
|
|
551
600
|
overflow: hidden;
|
|
552
601
|
margin-bottom: 1.5rem;
|
|
553
|
-
transition: border-color
|
|
602
|
+
transition: border-color .2s
|
|
554
603
|
}
|
|
555
604
|
|
|
556
605
|
.docmd-container.collapsible[open] {
|
|
557
|
-
border-color: var(--link-color)
|
|
606
|
+
border-color: var(--link-color)
|
|
558
607
|
}
|
|
559
608
|
|
|
560
609
|
.collapsible-summary {
|
|
561
610
|
list-style: none;
|
|
562
|
-
padding:
|
|
611
|
+
padding: .75rem 1.25rem;
|
|
563
612
|
cursor: pointer;
|
|
564
613
|
display: flex;
|
|
565
614
|
align-items: center;
|
|
566
615
|
justify-content: space-between;
|
|
567
616
|
font-weight: 600;
|
|
568
617
|
background-color: var(--sidebar-bg);
|
|
569
|
-
transition: background-color
|
|
618
|
+
transition: background-color .2s
|
|
570
619
|
}
|
|
571
620
|
|
|
572
621
|
.collapsible-summary:hover {
|
|
573
|
-
background-color: var(--sidebar-link-active-bg)
|
|
622
|
+
background-color: var(--sidebar-link-active-bg)
|
|
574
623
|
}
|
|
575
624
|
|
|
576
625
|
.collapsible-summary::-webkit-details-marker {
|
|
577
|
-
display: none
|
|
626
|
+
display: none
|
|
578
627
|
}
|
|
579
628
|
|
|
580
629
|
.collapsible-arrow svg {
|
|
581
630
|
width: 1.2em;
|
|
582
631
|
height: 1.2em;
|
|
583
|
-
transition: transform
|
|
584
|
-
opacity:
|
|
632
|
+
transition: transform .2s;
|
|
633
|
+
opacity: .7
|
|
585
634
|
}
|
|
586
635
|
|
|
587
|
-
details[open]
|
|
588
|
-
transform: rotate(180deg)
|
|
636
|
+
details[open]>.collapsible-summary .collapsible-arrow svg {
|
|
637
|
+
transform: rotate(180deg)
|
|
589
638
|
}
|
|
590
639
|
|
|
591
640
|
.collapsible-content {
|
|
592
641
|
padding: 1rem 1.25rem;
|
|
593
|
-
border-top: 1px solid var(--border-color)
|
|
642
|
+
border-top: 1px solid var(--border-color)
|
|
594
643
|
}
|
|
595
644
|
|
|
596
645
|
.docmd-container.changelog-timeline {
|
|
597
646
|
border: medium;
|
|
598
|
-
background:
|
|
599
|
-
padding:
|
|
647
|
+
background: 0 0;
|
|
648
|
+
padding: 0;
|
|
600
649
|
margin-top: 2rem;
|
|
601
|
-
box-shadow: none
|
|
650
|
+
box-shadow: none
|
|
602
651
|
}
|
|
603
652
|
|
|
604
653
|
.changelog-entry {
|
|
@@ -606,12 +655,12 @@ details[open] > .collapsible-summary .collapsible-arrow svg {
|
|
|
606
655
|
grid-template-columns: 180px 1fr;
|
|
607
656
|
gap: 2rem;
|
|
608
657
|
margin-bottom: 3rem;
|
|
609
|
-
position: relative
|
|
658
|
+
position: relative
|
|
610
659
|
}
|
|
611
660
|
|
|
612
661
|
.changelog-meta {
|
|
613
662
|
text-align: right;
|
|
614
|
-
padding-top:
|
|
663
|
+
padding-top: .5rem
|
|
615
664
|
}
|
|
616
665
|
|
|
617
666
|
.changelog-date {
|
|
@@ -621,313 +670,323 @@ details[open] > .collapsible-summary .collapsible-arrow svg {
|
|
|
621
670
|
border: 1px solid var(--border-color);
|
|
622
671
|
padding: 4px 12px;
|
|
623
672
|
border-radius: 20px;
|
|
624
|
-
font-size:
|
|
673
|
+
font-size: .85rem;
|
|
625
674
|
font-weight: 600;
|
|
626
|
-
font-family: var(--font-family-mono)
|
|
675
|
+
font-family: var(--font-family-mono)
|
|
627
676
|
}
|
|
628
677
|
|
|
629
678
|
.changelog-body {
|
|
630
679
|
border-left: 2px solid var(--border-color);
|
|
631
680
|
padding-left: 2rem;
|
|
632
|
-
padding-bottom: 1rem
|
|
681
|
+
padding-bottom: 1rem
|
|
633
682
|
}
|
|
634
683
|
|
|
635
|
-
.changelog-body
|
|
636
|
-
margin-top:
|
|
684
|
+
.changelog-body> :first-child {
|
|
685
|
+
margin-top: 0
|
|
637
686
|
}
|
|
638
687
|
|
|
639
688
|
:focus-visible {
|
|
640
689
|
outline: 2px solid var(--link-color);
|
|
641
|
-
outline-offset: 2px
|
|
690
|
+
outline-offset: 2px
|
|
642
691
|
}
|
|
643
692
|
|
|
644
693
|
:focus:not(:focus-visible) {
|
|
645
|
-
outline: currentcolor
|
|
694
|
+
outline: currentcolor
|
|
646
695
|
}
|
|
647
696
|
|
|
648
697
|
.sidebar nav li a:focus-visible {
|
|
649
698
|
background-color: var(--sidebar-link-active-bg);
|
|
650
699
|
outline: 2px solid var(--link-color);
|
|
651
|
-
outline-offset: -2px
|
|
700
|
+
outline-offset: -2px
|
|
652
701
|
}
|
|
653
702
|
|
|
654
703
|
.theme-toggle-button:focus-visible {
|
|
655
704
|
border-color: var(--link-color);
|
|
656
|
-
box-shadow: 0 0 0 2px var(--link-color)
|
|
705
|
+
box-shadow: 0 0 0 2px var(--link-color)
|
|
657
706
|
}
|
|
658
707
|
|
|
659
|
-
.page-footer,
|
|
660
|
-
|
|
708
|
+
.page-footer,
|
|
709
|
+
.page-navigation {
|
|
710
|
+
border-top: 1px solid var(--border-color)
|
|
661
711
|
}
|
|
662
712
|
|
|
663
713
|
.page-navigation {
|
|
664
714
|
display: flex;
|
|
665
715
|
justify-content: space-between;
|
|
666
716
|
margin-top: 3rem;
|
|
667
|
-
padding-top: 1.5rem
|
|
717
|
+
padding-top: 1.5rem
|
|
668
718
|
}
|
|
669
719
|
|
|
670
|
-
.next-page,
|
|
720
|
+
.next-page,
|
|
721
|
+
.prev-page {
|
|
671
722
|
align-items: center;
|
|
672
723
|
text-decoration: none;
|
|
673
|
-
padding:
|
|
724
|
+
padding: .75rem;
|
|
674
725
|
border-radius: 6px;
|
|
675
|
-
transition: background-color
|
|
726
|
+
transition: background-color .2s;
|
|
676
727
|
width: 48%;
|
|
677
|
-
max-width: 48
|
|
728
|
+
max-width: 48%
|
|
678
729
|
}
|
|
679
730
|
|
|
680
|
-
.next-page:hover,
|
|
681
|
-
|
|
682
|
-
|
|
731
|
+
.next-page:hover,
|
|
732
|
+
.prev-page:hover {
|
|
733
|
+
background-color: #0000000d;
|
|
734
|
+
text-decoration: none
|
|
683
735
|
}
|
|
684
736
|
|
|
685
|
-
:root[data-theme=
|
|
686
|
-
|
|
737
|
+
:root[data-theme=dark] .next-page:hover,
|
|
738
|
+
:root[data-theme=dark] .prev-page:hover {
|
|
739
|
+
background-color: #ffffff0d
|
|
687
740
|
}
|
|
688
741
|
|
|
689
742
|
.prev-page {
|
|
690
|
-
justify-content: flex-start
|
|
743
|
+
justify-content: flex-start
|
|
691
744
|
}
|
|
692
745
|
|
|
693
746
|
.next-page {
|
|
694
747
|
justify-content: flex-end;
|
|
695
|
-
text-align: right
|
|
748
|
+
text-align: right
|
|
696
749
|
}
|
|
697
750
|
|
|
698
|
-
.next-page-placeholder,
|
|
699
|
-
|
|
751
|
+
.next-page-placeholder,
|
|
752
|
+
.prev-page-placeholder {
|
|
753
|
+
width: 48%
|
|
700
754
|
}
|
|
701
755
|
|
|
702
|
-
.next-page span,
|
|
756
|
+
.next-page span,
|
|
757
|
+
.prev-page span {
|
|
703
758
|
display: flex;
|
|
704
|
-
flex-direction: column
|
|
759
|
+
flex-direction: column
|
|
705
760
|
}
|
|
706
761
|
|
|
707
|
-
.next-page small,
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
762
|
+
.next-page small,
|
|
763
|
+
.prev-page small {
|
|
764
|
+
font-size: .8rem;
|
|
765
|
+
opacity: .8;
|
|
766
|
+
margin-bottom: .25rem
|
|
711
767
|
}
|
|
712
768
|
|
|
713
|
-
.next-page strong,
|
|
714
|
-
|
|
769
|
+
.next-page strong,
|
|
770
|
+
.prev-page strong {
|
|
771
|
+
font-weight: 500
|
|
715
772
|
}
|
|
716
773
|
|
|
717
774
|
.page-nav-icon {
|
|
718
775
|
width: 1.2rem;
|
|
719
|
-
height: 1.2rem
|
|
776
|
+
height: 1.2rem
|
|
720
777
|
}
|
|
721
778
|
|
|
722
779
|
.prev-page .page-nav-icon {
|
|
723
|
-
margin-right:
|
|
780
|
+
margin-right: .75rem
|
|
724
781
|
}
|
|
725
782
|
|
|
726
783
|
.next-page .page-nav-icon {
|
|
727
|
-
margin-left:
|
|
784
|
+
margin-left: .75rem
|
|
728
785
|
}
|
|
729
786
|
|
|
730
787
|
.page-footer {
|
|
731
788
|
text-align: center;
|
|
732
789
|
padding: 20px 30px;
|
|
733
790
|
margin-top: auto;
|
|
734
|
-
font-size:
|
|
791
|
+
font-size: .9em;
|
|
735
792
|
color: var(--text-color);
|
|
736
|
-
background-color: var(--sidebar-bg)
|
|
793
|
+
background-color: var(--sidebar-bg)
|
|
737
794
|
}
|
|
738
795
|
|
|
739
796
|
.footer-content {
|
|
740
797
|
display: flex;
|
|
741
798
|
justify-content: space-between;
|
|
742
799
|
align-items: center;
|
|
743
|
-
margin:
|
|
744
|
-
width: 100
|
|
800
|
+
margin: 0 auto;
|
|
801
|
+
width: 100%
|
|
745
802
|
}
|
|
746
803
|
|
|
747
804
|
.user-footer {
|
|
748
|
-
text-align: left
|
|
805
|
+
text-align: left
|
|
749
806
|
}
|
|
750
807
|
|
|
751
808
|
.branding-footer {
|
|
752
809
|
text-align: right;
|
|
753
|
-
opacity:
|
|
754
|
-
font-weight: 500
|
|
810
|
+
opacity: .9;
|
|
811
|
+
font-weight: 500
|
|
755
812
|
}
|
|
756
813
|
|
|
757
814
|
.branding-footer svg {
|
|
758
|
-
color:
|
|
815
|
+
color: #fb3a3a
|
|
759
816
|
}
|
|
760
817
|
|
|
761
818
|
.page-footer a {
|
|
762
819
|
color: var(--link-color);
|
|
763
|
-
text-decoration: none
|
|
820
|
+
text-decoration: none
|
|
764
821
|
}
|
|
765
822
|
|
|
766
|
-
.page-footer a:hover,
|
|
767
|
-
|
|
823
|
+
.page-footer a:hover,
|
|
824
|
+
.toc-link:hover {
|
|
825
|
+
text-decoration: underline
|
|
768
826
|
}
|
|
769
827
|
|
|
770
828
|
.content-layout {
|
|
771
829
|
display: flex;
|
|
772
830
|
gap: 2rem;
|
|
773
|
-
width: 100
|
|
831
|
+
width: 100%
|
|
774
832
|
}
|
|
775
833
|
|
|
776
834
|
.main-content {
|
|
777
|
-
flex: 1 1 0
|
|
778
|
-
min-inline-size:
|
|
835
|
+
flex: 1 1 0;
|
|
836
|
+
min-inline-size: 0
|
|
779
837
|
}
|
|
780
838
|
|
|
781
839
|
.toc-container {
|
|
782
|
-
margin:
|
|
783
|
-
padding:
|
|
840
|
+
margin: 0;
|
|
841
|
+
padding: 0;
|
|
784
842
|
border: medium;
|
|
785
|
-
background-color: transparent
|
|
843
|
+
background-color: transparent
|
|
786
844
|
}
|
|
787
845
|
|
|
788
|
-
.docmd-container figure img,
|
|
789
|
-
|
|
846
|
+
.docmd-container figure img,
|
|
847
|
+
.toc-title {
|
|
848
|
+
margin-bottom: .5rem
|
|
790
849
|
}
|
|
791
850
|
|
|
792
851
|
.toc-title {
|
|
793
|
-
margin-top:
|
|
852
|
+
margin-top: 0;
|
|
794
853
|
font-size: 1rem;
|
|
795
854
|
font-weight: 700;
|
|
796
|
-
color: var(--text-muted)
|
|
855
|
+
color: var(--text-muted)
|
|
797
856
|
}
|
|
798
857
|
|
|
799
858
|
.toc-list {
|
|
800
859
|
list-style: none;
|
|
801
|
-
padding-left:
|
|
802
|
-
margin:
|
|
860
|
+
padding-left: 0;
|
|
861
|
+
margin: 0
|
|
803
862
|
}
|
|
804
863
|
|
|
805
864
|
.toc-item {
|
|
806
|
-
margin-bottom:
|
|
807
|
-
line-height: 1.4
|
|
865
|
+
margin-bottom: .25rem;
|
|
866
|
+
line-height: 1.4
|
|
808
867
|
}
|
|
809
868
|
|
|
810
869
|
.toc-link {
|
|
811
870
|
text-decoration: none;
|
|
812
871
|
color: var(--link-color);
|
|
813
872
|
display: inline-block;
|
|
814
|
-
padding:
|
|
815
|
-
font-size:
|
|
816
|
-
font-weight: 500
|
|
873
|
+
padding: .1rem 0;
|
|
874
|
+
font-size: .9rem;
|
|
875
|
+
font-weight: 500
|
|
817
876
|
}
|
|
818
877
|
|
|
819
878
|
.toc-level-3 {
|
|
820
|
-
margin-left:
|
|
821
|
-
font-size:
|
|
879
|
+
margin-left: .75rem;
|
|
880
|
+
font-size: .85rem
|
|
822
881
|
}
|
|
823
882
|
|
|
824
883
|
.toc-level-4 {
|
|
825
884
|
margin-left: 1.5rem;
|
|
826
|
-
font-size:
|
|
885
|
+
font-size: .8rem
|
|
827
886
|
}
|
|
828
887
|
|
|
829
888
|
.toc-sidebar {
|
|
830
889
|
width: 180px;
|
|
831
890
|
position: sticky;
|
|
832
891
|
top: 2rem;
|
|
833
|
-
max-height: calc(-4rem + 100vh);
|
|
834
892
|
overflow-y: auto;
|
|
835
|
-
align-self: flex-start
|
|
893
|
+
align-self: flex-start
|
|
836
894
|
}
|
|
837
895
|
|
|
838
|
-
.docmd-tabs,
|
|
839
|
-
|
|
896
|
+
.docmd-tabs,
|
|
897
|
+
img {
|
|
898
|
+
margin: 1.5rem 0
|
|
840
899
|
}
|
|
841
900
|
|
|
842
901
|
img {
|
|
843
902
|
max-width: 100%;
|
|
844
|
-
height: auto
|
|
903
|
+
height: auto
|
|
845
904
|
}
|
|
846
905
|
|
|
847
906
|
img.align-left {
|
|
848
907
|
float: left;
|
|
849
908
|
margin-right: 1.5rem;
|
|
850
|
-
margin-bottom: 1rem
|
|
909
|
+
margin-bottom: 1rem
|
|
851
910
|
}
|
|
852
911
|
|
|
853
912
|
img.align-center {
|
|
854
913
|
margin-left: auto;
|
|
855
|
-
margin-right: auto
|
|
914
|
+
margin-right: auto
|
|
856
915
|
}
|
|
857
916
|
|
|
858
917
|
img.align-right {
|
|
859
918
|
float: right;
|
|
860
919
|
margin-left: 1.5rem;
|
|
861
|
-
margin-bottom: 1rem
|
|
920
|
+
margin-bottom: 1rem
|
|
862
921
|
}
|
|
863
922
|
|
|
864
923
|
img.size-small {
|
|
865
|
-
max-width: 300px
|
|
924
|
+
max-width: 300px
|
|
866
925
|
}
|
|
867
926
|
|
|
868
927
|
img.size-medium {
|
|
869
|
-
max-width: 500px
|
|
928
|
+
max-width: 500px
|
|
870
929
|
}
|
|
871
930
|
|
|
872
931
|
img.size-large {
|
|
873
|
-
max-width: 800px
|
|
932
|
+
max-width: 800px
|
|
874
933
|
}
|
|
875
934
|
|
|
876
935
|
img.with-border {
|
|
877
936
|
border: 1px solid var(--image-border-color);
|
|
878
|
-
padding: 4px
|
|
937
|
+
padding: 4px
|
|
879
938
|
}
|
|
880
939
|
|
|
881
940
|
img.with-shadow {
|
|
882
|
-
box-shadow: var(--image-shadow)
|
|
941
|
+
box-shadow: var(--image-shadow)
|
|
883
942
|
}
|
|
884
943
|
|
|
885
944
|
.docmd-container figure {
|
|
886
|
-
margin: 2rem
|
|
945
|
+
margin: 2rem 0
|
|
887
946
|
}
|
|
888
947
|
|
|
889
948
|
.docmd-container figcaption {
|
|
890
|
-
font-size:
|
|
949
|
+
font-size: .9rem;
|
|
891
950
|
color: var(--image-caption-text);
|
|
892
951
|
text-align: center;
|
|
893
|
-
padding:
|
|
952
|
+
padding: .5rem;
|
|
894
953
|
background-color: var(--image-caption-bg);
|
|
895
|
-
border-radius:
|
|
954
|
+
border-radius: 0 0 4px 4px
|
|
896
955
|
}
|
|
897
956
|
|
|
898
957
|
.docmd-container .image-gallery {
|
|
899
958
|
display: grid;
|
|
900
959
|
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
|
|
901
960
|
gap: 1rem;
|
|
902
|
-
margin: 2rem
|
|
961
|
+
margin: 2rem 0
|
|
903
962
|
}
|
|
904
963
|
|
|
905
964
|
.docmd-container .image-gallery figure {
|
|
906
|
-
margin:
|
|
965
|
+
margin: 0
|
|
907
966
|
}
|
|
908
967
|
|
|
909
968
|
.docmd-container .clear-float::after {
|
|
910
969
|
content: "";
|
|
911
970
|
display: table;
|
|
912
|
-
clear: both
|
|
971
|
+
clear: both
|
|
913
972
|
}
|
|
914
973
|
|
|
915
974
|
.docmd-tabs {
|
|
916
975
|
border: 1px solid var(--border-color);
|
|
917
976
|
border-radius: 6px;
|
|
918
977
|
overflow: hidden;
|
|
919
|
-
box-shadow:
|
|
978
|
+
box-shadow: #0000000d 0 1px 3px
|
|
920
979
|
}
|
|
921
980
|
|
|
922
981
|
.docmd-tabs-nav {
|
|
923
982
|
display: flex;
|
|
924
983
|
background-color: var(--sidebar-bg);
|
|
925
984
|
border-bottom: 1px solid var(--border-color);
|
|
926
|
-
overflow: auto hidden
|
|
985
|
+
overflow: auto hidden
|
|
927
986
|
}
|
|
928
987
|
|
|
929
988
|
.docmd-tabs-nav-item {
|
|
930
|
-
padding:
|
|
989
|
+
padding: .75rem 1.25rem;
|
|
931
990
|
cursor: pointer;
|
|
932
991
|
border-bottom-width: 3px;
|
|
933
992
|
border-bottom-style: solid;
|
|
@@ -935,97 +994,98 @@ img.with-shadow {
|
|
|
935
994
|
margin-bottom: -1px;
|
|
936
995
|
font-weight: 500;
|
|
937
996
|
color: var(--sidebar-text);
|
|
938
|
-
white-space: nowrap
|
|
997
|
+
white-space: nowrap
|
|
939
998
|
}
|
|
940
999
|
|
|
941
1000
|
.docmd-tabs-nav-item.active {
|
|
942
1001
|
color: var(--link-color);
|
|
943
1002
|
border-bottom-color: var(--link-color);
|
|
944
|
-
background-color: var(--bg-color)
|
|
1003
|
+
background-color: var(--bg-color)
|
|
945
1004
|
}
|
|
946
1005
|
|
|
947
1006
|
.docmd-tabs-content {
|
|
948
|
-
padding: 1.5rem
|
|
1007
|
+
padding: 1.5rem
|
|
949
1008
|
}
|
|
950
1009
|
|
|
951
1010
|
.tabs-container {
|
|
952
|
-
margin: 1rem
|
|
953
|
-
border: 1px solid
|
|
954
|
-
border-radius:
|
|
1011
|
+
margin: 1rem 0;
|
|
1012
|
+
border: 1px solid #e1e5e9;
|
|
1013
|
+
border-radius: .375rem
|
|
955
1014
|
}
|
|
956
1015
|
|
|
957
1016
|
.tab-navigation {
|
|
958
1017
|
display: flex;
|
|
959
|
-
background-color:
|
|
1018
|
+
background-color: #f8f9fa;
|
|
960
1019
|
border-bottom-width: 1px;
|
|
961
1020
|
border-bottom-style: solid;
|
|
962
|
-
border-bottom-color:
|
|
963
|
-
border-radius:
|
|
1021
|
+
border-bottom-color: #e1e5e9;
|
|
1022
|
+
border-radius: .375rem .375rem 0 0
|
|
964
1023
|
}
|
|
965
1024
|
|
|
966
1025
|
.tab-button {
|
|
967
|
-
padding:
|
|
1026
|
+
padding: .75rem 1rem;
|
|
968
1027
|
border-width: medium medium 2px;
|
|
969
1028
|
border-style: none none solid;
|
|
970
1029
|
border-color: currentcolor currentcolor transparent;
|
|
971
1030
|
border-image: none;
|
|
972
|
-
background:
|
|
1031
|
+
background: 0 0;
|
|
973
1032
|
cursor: pointer;
|
|
974
|
-
transition:
|
|
1033
|
+
transition: .2s
|
|
975
1034
|
}
|
|
976
1035
|
|
|
977
1036
|
.tab-button:hover {
|
|
978
|
-
background-color:
|
|
1037
|
+
background-color: #e9ecef
|
|
979
1038
|
}
|
|
980
1039
|
|
|
981
1040
|
.tab-button.active {
|
|
982
|
-
border-bottom-color:
|
|
983
|
-
background-color:
|
|
1041
|
+
border-bottom-color: #007bff;
|
|
1042
|
+
background-color: #fff
|
|
984
1043
|
}
|
|
985
1044
|
|
|
986
1045
|
.tab-content {
|
|
987
|
-
padding: 1rem
|
|
1046
|
+
padding: 1rem
|
|
988
1047
|
}
|
|
989
1048
|
|
|
990
1049
|
.docmd-lightbox {
|
|
991
1050
|
display: none;
|
|
992
1051
|
position: fixed;
|
|
993
|
-
top:
|
|
994
|
-
left:
|
|
1052
|
+
top: 0;
|
|
1053
|
+
left: 0;
|
|
995
1054
|
width: 100%;
|
|
996
1055
|
height: 100%;
|
|
997
1056
|
background-color: var(--lightbox-bg);
|
|
998
1057
|
z-index: 9999;
|
|
999
1058
|
justify-content: center;
|
|
1000
1059
|
align-items: center;
|
|
1001
|
-
flex-direction: column
|
|
1060
|
+
flex-direction: column
|
|
1002
1061
|
}
|
|
1003
1062
|
|
|
1004
|
-
.copy-code-button svg,
|
|
1063
|
+
.copy-code-button svg,
|
|
1064
|
+
.sponsor-icon {
|
|
1005
1065
|
width: 1rem;
|
|
1006
|
-
height: 1rem
|
|
1066
|
+
height: 1rem
|
|
1007
1067
|
}
|
|
1008
1068
|
|
|
1009
1069
|
.docmd-lightbox-content {
|
|
1010
1070
|
position: relative;
|
|
1011
1071
|
max-width: 90%;
|
|
1012
1072
|
max-height: 90%;
|
|
1013
|
-
text-align: center
|
|
1073
|
+
text-align: center
|
|
1014
1074
|
}
|
|
1015
1075
|
|
|
1016
1076
|
.docmd-lightbox-content img {
|
|
1017
1077
|
max-width: 100%;
|
|
1018
1078
|
max-height: 80vh;
|
|
1019
1079
|
object-fit: contain;
|
|
1020
|
-
margin:
|
|
1021
|
-
box-shadow:
|
|
1080
|
+
margin: 0 auto;
|
|
1081
|
+
box-shadow: #0000004d 0 0 20px
|
|
1022
1082
|
}
|
|
1023
1083
|
|
|
1024
1084
|
.docmd-lightbox-caption {
|
|
1025
1085
|
color: var(--lightbox-text);
|
|
1026
1086
|
padding: 1rem;
|
|
1027
1087
|
font-size: 1rem;
|
|
1028
|
-
max-width: 100
|
|
1088
|
+
max-width: 100%
|
|
1029
1089
|
}
|
|
1030
1090
|
|
|
1031
1091
|
.docmd-lightbox-close {
|
|
@@ -1035,138 +1095,141 @@ img.with-shadow {
|
|
|
1035
1095
|
color: var(--lightbox-text);
|
|
1036
1096
|
font-size: 2.5rem;
|
|
1037
1097
|
cursor: pointer;
|
|
1038
|
-
z-index: 10000
|
|
1098
|
+
z-index: 10000
|
|
1039
1099
|
}
|
|
1040
1100
|
|
|
1041
1101
|
.docmd-lightbox-close:hover {
|
|
1042
|
-
color:
|
|
1102
|
+
color: #ddd
|
|
1043
1103
|
}
|
|
1044
1104
|
|
|
1045
|
-
a.docmd-button,
|
|
1046
|
-
|
|
1047
|
-
|
|
1105
|
+
a.docmd-button,
|
|
1106
|
+
a.sponsor-link,
|
|
1107
|
+
a.sponsor-link:hover {
|
|
1108
|
+
color: #fff;
|
|
1109
|
+
text-decoration: none
|
|
1048
1110
|
}
|
|
1049
1111
|
|
|
1050
|
-
.docmd-container .image-gallery img,
|
|
1051
|
-
|
|
1112
|
+
.docmd-container .image-gallery img,
|
|
1113
|
+
img.lightbox {
|
|
1114
|
+
cursor: zoom-in
|
|
1052
1115
|
}
|
|
1053
1116
|
|
|
1054
1117
|
.docmd-button {
|
|
1055
1118
|
display: inline-block;
|
|
1056
|
-
padding:
|
|
1057
|
-
margin:
|
|
1119
|
+
padding: .6rem 1.2rem;
|
|
1120
|
+
margin: .5rem;
|
|
1058
1121
|
border-radius: 6px;
|
|
1059
1122
|
background-color: var(--link-color);
|
|
1060
1123
|
font-weight: 500;
|
|
1061
|
-
transition: background-color
|
|
1124
|
+
transition: background-color .2s, transform .2s;
|
|
1062
1125
|
border: medium;
|
|
1063
|
-
cursor: pointer
|
|
1126
|
+
cursor: pointer
|
|
1064
1127
|
}
|
|
1065
1128
|
|
|
1066
1129
|
.docmd-button:hover {
|
|
1067
1130
|
text-decoration: none;
|
|
1068
1131
|
filter: brightness(90%);
|
|
1069
|
-
transform: translateY(-1px)
|
|
1132
|
+
transform: translateY(-1px)
|
|
1070
1133
|
}
|
|
1071
1134
|
|
|
1072
1135
|
.sponsor-ribbon {
|
|
1073
1136
|
position: fixed;
|
|
1074
1137
|
bottom: 4.5em;
|
|
1075
|
-
right:
|
|
1138
|
+
right: 0;
|
|
1076
1139
|
z-index: 1000;
|
|
1077
|
-
transform: rotate(
|
|
1140
|
+
transform: rotate(0);
|
|
1078
1141
|
transform-origin: center center;
|
|
1079
|
-
opacity:
|
|
1080
|
-
transition:
|
|
1142
|
+
opacity: .85;
|
|
1143
|
+
transition: .5s
|
|
1081
1144
|
}
|
|
1082
1145
|
|
|
1083
1146
|
.sponsor-ribbon:hover {
|
|
1084
|
-
opacity: 1
|
|
1147
|
+
opacity: 1
|
|
1085
1148
|
}
|
|
1086
1149
|
|
|
1087
1150
|
.sponsor-link {
|
|
1088
1151
|
display: flex;
|
|
1089
1152
|
align-items: center;
|
|
1090
|
-
gap:
|
|
1091
|
-
background: linear-gradient(to right bottom,
|
|
1092
|
-
padding:
|
|
1093
|
-
border-radius: 20px
|
|
1153
|
+
gap: .5rem;
|
|
1154
|
+
background: linear-gradient(to right bottom, #ff6b6b, #ee5a24);
|
|
1155
|
+
padding: .5rem .5em .5em .75rem;
|
|
1156
|
+
border-radius: 20px 0 0 20px;
|
|
1094
1157
|
font-weight: 700;
|
|
1095
|
-
font-size:
|
|
1096
|
-
transition:
|
|
1158
|
+
font-size: .85em;
|
|
1159
|
+
transition: .3s;
|
|
1097
1160
|
white-space: nowrap;
|
|
1098
|
-
color: var(--white) !important
|
|
1161
|
+
color: var(--white) !important
|
|
1099
1162
|
}
|
|
1100
1163
|
|
|
1101
1164
|
.sponsor-link:hover {
|
|
1102
1165
|
transform: scale(1.02);
|
|
1103
|
-
box-shadow:
|
|
1166
|
+
box-shadow: #ff6b6b66 0 0 25px
|
|
1104
1167
|
}
|
|
1105
1168
|
|
|
1106
1169
|
.sponsor-icon {
|
|
1107
|
-
animation: 2s ease-in-out infinite heartbeat
|
|
1170
|
+
animation: 2s ease-in-out infinite heartbeat
|
|
1108
1171
|
}
|
|
1109
1172
|
|
|
1110
1173
|
.sponsor-text {
|
|
1111
|
-
font-family: inherit
|
|
1174
|
+
font-family: inherit
|
|
1112
1175
|
}
|
|
1113
1176
|
|
|
1114
|
-
html[data-theme=
|
|
1115
|
-
background: linear-gradient(135deg,
|
|
1116
|
-
box-shadow:
|
|
1177
|
+
html[data-theme=dark] .sponsor-link {
|
|
1178
|
+
background: linear-gradient(135deg, #ff6b6b, #c44569);
|
|
1179
|
+
box-shadow: #ff6b6b33 0 4px 12px
|
|
1117
1180
|
}
|
|
1118
1181
|
|
|
1119
|
-
html[data-theme=
|
|
1120
|
-
box-shadow:
|
|
1182
|
+
html[data-theme=dark] .sponsor-link:hover {
|
|
1183
|
+
box-shadow: #ff6b6b4d 0 6px 20px
|
|
1121
1184
|
}
|
|
1122
1185
|
|
|
1123
1186
|
.copy-code-button {
|
|
1124
1187
|
position: absolute;
|
|
1125
|
-
top:
|
|
1126
|
-
right:
|
|
1127
|
-
padding:
|
|
1188
|
+
top: .75rem;
|
|
1189
|
+
right: .75rem;
|
|
1190
|
+
padding: .5rem;
|
|
1128
1191
|
background-color: var(--code-bg);
|
|
1129
1192
|
border: 1px solid var(--border-color);
|
|
1130
1193
|
border-radius: 6px;
|
|
1131
1194
|
cursor: pointer;
|
|
1132
1195
|
opacity: 0;
|
|
1133
|
-
transition: opacity
|
|
1196
|
+
transition: opacity .2s ease-in-out, background-color .2s;
|
|
1134
1197
|
color: var(--sidebar-text);
|
|
1135
1198
|
display: flex;
|
|
1136
1199
|
align-items: center;
|
|
1137
1200
|
justify-content: center;
|
|
1138
1201
|
z-index: 10;
|
|
1139
|
-
pointer-events: auto
|
|
1202
|
+
pointer-events: auto
|
|
1140
1203
|
}
|
|
1141
1204
|
|
|
1142
1205
|
.copy-code-button.copied {
|
|
1143
|
-
color:
|
|
1144
|
-
opacity: 1
|
|
1206
|
+
color: #10b981;
|
|
1207
|
+
opacity: 1
|
|
1145
1208
|
}
|
|
1146
1209
|
|
|
1147
|
-
.sidebar nav li.collapsible
|
|
1210
|
+
.sidebar nav li.collapsible>a {
|
|
1148
1211
|
display: flex;
|
|
1149
1212
|
justify-content: space-between;
|
|
1150
|
-
align-items: center
|
|
1213
|
+
align-items: center
|
|
1151
1214
|
}
|
|
1152
1215
|
|
|
1153
|
-
.sidebar nav li.collapsible
|
|
1154
|
-
flex-grow: 1
|
|
1216
|
+
.sidebar nav li.collapsible>a .nav-item-title {
|
|
1217
|
+
flex-grow: 1
|
|
1155
1218
|
}
|
|
1156
1219
|
|
|
1157
1220
|
.sidebar nav .collapse-icon {
|
|
1158
|
-
transition: transform
|
|
1221
|
+
transition: transform .2s ease-in-out;
|
|
1159
1222
|
flex-shrink: 0;
|
|
1160
|
-
margin-left:
|
|
1223
|
+
margin-left: .5em
|
|
1161
1224
|
}
|
|
1162
1225
|
|
|
1163
|
-
.sidebar nav li.collapsible[aria-expanded=
|
|
1164
|
-
transform: rotate(90deg)
|
|
1226
|
+
.sidebar nav li.collapsible[aria-expanded=true]>a>.collapse-icon {
|
|
1227
|
+
transform: rotate(90deg)
|
|
1165
1228
|
}
|
|
1166
1229
|
|
|
1167
1230
|
hr {
|
|
1168
|
-
color:
|
|
1169
|
-
border-top-width: 1px
|
|
1231
|
+
color: #f5f5f545;
|
|
1232
|
+
border-top-width: 1px
|
|
1170
1233
|
}
|
|
1171
1234
|
|
|
1172
1235
|
.page-footer-actions {
|
|
@@ -1176,40 +1239,40 @@ hr {
|
|
|
1176
1239
|
display: flex;
|
|
1177
1240
|
justify-content: flex-end;
|
|
1178
1241
|
gap: 1rem;
|
|
1179
|
-
font-size:
|
|
1242
|
+
font-size: .875rem
|
|
1180
1243
|
}
|
|
1181
1244
|
|
|
1182
1245
|
.edit-link {
|
|
1183
1246
|
display: inline-flex;
|
|
1184
1247
|
align-items: center;
|
|
1185
|
-
gap:
|
|
1248
|
+
gap: .5rem;
|
|
1186
1249
|
color: var(--text-light);
|
|
1187
1250
|
text-decoration: none;
|
|
1188
|
-
transition: color
|
|
1251
|
+
transition: color .2s
|
|
1189
1252
|
}
|
|
1190
1253
|
|
|
1191
1254
|
.edit-link:hover {
|
|
1192
|
-
color: var(--link-color)
|
|
1255
|
+
color: var(--link-color)
|
|
1193
1256
|
}
|
|
1194
1257
|
|
|
1195
1258
|
.edit-link svg {
|
|
1196
1259
|
width: 1em;
|
|
1197
|
-
height: 1em
|
|
1260
|
+
height: 1em
|
|
1198
1261
|
}
|
|
1199
1262
|
|
|
1200
1263
|
.docmd-search-trigger {
|
|
1201
|
-
gap:
|
|
1202
|
-
padding:
|
|
1203
|
-
font-size:
|
|
1264
|
+
gap: .5rem;
|
|
1265
|
+
padding: .4rem .6rem;
|
|
1266
|
+
font-size: .9rem
|
|
1204
1267
|
}
|
|
1205
1268
|
|
|
1206
1269
|
.search-label {
|
|
1207
|
-
margin-right: 1rem
|
|
1270
|
+
margin-right: 1rem
|
|
1208
1271
|
}
|
|
1209
1272
|
|
|
1210
1273
|
.search-keys {
|
|
1211
1274
|
display: flex;
|
|
1212
|
-
gap: 2px
|
|
1275
|
+
gap: 2px
|
|
1213
1276
|
}
|
|
1214
1277
|
|
|
1215
1278
|
.docmd-kbd {
|
|
@@ -1217,34 +1280,36 @@ hr {
|
|
|
1217
1280
|
border: 1px solid var(--border-color);
|
|
1218
1281
|
border-radius: 3px;
|
|
1219
1282
|
font-family: var(--font-family-mono);
|
|
1220
|
-
font-size:
|
|
1221
|
-
padding:
|
|
1283
|
+
font-size: .7rem;
|
|
1284
|
+
padding: 0 4px;
|
|
1222
1285
|
box-shadow: 0 1px 0 var(--border-color);
|
|
1223
1286
|
color: var(--text-muted, var(--accent-color));
|
|
1224
1287
|
min-width: 1.2em;
|
|
1225
|
-
text-align: center
|
|
1288
|
+
text-align: center
|
|
1226
1289
|
}
|
|
1227
1290
|
|
|
1228
1291
|
@media (max-width: 768px) {
|
|
1229
|
-
|
|
1230
|
-
|
|
1292
|
+
|
|
1293
|
+
.search-keys,
|
|
1294
|
+
.search-label {
|
|
1295
|
+
display: none
|
|
1231
1296
|
}
|
|
1232
1297
|
|
|
1233
1298
|
.docmd-search-trigger {
|
|
1234
|
-
padding:
|
|
1235
|
-
margin-right:
|
|
1299
|
+
padding: .5rem;
|
|
1300
|
+
margin-right: .5rem
|
|
1236
1301
|
}
|
|
1237
1302
|
}
|
|
1238
1303
|
|
|
1239
1304
|
.docmd-search-modal {
|
|
1240
1305
|
position: fixed;
|
|
1241
|
-
inset:
|
|
1242
|
-
background-color:
|
|
1306
|
+
inset: 0;
|
|
1307
|
+
background-color: #00000080;
|
|
1243
1308
|
z-index: 1000;
|
|
1244
1309
|
display: flex;
|
|
1245
1310
|
justify-content: center;
|
|
1246
1311
|
align-items: flex-start;
|
|
1247
|
-
padding-top: 10vh
|
|
1312
|
+
padding-top: 10vh
|
|
1248
1313
|
}
|
|
1249
1314
|
|
|
1250
1315
|
.docmd-search-box {
|
|
@@ -1253,22 +1318,22 @@ hr {
|
|
|
1253
1318
|
background-color: var(--bg-color);
|
|
1254
1319
|
border: 1px solid var(--border-color);
|
|
1255
1320
|
border-radius: 12px;
|
|
1256
|
-
box-shadow:
|
|
1321
|
+
box-shadow: #0000004d 0 20px 50px -12px;
|
|
1257
1322
|
display: flex;
|
|
1258
1323
|
flex-direction: column;
|
|
1259
1324
|
overflow: hidden;
|
|
1260
|
-
animation:
|
|
1325
|
+
animation: .2s ease-out searchSlideIn
|
|
1261
1326
|
}
|
|
1262
1327
|
|
|
1263
1328
|
@keyframes searchSlideIn {
|
|
1264
1329
|
0% {
|
|
1265
1330
|
opacity: 0;
|
|
1266
|
-
transform: scale(
|
|
1331
|
+
transform: scale(.98) translateY(10px)
|
|
1267
1332
|
}
|
|
1268
1333
|
|
|
1269
1334
|
100% {
|
|
1270
1335
|
opacity: 1;
|
|
1271
|
-
transform: scale(1) translateY(
|
|
1336
|
+
transform: scale(1) translateY(0)
|
|
1272
1337
|
}
|
|
1273
1338
|
}
|
|
1274
1339
|
|
|
@@ -1277,149 +1342,156 @@ hr {
|
|
|
1277
1342
|
align-items: center;
|
|
1278
1343
|
padding: 1rem 1.5rem;
|
|
1279
1344
|
border-bottom: 1px solid var(--border-color);
|
|
1280
|
-
gap: 1rem
|
|
1345
|
+
gap: 1rem
|
|
1281
1346
|
}
|
|
1282
1347
|
|
|
1283
1348
|
.docmd-search-header svg {
|
|
1284
|
-
color: var(--link-color)
|
|
1349
|
+
color: var(--link-color)
|
|
1285
1350
|
}
|
|
1286
1351
|
|
|
1287
1352
|
#docmd-search-input {
|
|
1288
|
-
flex: 1 1 0
|
|
1353
|
+
flex: 1 1 0;
|
|
1289
1354
|
border: medium;
|
|
1290
|
-
background:
|
|
1355
|
+
background: 0 0;
|
|
1291
1356
|
font-size: 1.1rem;
|
|
1292
1357
|
color: var(--text-color);
|
|
1293
|
-
outline: currentcolor
|
|
1358
|
+
outline: currentcolor
|
|
1294
1359
|
}
|
|
1295
1360
|
|
|
1296
1361
|
.docmd-search-close {
|
|
1297
|
-
background:
|
|
1362
|
+
background: 0 0;
|
|
1298
1363
|
border: medium;
|
|
1299
1364
|
cursor: pointer;
|
|
1300
1365
|
color: var(--text-muted, #888);
|
|
1301
|
-
padding:
|
|
1302
|
-
display: flex
|
|
1366
|
+
padding: 0;
|
|
1367
|
+
display: flex
|
|
1303
1368
|
}
|
|
1304
1369
|
|
|
1305
1370
|
.docmd-search-results {
|
|
1306
1371
|
max-height: 60vh;
|
|
1307
1372
|
overflow-y: auto;
|
|
1308
|
-
padding:
|
|
1373
|
+
padding: .5rem
|
|
1309
1374
|
}
|
|
1310
1375
|
|
|
1311
1376
|
.search-result-item {
|
|
1312
1377
|
display: block;
|
|
1313
|
-
padding:
|
|
1378
|
+
padding: .75rem 1rem;
|
|
1314
1379
|
border-radius: 6px;
|
|
1315
1380
|
text-decoration: none;
|
|
1316
1381
|
color: var(--text-color);
|
|
1317
1382
|
margin-bottom: 2px;
|
|
1318
1383
|
border-left-width: 3px;
|
|
1319
1384
|
border-left-style: solid;
|
|
1320
|
-
border-left-color: transparent
|
|
1385
|
+
border-left-color: transparent
|
|
1321
1386
|
}
|
|
1322
1387
|
|
|
1323
|
-
.search-result-item
|
|
1388
|
+
.search-result-item.selected,
|
|
1389
|
+
.search-result-item:focus,
|
|
1390
|
+
.search-result-item:hover {
|
|
1324
1391
|
background-color: var(--sidebar-bg);
|
|
1325
1392
|
border-left-color: var(--link-color);
|
|
1326
1393
|
text-decoration: none;
|
|
1327
|
-
cursor: pointer
|
|
1394
|
+
cursor: pointer
|
|
1328
1395
|
}
|
|
1329
1396
|
|
|
1330
1397
|
.search-result-title {
|
|
1331
1398
|
font-weight: 600;
|
|
1332
|
-
font-size:
|
|
1333
|
-
margin-bottom:
|
|
1334
|
-
color: var(--link-color)
|
|
1399
|
+
font-size: .95rem;
|
|
1400
|
+
margin-bottom: .2rem;
|
|
1401
|
+
color: var(--link-color)
|
|
1335
1402
|
}
|
|
1336
1403
|
|
|
1337
1404
|
.search-result-preview {
|
|
1338
|
-
font-size:
|
|
1405
|
+
font-size: .8rem;
|
|
1339
1406
|
color: var(--text-muted, #666);
|
|
1340
1407
|
white-space: nowrap;
|
|
1341
1408
|
overflow: hidden;
|
|
1342
|
-
text-overflow: ellipsis
|
|
1409
|
+
text-overflow: ellipsis
|
|
1343
1410
|
}
|
|
1344
1411
|
|
|
1345
|
-
.search-
|
|
1412
|
+
.search-error,
|
|
1413
|
+
.search-no-results {
|
|
1346
1414
|
padding: 2rem;
|
|
1347
1415
|
text-align: center;
|
|
1348
|
-
color: var(--text-muted, #666)
|
|
1416
|
+
color: var(--text-muted, #666)
|
|
1349
1417
|
}
|
|
1350
1418
|
|
|
1351
|
-
.search-
|
|
1419
|
+
.search-error,
|
|
1420
|
+
.search-initial,
|
|
1421
|
+
.search-no-results {
|
|
1352
1422
|
padding: 3rem 2rem;
|
|
1353
1423
|
text-align: center;
|
|
1354
1424
|
color: var(--text-muted, #666);
|
|
1355
|
-
font-size:
|
|
1425
|
+
font-size: .95rem
|
|
1356
1426
|
}
|
|
1357
1427
|
|
|
1358
1428
|
.search-result-preview mark {
|
|
1359
|
-
background-color:
|
|
1429
|
+
background-color: #ffeb3b66;
|
|
1360
1430
|
color: inherit;
|
|
1361
|
-
padding:
|
|
1362
|
-
border-radius: 2px
|
|
1431
|
+
padding: 0 2px;
|
|
1432
|
+
border-radius: 2px
|
|
1363
1433
|
}
|
|
1364
1434
|
|
|
1365
|
-
:root[data-theme=
|
|
1366
|
-
background-color:
|
|
1367
|
-
color:
|
|
1435
|
+
:root[data-theme=dark] .search-result-preview mark {
|
|
1436
|
+
background-color: #ffeb3b40;
|
|
1437
|
+
color: #fff
|
|
1368
1438
|
}
|
|
1369
1439
|
|
|
1370
1440
|
.docmd-search-footer {
|
|
1371
|
-
padding:
|
|
1441
|
+
padding: .75rem 1.5rem;
|
|
1372
1442
|
background-color: var(--sidebar-bg);
|
|
1373
1443
|
border-top: 1px solid var(--border-color);
|
|
1374
|
-
font-size:
|
|
1444
|
+
font-size: .75rem;
|
|
1375
1445
|
color: var(--text-muted, #888);
|
|
1376
1446
|
display: flex;
|
|
1377
1447
|
gap: 1rem;
|
|
1378
|
-
justify-content: flex-end
|
|
1448
|
+
justify-content: flex-end
|
|
1379
1449
|
}
|
|
1380
1450
|
|
|
1381
1451
|
.sidebar-menu-button {
|
|
1382
|
-
font-size: 1.5em
|
|
1452
|
+
font-size: 1.5em
|
|
1383
1453
|
}
|
|
1384
1454
|
|
|
1385
1455
|
.mobile-view {
|
|
1386
|
-
display: none
|
|
1456
|
+
display: none
|
|
1387
1457
|
}
|
|
1388
1458
|
|
|
1389
1459
|
.float-left {
|
|
1390
|
-
float: left
|
|
1460
|
+
float: left
|
|
1391
1461
|
}
|
|
1392
1462
|
|
|
1393
1463
|
.float-right {
|
|
1394
|
-
float: right
|
|
1464
|
+
float: right
|
|
1395
1465
|
}
|
|
1396
1466
|
|
|
1397
1467
|
@keyframes heartbeat {
|
|
1398
|
-
|
|
1399
|
-
|
|
1468
|
+
|
|
1469
|
+
0%,
|
|
1470
|
+
100% {
|
|
1471
|
+
transform: scale(1)
|
|
1400
1472
|
}
|
|
1401
1473
|
|
|
1402
1474
|
50% {
|
|
1403
|
-
transform: scale(1.1)
|
|
1475
|
+
transform: scale(1.1)
|
|
1404
1476
|
}
|
|
1405
1477
|
}
|
|
1406
1478
|
|
|
1407
1479
|
@media (max-width: 1024px) {
|
|
1408
1480
|
.content-layout {
|
|
1409
1481
|
display: flex;
|
|
1410
|
-
flex-direction: column-reverse
|
|
1482
|
+
flex-direction: column-reverse
|
|
1411
1483
|
}
|
|
1412
1484
|
|
|
1413
1485
|
.toc-sidebar {
|
|
1414
1486
|
width: 100%;
|
|
1415
1487
|
position: static;
|
|
1416
|
-
margin-bottom: 1rem
|
|
1488
|
+
margin-bottom: 1rem
|
|
1417
1489
|
}
|
|
1418
1490
|
}
|
|
1419
1491
|
|
|
1420
1492
|
@media (max-width: 768px) {
|
|
1421
1493
|
body {
|
|
1422
|
-
flex-direction: column
|
|
1494
|
+
flex-direction: column
|
|
1423
1495
|
}
|
|
1424
1496
|
|
|
1425
1497
|
.sidebar {
|
|
@@ -1431,16 +1503,16 @@ hr {
|
|
|
1431
1503
|
border-right-color: currentcolor;
|
|
1432
1504
|
border-bottom: 1px solid var(--border-color);
|
|
1433
1505
|
padding: 10px 20px;
|
|
1434
|
-
z-index: 100
|
|
1506
|
+
z-index: 100
|
|
1435
1507
|
}
|
|
1436
1508
|
|
|
1437
1509
|
.sidebar-header {
|
|
1438
|
-
border-bottom-width:
|
|
1510
|
+
border-bottom-width: 0;
|
|
1439
1511
|
border-bottom-style: none;
|
|
1440
1512
|
border-bottom-color: currentcolor;
|
|
1441
|
-
padding-bottom:
|
|
1442
|
-
margin-bottom:
|
|
1443
|
-
text-align: left
|
|
1513
|
+
padding-bottom: 0;
|
|
1514
|
+
margin-bottom: 0;
|
|
1515
|
+
text-align: left
|
|
1444
1516
|
}
|
|
1445
1517
|
|
|
1446
1518
|
.mobile-view {
|
|
@@ -1450,178 +1522,186 @@ hr {
|
|
|
1450
1522
|
cursor: pointer;
|
|
1451
1523
|
padding: 4px;
|
|
1452
1524
|
border-radius: 4px;
|
|
1453
|
-
transition: background-color
|
|
1525
|
+
transition: background-color .2s
|
|
1454
1526
|
}
|
|
1455
1527
|
|
|
1456
1528
|
.mobile-view:hover {
|
|
1457
|
-
background-color: var(--sidebar-bg)
|
|
1529
|
+
background-color: var(--sidebar-bg)
|
|
1458
1530
|
}
|
|
1459
1531
|
|
|
1460
1532
|
.sidebar-menu-button {
|
|
1461
1533
|
font-size: 1.5em;
|
|
1462
|
-
margin-top: 5px
|
|
1534
|
+
margin-top: 5px
|
|
1463
1535
|
}
|
|
1464
1536
|
|
|
1465
|
-
.sidebar
|
|
1466
|
-
|
|
1537
|
+
.sidebar #theme-toggle-button,
|
|
1538
|
+
.sidebar-nav {
|
|
1539
|
+
max-height: 0;
|
|
1467
1540
|
display: none;
|
|
1468
1541
|
opacity: 0;
|
|
1469
|
-
transition: max-height
|
|
1470
|
-
margin-top:
|
|
1542
|
+
transition: max-height .3s ease-out, opacity .3s ease-out, margin .3s;
|
|
1543
|
+
margin-top: 0
|
|
1471
1544
|
}
|
|
1472
1545
|
|
|
1473
|
-
.sidebar.mobile-expanded
|
|
1546
|
+
.sidebar.mobile-expanded #theme-toggle-button,
|
|
1547
|
+
.sidebar.mobile-expanded .sidebar-nav {
|
|
1474
1548
|
max-height: initial;
|
|
1475
1549
|
opacity: 1;
|
|
1476
1550
|
margin-top: 1rem;
|
|
1477
|
-
display: block
|
|
1551
|
+
display: block
|
|
1478
1552
|
}
|
|
1479
1553
|
|
|
1480
1554
|
.sidebar-toggle-button {
|
|
1481
|
-
display: none !important
|
|
1555
|
+
display: none !important
|
|
1482
1556
|
}
|
|
1483
1557
|
|
|
1484
1558
|
.logo-link img {
|
|
1485
|
-
float: left
|
|
1559
|
+
float: left
|
|
1486
1560
|
}
|
|
1487
1561
|
|
|
1488
1562
|
.toc-container {
|
|
1489
1563
|
background-color: var(--sidebar-bg);
|
|
1490
1564
|
border: 1px solid var(--border-color);
|
|
1491
1565
|
border-radius: 6px;
|
|
1492
|
-
padding:
|
|
1493
|
-
margin-bottom: 2rem
|
|
1566
|
+
padding: .75rem 1rem;
|
|
1567
|
+
margin-bottom: 2rem
|
|
1494
1568
|
}
|
|
1495
1569
|
|
|
1496
1570
|
.toc-title {
|
|
1497
1571
|
display: flex;
|
|
1498
1572
|
justify-content: space-between;
|
|
1499
1573
|
align-items: center;
|
|
1500
|
-
margin-bottom:
|
|
1574
|
+
margin-bottom: 0;
|
|
1501
1575
|
cursor: pointer;
|
|
1502
|
-
border-bottom-width:
|
|
1576
|
+
border-bottom-width: 0;
|
|
1503
1577
|
border-bottom-style: none;
|
|
1504
1578
|
border-bottom-color: currentcolor;
|
|
1505
|
-
padding-bottom:
|
|
1579
|
+
padding-bottom: 0
|
|
1506
1580
|
}
|
|
1507
1581
|
|
|
1508
1582
|
.toc-list {
|
|
1509
|
-
|
|
1583
|
+
height: 0;
|
|
1510
1584
|
overflow: hidden;
|
|
1511
1585
|
opacity: 0;
|
|
1512
|
-
transition: max-height
|
|
1513
|
-
margin-top:
|
|
1586
|
+
transition: max-height .3s ease-out, opacity .3s ease-out, margin .3s;
|
|
1587
|
+
margin-top: 0
|
|
1514
1588
|
}
|
|
1515
1589
|
|
|
1516
1590
|
.toc-container.mobile-expanded .toc-list {
|
|
1517
|
-
|
|
1591
|
+
height: auto;
|
|
1518
1592
|
opacity: 1;
|
|
1519
|
-
margin-top: 1rem
|
|
1593
|
+
margin-top: 1rem
|
|
1520
1594
|
}
|
|
1521
1595
|
|
|
1522
1596
|
.toc-container.mobile-expanded .toc-title {
|
|
1523
|
-
margin-bottom:
|
|
1597
|
+
margin-bottom: .5rem
|
|
1524
1598
|
}
|
|
1525
1599
|
|
|
1526
1600
|
.toc-menu-button svg {
|
|
1527
|
-
transition: transform
|
|
1601
|
+
transition: transform .3s
|
|
1528
1602
|
}
|
|
1529
1603
|
|
|
1530
1604
|
.toc-container.mobile-expanded .toc-menu-button svg {
|
|
1531
|
-
transform: rotate(180deg)
|
|
1605
|
+
transform: rotate(180deg)
|
|
1532
1606
|
}
|
|
1533
1607
|
|
|
1534
1608
|
.main-content-wrapper {
|
|
1535
|
-
margin-left:
|
|
1609
|
+
margin-left: 0
|
|
1536
1610
|
}
|
|
1537
1611
|
|
|
1538
1612
|
.content-area {
|
|
1539
|
-
padding: 15px
|
|
1613
|
+
padding: 15px
|
|
1540
1614
|
}
|
|
1541
1615
|
|
|
1542
|
-
.footer-content,
|
|
1616
|
+
.footer-content,
|
|
1617
|
+
.page-navigation {
|
|
1543
1618
|
flex-direction: column;
|
|
1544
|
-
gap: 1rem
|
|
1619
|
+
gap: 1rem
|
|
1545
1620
|
}
|
|
1546
1621
|
|
|
1547
|
-
.branding-footer,
|
|
1548
|
-
|
|
1622
|
+
.branding-footer,
|
|
1623
|
+
.user-footer {
|
|
1624
|
+
text-align: center
|
|
1549
1625
|
}
|
|
1550
1626
|
|
|
1551
|
-
.next-page,
|
|
1627
|
+
.next-page,
|
|
1628
|
+
.next-page-placeholder,
|
|
1629
|
+
.prev-page,
|
|
1630
|
+
.prev-page-placeholder {
|
|
1552
1631
|
width: 100%;
|
|
1553
|
-
max-width: 100
|
|
1632
|
+
max-width: 100%
|
|
1554
1633
|
}
|
|
1555
1634
|
|
|
1556
|
-
img.align-left,
|
|
1635
|
+
img.align-left,
|
|
1636
|
+
img.align-right {
|
|
1557
1637
|
float: none;
|
|
1558
1638
|
margin-left: auto;
|
|
1559
|
-
margin-right: auto
|
|
1639
|
+
margin-right: auto
|
|
1560
1640
|
}
|
|
1561
1641
|
|
|
1562
1642
|
.docmd-container .image-gallery {
|
|
1563
|
-
grid-template-columns: 1fr
|
|
1643
|
+
grid-template-columns: 1fr
|
|
1564
1644
|
}
|
|
1565
1645
|
|
|
1566
1646
|
.docmd-search-modal {
|
|
1567
|
-
padding-top:
|
|
1647
|
+
padding-top: 0;
|
|
1568
1648
|
background-color: var(--bg-color);
|
|
1569
|
-
align-items: flex-start
|
|
1649
|
+
align-items: flex-start
|
|
1570
1650
|
}
|
|
1571
1651
|
|
|
1572
1652
|
.docmd-search-box {
|
|
1573
1653
|
max-width: 100%;
|
|
1574
1654
|
height: 100%;
|
|
1575
|
-
border-radius:
|
|
1655
|
+
border-radius: 0;
|
|
1576
1656
|
border: medium;
|
|
1577
|
-
box-shadow: none
|
|
1657
|
+
box-shadow: none
|
|
1578
1658
|
}
|
|
1579
1659
|
|
|
1580
1660
|
.docmd-search-header {
|
|
1581
|
-
padding: 1rem
|
|
1661
|
+
padding: 1rem
|
|
1582
1662
|
}
|
|
1583
1663
|
|
|
1584
1664
|
#docmd-search-input {
|
|
1585
|
-
font-size: 1rem
|
|
1665
|
+
font-size: 1rem
|
|
1586
1666
|
}
|
|
1587
1667
|
|
|
1588
1668
|
.docmd-search-footer {
|
|
1589
|
-
display: none
|
|
1669
|
+
display: none
|
|
1590
1670
|
}
|
|
1591
1671
|
|
|
1592
1672
|
.docmd-search-results {
|
|
1593
1673
|
max-height: none;
|
|
1594
|
-
flex: 1 1 0
|
|
1674
|
+
flex: 1 1 0
|
|
1595
1675
|
}
|
|
1596
1676
|
|
|
1597
1677
|
.sponsor-ribbon {
|
|
1598
1678
|
bottom: 10px;
|
|
1599
|
-
right: 10px
|
|
1679
|
+
right: 10px
|
|
1600
1680
|
}
|
|
1601
1681
|
|
|
1602
1682
|
.sponsor-link {
|
|
1603
|
-
padding:
|
|
1604
|
-
font-size:
|
|
1683
|
+
padding: .5rem 1rem;
|
|
1684
|
+
font-size: .75rem
|
|
1605
1685
|
}
|
|
1606
1686
|
|
|
1607
1687
|
.sponsor-icon {
|
|
1608
|
-
width:
|
|
1609
|
-
height:
|
|
1688
|
+
width: .875rem;
|
|
1689
|
+
height: .875rem
|
|
1610
1690
|
}
|
|
1611
1691
|
|
|
1612
1692
|
.changelog-entry {
|
|
1613
1693
|
grid-template-columns: 1fr;
|
|
1614
|
-
gap: 1rem
|
|
1694
|
+
gap: 1rem
|
|
1615
1695
|
}
|
|
1616
1696
|
|
|
1617
1697
|
.changelog-meta {
|
|
1618
1698
|
text-align: left;
|
|
1619
|
-
padding-top:
|
|
1699
|
+
padding-top: 0
|
|
1620
1700
|
}
|
|
1621
1701
|
|
|
1622
1702
|
.changelog-body {
|
|
1623
1703
|
border-left: 2px solid var(--border-color);
|
|
1624
1704
|
padding-left: 1.5rem;
|
|
1625
|
-
margin-left:
|
|
1705
|
+
margin-left: .5rem
|
|
1626
1706
|
}
|
|
1627
1707
|
}
|