vectra-client 0.2.1 → 0.2.2
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.
- checksums.yaml +4 -4
- data/README.md +140 -334
- data/docs/Gemfile +10 -0
- data/docs/_config.yml +20 -0
- data/docs/_layouts/default.html +14 -0
- data/docs/_layouts/home.html +33 -0
- data/docs/_layouts/page.html +20 -0
- data/docs/_site/api/overview/index.html +145 -0
- data/docs/_site/assets/main.css +649 -0
- data/docs/_site/assets/main.css.map +1 -0
- data/docs/_site/assets/minima-social-icons.svg +33 -0
- data/docs/_site/assets/style.css +295 -0
- data/docs/_site/community/contributing/index.html +110 -0
- data/docs/_site/examples/basic-usage/index.html +117 -0
- data/docs/_site/examples/index.html +58 -0
- data/docs/_site/feed.xml +1 -0
- data/docs/_site/guides/getting-started/index.html +106 -0
- data/docs/_site/guides/installation/index.html +82 -0
- data/docs/_site/index.html +92 -0
- data/docs/_site/providers/index.html +119 -0
- data/docs/_site/providers/pgvector/index.html +155 -0
- data/docs/_site/providers/pinecone/index.html +121 -0
- data/docs/_site/providers/qdrant/index.html +124 -0
- data/docs/_site/providers/weaviate/index.html +123 -0
- data/docs/_site/robots.txt +1 -0
- data/docs/_site/sitemap.xml +39 -0
- data/docs/api/overview.md +126 -0
- data/docs/assets/style.css +295 -0
- data/docs/community/contributing.md +89 -0
- data/docs/examples/basic-usage.md +102 -0
- data/docs/examples/index.md +32 -0
- data/docs/guides/getting-started.md +90 -0
- data/docs/guides/installation.md +67 -0
- data/docs/index.md +53 -0
- data/docs/providers/index.md +62 -0
- data/docs/providers/pgvector.md +95 -0
- data/docs/providers/pinecone.md +72 -0
- data/docs/providers/qdrant.md +73 -0
- data/docs/providers/weaviate.md +72 -0
- data/lib/vectra/version.rb +1 -1
- data/netlify.toml +12 -0
- metadata +39 -5
- data/IMPLEMENTATION_GUIDE.md +0 -686
- data/NEW_FEATURES_v0.2.0.md +0 -459
- data/RELEASE_CHECKLIST_v0.2.0.md +0 -383
- data/USAGE_EXAMPLES.md +0 -787
|
@@ -0,0 +1,649 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Reset some basic elements
|
|
3
|
+
*/
|
|
4
|
+
body, h1, h2, h3, h4, h5, h6,
|
|
5
|
+
p, blockquote, pre, hr,
|
|
6
|
+
dl, dd, ol, ul, figure {
|
|
7
|
+
margin: 0;
|
|
8
|
+
padding: 0;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* Basic styling
|
|
13
|
+
*/
|
|
14
|
+
body {
|
|
15
|
+
font: 400 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
16
|
+
color: #111;
|
|
17
|
+
background-color: #fdfdfd;
|
|
18
|
+
-webkit-text-size-adjust: 100%;
|
|
19
|
+
-webkit-font-feature-settings: "kern" 1;
|
|
20
|
+
-moz-font-feature-settings: "kern" 1;
|
|
21
|
+
-o-font-feature-settings: "kern" 1;
|
|
22
|
+
font-feature-settings: "kern" 1;
|
|
23
|
+
font-kerning: normal;
|
|
24
|
+
display: flex;
|
|
25
|
+
min-height: 100vh;
|
|
26
|
+
flex-direction: column;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Set `margin-bottom` to maintain vertical rhythm
|
|
31
|
+
*/
|
|
32
|
+
h1, h2, h3, h4, h5, h6,
|
|
33
|
+
p, blockquote, pre,
|
|
34
|
+
ul, ol, dl, figure,
|
|
35
|
+
.highlight {
|
|
36
|
+
margin-bottom: 15px;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* `main` element
|
|
41
|
+
*/
|
|
42
|
+
main {
|
|
43
|
+
display: block; /* Default value of `display` of `main` element is 'inline' in IE 11. */
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Images
|
|
48
|
+
*/
|
|
49
|
+
img {
|
|
50
|
+
max-width: 100%;
|
|
51
|
+
vertical-align: middle;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Figures
|
|
56
|
+
*/
|
|
57
|
+
figure > img {
|
|
58
|
+
display: block;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
figcaption {
|
|
62
|
+
font-size: 14px;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Lists
|
|
67
|
+
*/
|
|
68
|
+
ul, ol {
|
|
69
|
+
margin-left: 30px;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
li > ul,
|
|
73
|
+
li > ol {
|
|
74
|
+
margin-bottom: 0;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Headings
|
|
79
|
+
*/
|
|
80
|
+
h1, h2, h3, h4, h5, h6 {
|
|
81
|
+
font-weight: 400;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* Links
|
|
86
|
+
*/
|
|
87
|
+
a {
|
|
88
|
+
color: #2a7ae2;
|
|
89
|
+
text-decoration: none;
|
|
90
|
+
}
|
|
91
|
+
a:visited {
|
|
92
|
+
color: rgb(22.9483471074, 86.2541322314, 168.5516528926);
|
|
93
|
+
}
|
|
94
|
+
a:hover {
|
|
95
|
+
color: #111;
|
|
96
|
+
text-decoration: underline;
|
|
97
|
+
}
|
|
98
|
+
.social-media-list a:hover {
|
|
99
|
+
text-decoration: none;
|
|
100
|
+
}
|
|
101
|
+
.social-media-list a:hover .username {
|
|
102
|
+
text-decoration: underline;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* Blockquotes
|
|
107
|
+
*/
|
|
108
|
+
blockquote {
|
|
109
|
+
color: #828282;
|
|
110
|
+
border-left: 4px solid #e8e8e8;
|
|
111
|
+
padding-left: 15px;
|
|
112
|
+
font-size: 18px;
|
|
113
|
+
letter-spacing: -1px;
|
|
114
|
+
font-style: italic;
|
|
115
|
+
}
|
|
116
|
+
blockquote > :last-child {
|
|
117
|
+
margin-bottom: 0;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* Code formatting
|
|
122
|
+
*/
|
|
123
|
+
pre,
|
|
124
|
+
code {
|
|
125
|
+
font-size: 15px;
|
|
126
|
+
border: 1px solid #e8e8e8;
|
|
127
|
+
border-radius: 3px;
|
|
128
|
+
background-color: #eef;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
code {
|
|
132
|
+
padding: 1px 5px;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
pre {
|
|
136
|
+
padding: 8px 12px;
|
|
137
|
+
overflow-x: auto;
|
|
138
|
+
}
|
|
139
|
+
pre > code {
|
|
140
|
+
border: 0;
|
|
141
|
+
padding-right: 0;
|
|
142
|
+
padding-left: 0;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* Wrapper
|
|
147
|
+
*/
|
|
148
|
+
.wrapper {
|
|
149
|
+
max-width: -webkit-calc(800px - (30px * 2));
|
|
150
|
+
max-width: calc(800px - 30px * 2);
|
|
151
|
+
margin-right: auto;
|
|
152
|
+
margin-left: auto;
|
|
153
|
+
padding-right: 30px;
|
|
154
|
+
padding-left: 30px;
|
|
155
|
+
}
|
|
156
|
+
@media screen and (max-width: 800px) {
|
|
157
|
+
.wrapper {
|
|
158
|
+
max-width: -webkit-calc(800px - (30px));
|
|
159
|
+
max-width: calc(800px - (30px));
|
|
160
|
+
padding-right: 15px;
|
|
161
|
+
padding-left: 15px;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* Clearfix
|
|
167
|
+
*/
|
|
168
|
+
.footer-col-wrapper:after, .wrapper:after {
|
|
169
|
+
content: "";
|
|
170
|
+
display: table;
|
|
171
|
+
clear: both;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
/**
|
|
175
|
+
* Icons
|
|
176
|
+
*/
|
|
177
|
+
.svg-icon {
|
|
178
|
+
width: 16px;
|
|
179
|
+
height: 16px;
|
|
180
|
+
display: inline-block;
|
|
181
|
+
fill: #828282;
|
|
182
|
+
padding-right: 5px;
|
|
183
|
+
vertical-align: text-top;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.social-media-list li + li {
|
|
187
|
+
padding-top: 5px;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
/**
|
|
191
|
+
* Tables
|
|
192
|
+
*/
|
|
193
|
+
table {
|
|
194
|
+
margin-bottom: 30px;
|
|
195
|
+
width: 100%;
|
|
196
|
+
text-align: left;
|
|
197
|
+
color: rgb(62.9, 62.9, 62.9);
|
|
198
|
+
border-collapse: collapse;
|
|
199
|
+
border: 1px solid #e8e8e8;
|
|
200
|
+
}
|
|
201
|
+
table tr:nth-child(even) {
|
|
202
|
+
background-color: rgb(247.3, 247.3, 247.3);
|
|
203
|
+
}
|
|
204
|
+
table th, table td {
|
|
205
|
+
padding: 9.999999999px 15px;
|
|
206
|
+
}
|
|
207
|
+
table th {
|
|
208
|
+
background-color: rgb(239.65, 239.65, 239.65);
|
|
209
|
+
border: 1px solid rgb(221.8, 221.8, 221.8);
|
|
210
|
+
border-bottom-color: rgb(201.4, 201.4, 201.4);
|
|
211
|
+
}
|
|
212
|
+
table td {
|
|
213
|
+
border: 1px solid #e8e8e8;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
/**
|
|
217
|
+
* Site header
|
|
218
|
+
*/
|
|
219
|
+
.site-header {
|
|
220
|
+
border-top: 5px solid rgb(66.25, 66.25, 66.25);
|
|
221
|
+
border-bottom: 1px solid #e8e8e8;
|
|
222
|
+
min-height: 55.95px;
|
|
223
|
+
position: relative;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.site-title {
|
|
227
|
+
font-size: 26px;
|
|
228
|
+
font-weight: 300;
|
|
229
|
+
line-height: 54px;
|
|
230
|
+
letter-spacing: -1px;
|
|
231
|
+
margin-bottom: 0;
|
|
232
|
+
float: left;
|
|
233
|
+
}
|
|
234
|
+
.site-title, .site-title:visited {
|
|
235
|
+
color: rgb(66.25, 66.25, 66.25);
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.site-nav {
|
|
239
|
+
float: right;
|
|
240
|
+
line-height: 54px;
|
|
241
|
+
}
|
|
242
|
+
.site-nav .nav-trigger {
|
|
243
|
+
display: none;
|
|
244
|
+
}
|
|
245
|
+
.site-nav .menu-icon {
|
|
246
|
+
display: none;
|
|
247
|
+
}
|
|
248
|
+
.site-nav .page-link {
|
|
249
|
+
color: #111;
|
|
250
|
+
line-height: 1.5;
|
|
251
|
+
}
|
|
252
|
+
.site-nav .page-link:not(:last-child) {
|
|
253
|
+
margin-right: 20px;
|
|
254
|
+
}
|
|
255
|
+
@media screen and (max-width: 600px) {
|
|
256
|
+
.site-nav {
|
|
257
|
+
position: absolute;
|
|
258
|
+
top: 9px;
|
|
259
|
+
right: 15px;
|
|
260
|
+
background-color: #fdfdfd;
|
|
261
|
+
border: 1px solid #e8e8e8;
|
|
262
|
+
border-radius: 5px;
|
|
263
|
+
text-align: right;
|
|
264
|
+
}
|
|
265
|
+
.site-nav label[for=nav-trigger] {
|
|
266
|
+
display: block;
|
|
267
|
+
float: right;
|
|
268
|
+
width: 36px;
|
|
269
|
+
height: 36px;
|
|
270
|
+
z-index: 2;
|
|
271
|
+
cursor: pointer;
|
|
272
|
+
}
|
|
273
|
+
.site-nav .menu-icon {
|
|
274
|
+
display: block;
|
|
275
|
+
float: right;
|
|
276
|
+
width: 36px;
|
|
277
|
+
height: 26px;
|
|
278
|
+
line-height: 0;
|
|
279
|
+
padding-top: 10px;
|
|
280
|
+
text-align: center;
|
|
281
|
+
}
|
|
282
|
+
.site-nav .menu-icon > svg {
|
|
283
|
+
fill: rgb(66.25, 66.25, 66.25);
|
|
284
|
+
}
|
|
285
|
+
.site-nav input ~ .trigger {
|
|
286
|
+
clear: both;
|
|
287
|
+
display: none;
|
|
288
|
+
}
|
|
289
|
+
.site-nav input:checked ~ .trigger {
|
|
290
|
+
display: block;
|
|
291
|
+
padding-bottom: 5px;
|
|
292
|
+
}
|
|
293
|
+
.site-nav .page-link {
|
|
294
|
+
display: block;
|
|
295
|
+
margin-left: 20px;
|
|
296
|
+
padding: 5px 10px;
|
|
297
|
+
}
|
|
298
|
+
.site-nav .page-link:not(:last-child) {
|
|
299
|
+
margin-right: 0;
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
/**
|
|
304
|
+
* Site footer
|
|
305
|
+
*/
|
|
306
|
+
.site-footer {
|
|
307
|
+
border-top: 1px solid #e8e8e8;
|
|
308
|
+
padding: 30px 0;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.footer-heading {
|
|
312
|
+
font-size: 18px;
|
|
313
|
+
margin-bottom: 15px;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.contact-list,
|
|
317
|
+
.social-media-list {
|
|
318
|
+
list-style: none;
|
|
319
|
+
margin-left: 0;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.footer-col-wrapper {
|
|
323
|
+
font-size: 15px;
|
|
324
|
+
color: #828282;
|
|
325
|
+
margin-left: -15px;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.footer-col {
|
|
329
|
+
float: left;
|
|
330
|
+
margin-bottom: 15px;
|
|
331
|
+
padding-left: 15px;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.footer-col-1 {
|
|
335
|
+
width: -webkit-calc(35% - (30px / 2));
|
|
336
|
+
width: calc(35% - 30px / 2);
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.footer-col-2 {
|
|
340
|
+
width: -webkit-calc(20% - (30px / 2));
|
|
341
|
+
width: calc(20% - 30px / 2);
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.footer-col-3 {
|
|
345
|
+
width: -webkit-calc(45% - (30px / 2));
|
|
346
|
+
width: calc(45% - 30px / 2);
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
@media screen and (max-width: 800px) {
|
|
350
|
+
.footer-col-1,
|
|
351
|
+
.footer-col-2 {
|
|
352
|
+
width: -webkit-calc(50% - (30px / 2));
|
|
353
|
+
width: calc(50% - 30px / 2);
|
|
354
|
+
}
|
|
355
|
+
.footer-col-3 {
|
|
356
|
+
width: -webkit-calc(100% - (30px / 2));
|
|
357
|
+
width: calc(100% - 30px / 2);
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
@media screen and (max-width: 600px) {
|
|
361
|
+
.footer-col {
|
|
362
|
+
float: none;
|
|
363
|
+
width: -webkit-calc(100% - (30px / 2));
|
|
364
|
+
width: calc(100% - 30px / 2);
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
/**
|
|
368
|
+
* Page content
|
|
369
|
+
*/
|
|
370
|
+
.page-content {
|
|
371
|
+
padding: 30px 0;
|
|
372
|
+
flex: 1;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
.page-heading {
|
|
376
|
+
font-size: 32px;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.post-list-heading {
|
|
380
|
+
font-size: 28px;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.post-list {
|
|
384
|
+
margin-left: 0;
|
|
385
|
+
list-style: none;
|
|
386
|
+
}
|
|
387
|
+
.post-list > li {
|
|
388
|
+
margin-bottom: 30px;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
.post-meta {
|
|
392
|
+
font-size: 14px;
|
|
393
|
+
color: #828282;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.post-link {
|
|
397
|
+
display: block;
|
|
398
|
+
font-size: 24px;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
/**
|
|
402
|
+
* Posts
|
|
403
|
+
*/
|
|
404
|
+
.post-header {
|
|
405
|
+
margin-bottom: 30px;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.post-title {
|
|
409
|
+
font-size: 42px;
|
|
410
|
+
letter-spacing: -1px;
|
|
411
|
+
line-height: 1;
|
|
412
|
+
}
|
|
413
|
+
@media screen and (max-width: 800px) {
|
|
414
|
+
.post-title {
|
|
415
|
+
font-size: 36px;
|
|
416
|
+
}
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.post-content {
|
|
420
|
+
margin-bottom: 30px;
|
|
421
|
+
}
|
|
422
|
+
.post-content h2 {
|
|
423
|
+
font-size: 32px;
|
|
424
|
+
}
|
|
425
|
+
@media screen and (max-width: 800px) {
|
|
426
|
+
.post-content h2 {
|
|
427
|
+
font-size: 28px;
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
.post-content h3 {
|
|
431
|
+
font-size: 26px;
|
|
432
|
+
}
|
|
433
|
+
@media screen and (max-width: 800px) {
|
|
434
|
+
.post-content h3 {
|
|
435
|
+
font-size: 22px;
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
.post-content h4 {
|
|
439
|
+
font-size: 20px;
|
|
440
|
+
}
|
|
441
|
+
@media screen and (max-width: 800px) {
|
|
442
|
+
.post-content h4 {
|
|
443
|
+
font-size: 18px;
|
|
444
|
+
}
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
/**
|
|
448
|
+
* Syntax highlighting styles
|
|
449
|
+
*/
|
|
450
|
+
.highlight {
|
|
451
|
+
background: #fff;
|
|
452
|
+
}
|
|
453
|
+
.highlighter-rouge .highlight {
|
|
454
|
+
background: #eef;
|
|
455
|
+
}
|
|
456
|
+
.highlight .c {
|
|
457
|
+
color: #998;
|
|
458
|
+
font-style: italic;
|
|
459
|
+
}
|
|
460
|
+
.highlight .err {
|
|
461
|
+
color: #a61717;
|
|
462
|
+
background-color: #e3d2d2;
|
|
463
|
+
}
|
|
464
|
+
.highlight .k {
|
|
465
|
+
font-weight: bold;
|
|
466
|
+
}
|
|
467
|
+
.highlight .o {
|
|
468
|
+
font-weight: bold;
|
|
469
|
+
}
|
|
470
|
+
.highlight .cm {
|
|
471
|
+
color: #998;
|
|
472
|
+
font-style: italic;
|
|
473
|
+
}
|
|
474
|
+
.highlight .cp {
|
|
475
|
+
color: #999;
|
|
476
|
+
font-weight: bold;
|
|
477
|
+
}
|
|
478
|
+
.highlight .c1 {
|
|
479
|
+
color: #998;
|
|
480
|
+
font-style: italic;
|
|
481
|
+
}
|
|
482
|
+
.highlight .cs {
|
|
483
|
+
color: #999;
|
|
484
|
+
font-weight: bold;
|
|
485
|
+
font-style: italic;
|
|
486
|
+
}
|
|
487
|
+
.highlight .gd {
|
|
488
|
+
color: #000;
|
|
489
|
+
background-color: #fdd;
|
|
490
|
+
}
|
|
491
|
+
.highlight .gd .x {
|
|
492
|
+
color: #000;
|
|
493
|
+
background-color: #faa;
|
|
494
|
+
}
|
|
495
|
+
.highlight .ge {
|
|
496
|
+
font-style: italic;
|
|
497
|
+
}
|
|
498
|
+
.highlight .gr {
|
|
499
|
+
color: #a00;
|
|
500
|
+
}
|
|
501
|
+
.highlight .gh {
|
|
502
|
+
color: #999;
|
|
503
|
+
}
|
|
504
|
+
.highlight .gi {
|
|
505
|
+
color: #000;
|
|
506
|
+
background-color: #dfd;
|
|
507
|
+
}
|
|
508
|
+
.highlight .gi .x {
|
|
509
|
+
color: #000;
|
|
510
|
+
background-color: #afa;
|
|
511
|
+
}
|
|
512
|
+
.highlight .go {
|
|
513
|
+
color: #888;
|
|
514
|
+
}
|
|
515
|
+
.highlight .gp {
|
|
516
|
+
color: #555;
|
|
517
|
+
}
|
|
518
|
+
.highlight .gs {
|
|
519
|
+
font-weight: bold;
|
|
520
|
+
}
|
|
521
|
+
.highlight .gu {
|
|
522
|
+
color: #aaa;
|
|
523
|
+
}
|
|
524
|
+
.highlight .gt {
|
|
525
|
+
color: #a00;
|
|
526
|
+
}
|
|
527
|
+
.highlight .kc {
|
|
528
|
+
font-weight: bold;
|
|
529
|
+
}
|
|
530
|
+
.highlight .kd {
|
|
531
|
+
font-weight: bold;
|
|
532
|
+
}
|
|
533
|
+
.highlight .kp {
|
|
534
|
+
font-weight: bold;
|
|
535
|
+
}
|
|
536
|
+
.highlight .kr {
|
|
537
|
+
font-weight: bold;
|
|
538
|
+
}
|
|
539
|
+
.highlight .kt {
|
|
540
|
+
color: #458;
|
|
541
|
+
font-weight: bold;
|
|
542
|
+
}
|
|
543
|
+
.highlight .m {
|
|
544
|
+
color: #099;
|
|
545
|
+
}
|
|
546
|
+
.highlight .s {
|
|
547
|
+
color: #d14;
|
|
548
|
+
}
|
|
549
|
+
.highlight .na {
|
|
550
|
+
color: #008080;
|
|
551
|
+
}
|
|
552
|
+
.highlight .nb {
|
|
553
|
+
color: #0086B3;
|
|
554
|
+
}
|
|
555
|
+
.highlight .nc {
|
|
556
|
+
color: #458;
|
|
557
|
+
font-weight: bold;
|
|
558
|
+
}
|
|
559
|
+
.highlight .no {
|
|
560
|
+
color: #008080;
|
|
561
|
+
}
|
|
562
|
+
.highlight .ni {
|
|
563
|
+
color: #800080;
|
|
564
|
+
}
|
|
565
|
+
.highlight .ne {
|
|
566
|
+
color: #900;
|
|
567
|
+
font-weight: bold;
|
|
568
|
+
}
|
|
569
|
+
.highlight .nf {
|
|
570
|
+
color: #900;
|
|
571
|
+
font-weight: bold;
|
|
572
|
+
}
|
|
573
|
+
.highlight .nn {
|
|
574
|
+
color: #555;
|
|
575
|
+
}
|
|
576
|
+
.highlight .nt {
|
|
577
|
+
color: #000080;
|
|
578
|
+
}
|
|
579
|
+
.highlight .nv {
|
|
580
|
+
color: #008080;
|
|
581
|
+
}
|
|
582
|
+
.highlight .ow {
|
|
583
|
+
font-weight: bold;
|
|
584
|
+
}
|
|
585
|
+
.highlight .w {
|
|
586
|
+
color: #bbb;
|
|
587
|
+
}
|
|
588
|
+
.highlight .mf {
|
|
589
|
+
color: #099;
|
|
590
|
+
}
|
|
591
|
+
.highlight .mh {
|
|
592
|
+
color: #099;
|
|
593
|
+
}
|
|
594
|
+
.highlight .mi {
|
|
595
|
+
color: #099;
|
|
596
|
+
}
|
|
597
|
+
.highlight .mo {
|
|
598
|
+
color: #099;
|
|
599
|
+
}
|
|
600
|
+
.highlight .sb {
|
|
601
|
+
color: #d14;
|
|
602
|
+
}
|
|
603
|
+
.highlight .sc {
|
|
604
|
+
color: #d14;
|
|
605
|
+
}
|
|
606
|
+
.highlight .sd {
|
|
607
|
+
color: #d14;
|
|
608
|
+
}
|
|
609
|
+
.highlight .s2 {
|
|
610
|
+
color: #d14;
|
|
611
|
+
}
|
|
612
|
+
.highlight .se {
|
|
613
|
+
color: #d14;
|
|
614
|
+
}
|
|
615
|
+
.highlight .sh {
|
|
616
|
+
color: #d14;
|
|
617
|
+
}
|
|
618
|
+
.highlight .si {
|
|
619
|
+
color: #d14;
|
|
620
|
+
}
|
|
621
|
+
.highlight .sx {
|
|
622
|
+
color: #d14;
|
|
623
|
+
}
|
|
624
|
+
.highlight .sr {
|
|
625
|
+
color: #009926;
|
|
626
|
+
}
|
|
627
|
+
.highlight .s1 {
|
|
628
|
+
color: #d14;
|
|
629
|
+
}
|
|
630
|
+
.highlight .ss {
|
|
631
|
+
color: #990073;
|
|
632
|
+
}
|
|
633
|
+
.highlight .bp {
|
|
634
|
+
color: #999;
|
|
635
|
+
}
|
|
636
|
+
.highlight .vc {
|
|
637
|
+
color: #008080;
|
|
638
|
+
}
|
|
639
|
+
.highlight .vg {
|
|
640
|
+
color: #008080;
|
|
641
|
+
}
|
|
642
|
+
.highlight .vi {
|
|
643
|
+
color: #008080;
|
|
644
|
+
}
|
|
645
|
+
.highlight .il {
|
|
646
|
+
color: #099;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
/*# sourceMappingURL=main.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../../usr/local/rvm/gems/ruby-3.4.7/gems/minima-2.5.2/_sass/minima/_base.scss","../../../../usr/local/rvm/gems/ruby-3.4.7/gems/minima-2.5.2/_sass/minima.scss","../../../../usr/local/rvm/gems/ruby-3.4.7/gems/minima-2.5.2/_sass/minima/_layout.scss","../../../../usr/local/rvm/gems/ruby-3.4.7/gems/minima-2.5.2/_sass/minima/_syntax-highlighting.scss"],"names":[],"mappings":"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","sourcesContent":["/**\n * Reset some basic elements\n */\nbody, h1, h2, h3, h4, h5, h6,\np, blockquote, pre, hr,\ndl, dd, ol, ul, figure {\n margin: 0;\n padding: 0;\n}\n\n\n\n/**\n * Basic styling\n */\nbody {\n font: $base-font-weight #{$base-font-size}/#{$base-line-height} $base-font-family;\n color: $text-color;\n background-color: $background-color;\n -webkit-text-size-adjust: 100%;\n -webkit-font-feature-settings: \"kern\" 1;\n -moz-font-feature-settings: \"kern\" 1;\n -o-font-feature-settings: \"kern\" 1;\n font-feature-settings: \"kern\" 1;\n font-kerning: normal;\n display: flex;\n min-height: 100vh;\n flex-direction: column;\n}\n\n\n\n/**\n * Set `margin-bottom` to maintain vertical rhythm\n */\nh1, h2, h3, h4, h5, h6,\np, blockquote, pre,\nul, ol, dl, figure,\n%vertical-rhythm {\n margin-bottom: $spacing-unit * 0.5;\n}\n\n\n\n/**\n * `main` element\n */\nmain {\n display: block; /* Default value of `display` of `main` element is 'inline' in IE 11. */\n}\n\n\n\n/**\n * Images\n */\nimg {\n max-width: 100%;\n vertical-align: middle;\n}\n\n\n\n/**\n * Figures\n */\nfigure > img {\n display: block;\n}\n\nfigcaption {\n font-size: $small-font-size;\n}\n\n\n\n/**\n * Lists\n */\nul, ol {\n margin-left: $spacing-unit;\n}\n\nli {\n > ul,\n > ol {\n margin-bottom: 0;\n }\n}\n\n\n\n/**\n * Headings\n */\nh1, h2, h3, h4, h5, h6 {\n font-weight: $base-font-weight;\n}\n\n\n\n/**\n * Links\n */\na {\n color: $brand-color;\n text-decoration: none;\n\n &:visited {\n color: darken($brand-color, 15%);\n }\n\n &:hover {\n color: $text-color;\n text-decoration: underline;\n }\n\n .social-media-list &:hover {\n text-decoration: none;\n\n .username {\n text-decoration: underline;\n }\n }\n}\n\n\n/**\n * Blockquotes\n */\nblockquote {\n color: $grey-color;\n border-left: 4px solid $grey-color-light;\n padding-left: $spacing-unit * 0.5;\n @include relative-font-size(1.125);\n letter-spacing: -1px;\n font-style: italic;\n\n > :last-child {\n margin-bottom: 0;\n }\n}\n\n\n\n/**\n * Code formatting\n */\npre,\ncode {\n @include relative-font-size(0.9375);\n border: 1px solid $grey-color-light;\n border-radius: 3px;\n background-color: #eef;\n}\n\ncode {\n padding: 1px 5px;\n}\n\npre {\n padding: 8px 12px;\n overflow-x: auto;\n\n > code {\n border: 0;\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n\n\n/**\n * Wrapper\n */\n.wrapper {\n max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit} * 2));\n max-width: calc(#{$content-width} - (#{$spacing-unit} * 2));\n margin-right: auto;\n margin-left: auto;\n padding-right: $spacing-unit;\n padding-left: $spacing-unit;\n @extend %clearfix;\n\n @include media-query($on-laptop) {\n max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit}));\n max-width: calc(#{$content-width} - (#{$spacing-unit}));\n padding-right: $spacing-unit * 0.5;\n padding-left: $spacing-unit * 0.5;\n }\n}\n\n\n\n/**\n * Clearfix\n */\n%clearfix:after {\n content: \"\";\n display: table;\n clear: both;\n}\n\n\n\n/**\n * Icons\n */\n\n.svg-icon {\n width: 16px;\n height: 16px;\n display: inline-block;\n fill: #{$grey-color};\n padding-right: 5px;\n vertical-align: text-top;\n}\n\n.social-media-list {\n li + li {\n padding-top: 5px;\n }\n}\n\n\n\n/**\n * Tables\n */\ntable {\n margin-bottom: $spacing-unit;\n width: 100%;\n text-align: $table-text-align;\n color: lighten($text-color, 18%);\n border-collapse: collapse;\n border: 1px solid $grey-color-light;\n tr {\n &:nth-child(even) {\n background-color: lighten($grey-color-light, 6%);\n }\n }\n th, td {\n padding: ($spacing-unit * 0.3333333333) ($spacing-unit * 0.5);\n }\n th {\n background-color: lighten($grey-color-light, 3%);\n border: 1px solid darken($grey-color-light, 4%);\n border-bottom-color: darken($grey-color-light, 12%);\n }\n td {\n border: 1px solid $grey-color-light;\n }\n}\n","@charset \"utf-8\";\n\n// Define defaults for each variable.\n\n$base-font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\" !default;\n$base-font-size: 16px !default;\n$base-font-weight: 400 !default;\n$small-font-size: $base-font-size * 0.875 !default;\n$base-line-height: 1.5 !default;\n\n$spacing-unit: 30px !default;\n\n$text-color: #111 !default;\n$background-color: #fdfdfd !default;\n$brand-color: #2a7ae2 !default;\n\n$grey-color: #828282 !default;\n$grey-color-light: lighten($grey-color, 40%) !default;\n$grey-color-dark: darken($grey-color, 25%) !default;\n\n$table-text-align: left !default;\n\n// Width of the content area\n$content-width: 800px !default;\n\n$on-palm: 600px !default;\n$on-laptop: 800px !default;\n\n// Use media queries like this:\n// @include media-query($on-palm) {\n// .wrapper {\n// padding-right: $spacing-unit / 2;\n// padding-left: $spacing-unit / 2;\n// }\n// }\n@mixin media-query($device) {\n @media screen and (max-width: $device) {\n @content;\n }\n}\n\n@mixin relative-font-size($ratio) {\n font-size: $base-font-size * $ratio;\n}\n\n// Import partials.\n@import\n \"minima/base\",\n \"minima/layout\",\n \"minima/syntax-highlighting\"\n;\n","/**\n * Site header\n */\n.site-header {\n border-top: 5px solid $grey-color-dark;\n border-bottom: 1px solid $grey-color-light;\n min-height: $spacing-unit * 1.865;\n\n // Positioning context for the mobile navigation icon\n position: relative;\n}\n\n.site-title {\n @include relative-font-size(1.625);\n font-weight: 300;\n line-height: $base-line-height * $base-font-size * 2.25;\n letter-spacing: -1px;\n margin-bottom: 0;\n float: left;\n\n &,\n &:visited {\n color: $grey-color-dark;\n }\n}\n\n.site-nav {\n float: right;\n line-height: $base-line-height * $base-font-size * 2.25;\n\n .nav-trigger {\n display: none;\n }\n\n .menu-icon {\n display: none;\n }\n\n .page-link {\n color: $text-color;\n line-height: $base-line-height;\n\n // Gaps between nav items, but not on the last one\n &:not(:last-child) {\n margin-right: 20px;\n }\n }\n\n @include media-query($on-palm) {\n position: absolute;\n top: 9px;\n right: $spacing-unit * 0.5;\n background-color: $background-color;\n border: 1px solid $grey-color-light;\n border-radius: 5px;\n text-align: right;\n\n label[for=\"nav-trigger\"] {\n display: block;\n float: right;\n width: 36px;\n height: 36px;\n z-index: 2;\n cursor: pointer;\n }\n\n .menu-icon {\n display: block;\n float: right;\n width: 36px;\n height: 26px;\n line-height: 0;\n padding-top: 10px;\n text-align: center;\n\n > svg {\n fill: $grey-color-dark;\n }\n }\n\n input ~ .trigger {\n clear: both;\n display: none;\n }\n\n input:checked ~ .trigger {\n display: block;\n padding-bottom: 5px;\n }\n\n .page-link {\n display: block;\n margin-left: 20px;\n padding: 5px 10px;\n\n &:not(:last-child) {\n margin-right: 0;\n }\n }\n }\n}\n\n\n\n/**\n * Site footer\n */\n.site-footer {\n border-top: 1px solid $grey-color-light;\n padding: $spacing-unit 0;\n}\n\n.footer-heading {\n @include relative-font-size(1.125);\n margin-bottom: $spacing-unit * 0.5;\n}\n\n.contact-list,\n.social-media-list {\n list-style: none;\n margin-left: 0;\n}\n\n.footer-col-wrapper {\n @include relative-font-size(0.9375);\n color: $grey-color;\n margin-left: -$spacing-unit * 0.5;\n @extend %clearfix;\n}\n\n.footer-col {\n float: left;\n margin-bottom: $spacing-unit * 0.5;\n padding-left: $spacing-unit * 0.5;\n}\n\n.footer-col-1 {\n width: -webkit-calc(35% - (#{$spacing-unit} / 2));\n width: calc(35% - (#{$spacing-unit} / 2));\n}\n\n.footer-col-2 {\n width: -webkit-calc(20% - (#{$spacing-unit} / 2));\n width: calc(20% - (#{$spacing-unit} / 2));\n}\n\n.footer-col-3 {\n width: -webkit-calc(45% - (#{$spacing-unit} / 2));\n width: calc(45% - (#{$spacing-unit} / 2));\n}\n\n@include media-query($on-laptop) {\n .footer-col-1,\n .footer-col-2 {\n width: -webkit-calc(50% - (#{$spacing-unit} / 2));\n width: calc(50% - (#{$spacing-unit} / 2));\n }\n\n .footer-col-3 {\n width: -webkit-calc(100% - (#{$spacing-unit} / 2));\n width: calc(100% - (#{$spacing-unit} / 2));\n }\n}\n\n@include media-query($on-palm) {\n .footer-col {\n float: none;\n width: -webkit-calc(100% - (#{$spacing-unit} / 2));\n width: calc(100% - (#{$spacing-unit} / 2));\n }\n}\n\n\n\n/**\n * Page content\n */\n.page-content {\n padding: $spacing-unit 0;\n flex: 1;\n}\n\n.page-heading {\n @include relative-font-size(2);\n}\n\n.post-list-heading {\n @include relative-font-size(1.75);\n}\n\n.post-list {\n margin-left: 0;\n list-style: none;\n\n > li {\n margin-bottom: $spacing-unit;\n }\n}\n\n.post-meta {\n font-size: $small-font-size;\n color: $grey-color;\n}\n\n.post-link {\n display: block;\n @include relative-font-size(1.5);\n}\n\n\n\n/**\n * Posts\n */\n.post-header {\n margin-bottom: $spacing-unit;\n}\n\n.post-title {\n @include relative-font-size(2.625);\n letter-spacing: -1px;\n line-height: 1;\n\n @include media-query($on-laptop) {\n @include relative-font-size(2.25);\n }\n}\n\n.post-content {\n margin-bottom: $spacing-unit;\n\n h2 {\n @include relative-font-size(2);\n\n @include media-query($on-laptop) {\n @include relative-font-size(1.75);\n }\n }\n\n h3 {\n @include relative-font-size(1.625);\n\n @include media-query($on-laptop) {\n @include relative-font-size(1.375);\n }\n }\n\n h4 {\n @include relative-font-size(1.25);\n\n @include media-query($on-laptop) {\n @include relative-font-size(1.125);\n }\n }\n}\n","/**\n * Syntax highlighting styles\n */\n.highlight {\n background: #fff;\n @extend %vertical-rhythm;\n\n .highlighter-rouge & {\n background: #eef;\n }\n\n .c { color: #998; font-style: italic } // Comment\n .err { color: #a61717; background-color: #e3d2d2 } // Error\n .k { font-weight: bold } // Keyword\n .o { font-weight: bold } // Operator\n .cm { color: #998; font-style: italic } // Comment.Multiline\n .cp { color: #999; font-weight: bold } // Comment.Preproc\n .c1 { color: #998; font-style: italic } // Comment.Single\n .cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special\n .gd { color: #000; background-color: #fdd } // Generic.Deleted\n .gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific\n .ge { font-style: italic } // Generic.Emph\n .gr { color: #a00 } // Generic.Error\n .gh { color: #999 } // Generic.Heading\n .gi { color: #000; background-color: #dfd } // Generic.Inserted\n .gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific\n .go { color: #888 } // Generic.Output\n .gp { color: #555 } // Generic.Prompt\n .gs { font-weight: bold } // Generic.Strong\n .gu { color: #aaa } // Generic.Subheading\n .gt { color: #a00 } // Generic.Traceback\n .kc { font-weight: bold } // Keyword.Constant\n .kd { font-weight: bold } // Keyword.Declaration\n .kp { font-weight: bold } // Keyword.Pseudo\n .kr { font-weight: bold } // Keyword.Reserved\n .kt { color: #458; font-weight: bold } // Keyword.Type\n .m { color: #099 } // Literal.Number\n .s { color: #d14 } // Literal.String\n .na { color: #008080 } // Name.Attribute\n .nb { color: #0086B3 } // Name.Builtin\n .nc { color: #458; font-weight: bold } // Name.Class\n .no { color: #008080 } // Name.Constant\n .ni { color: #800080 } // Name.Entity\n .ne { color: #900; font-weight: bold } // Name.Exception\n .nf { color: #900; font-weight: bold } // Name.Function\n .nn { color: #555 } // Name.Namespace\n .nt { color: #000080 } // Name.Tag\n .nv { color: #008080 } // Name.Variable\n .ow { font-weight: bold } // Operator.Word\n .w { color: #bbb } // Text.Whitespace\n .mf { color: #099 } // Literal.Number.Float\n .mh { color: #099 } // Literal.Number.Hex\n .mi { color: #099 } // Literal.Number.Integer\n .mo { color: #099 } // Literal.Number.Oct\n .sb { color: #d14 } // Literal.String.Backtick\n .sc { color: #d14 } // Literal.String.Char\n .sd { color: #d14 } // Literal.String.Doc\n .s2 { color: #d14 } // Literal.String.Double\n .se { color: #d14 } // Literal.String.Escape\n .sh { color: #d14 } // Literal.String.Heredoc\n .si { color: #d14 } // Literal.String.Interpol\n .sx { color: #d14 } // Literal.String.Other\n .sr { color: #009926 } // Literal.String.Regex\n .s1 { color: #d14 } // Literal.String.Single\n .ss { color: #990073 } // Literal.String.Symbol\n .bp { color: #999 } // Name.Builtin.Pseudo\n .vc { color: #008080 } // Name.Variable.Class\n .vg { color: #008080 } // Name.Variable.Global\n .vi { color: #008080 } // Name.Variable.Instance\n .il { color: #099 } // Literal.Number.Integer.Long\n}\n"],"file":"main.css"}
|