jekyll-theme-superb 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/assets/css/style.css +967 -0
  3. metadata +2 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c72135f444f043807d0731bf16585c01c39f7095085dc7d9e3f49d382fc87f47
4
- data.tar.gz: 4bfc980ac998e2c37648a742c4879b05266e1a38776dfe0489639781a88e42f0
3
+ metadata.gz: 977e44fe6e20ad2eee9ae6cef641a07fbb2030f98ef0bdd1eef4098ee74c8b2c
4
+ data.tar.gz: 3aa39230bde287162e35dba283248557d3d2f489cdf4f9b0c06191dc3302b845
5
5
  SHA512:
6
- metadata.gz: 04ccace13d1691ee940516c7d54c95e1ac8ab6ddab52a61160b891d0c7b6b7ac7576a7ca0e5280e760eec0687f2a874e4e1f20145490c382c013a838386bc310
7
- data.tar.gz: ba2ed680d8fed84d0f1f550d81ec798a7a5360541889e60b79fbc44b575d24523b0471f80185393ac86ef4317efb03cebf38b118f3a1d7f4bb0b29a5575d2cce
6
+ metadata.gz: 4917128dbf92ca1a1bcde9e52285e85b59c80b32fe06b5bd3ac21f36c4d28f516d9cb78bd9187ba3d206e09db0fdecdedb0ed9a838c5b7ef54c9125456e1e531
7
+ data.tar.gz: cf6bcd8f3c4d9b4671677a7e5c57a19e4a8fbe0257b6de1691d89f2c520b7e8e2100f8c238a6d404e79ac3d9bed530b79f4605c43ef6b47950668883b638a9de
@@ -0,0 +1,967 @@
1
+ /*
2
+ ! tailwindcss v3.0.9 | MIT License | https://tailwindcss.com
3
+ *//*
4
+ 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
5
+ 2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
6
+ */
7
+
8
+ *,
9
+ ::before,
10
+ ::after {
11
+ box-sizing: border-box; /* 1 */
12
+ border-width: 0; /* 2 */
13
+ border-style: solid; /* 2 */
14
+ border-color: currentColor; /* 2 */
15
+ }
16
+
17
+ ::before,
18
+ ::after {
19
+ --tw-content: '';
20
+ }
21
+
22
+ /*
23
+ 1. Use a consistent sensible line-height in all browsers.
24
+ 2. Prevent adjustments of font size after orientation changes in iOS.
25
+ 3. Use a more readable tab size.
26
+ 4. Use the user's configured `sans` font-family by default.
27
+ */
28
+
29
+ html {
30
+ line-height: 1.5; /* 1 */
31
+ -webkit-text-size-adjust: 100%; /* 2 */
32
+ -moz-tab-size: 4; /* 3 */
33
+ -o-tab-size: 4;
34
+ tab-size: 4; /* 3 */
35
+ font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
36
+ }
37
+
38
+ /*
39
+ 1. Remove the margin in all browsers.
40
+ 2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
41
+ */
42
+
43
+ body {
44
+ margin: 0; /* 1 */
45
+ line-height: inherit; /* 2 */
46
+ }
47
+
48
+ /*
49
+ 1. Add the correct height in Firefox.
50
+ 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
51
+ 3. Ensure horizontal rules are visible by default.
52
+ */
53
+
54
+ hr {
55
+ height: 0; /* 1 */
56
+ color: inherit; /* 2 */
57
+ border-top-width: 1px; /* 3 */
58
+ }
59
+
60
+ /*
61
+ Add the correct text decoration in Chrome, Edge, and Safari.
62
+ */
63
+
64
+ abbr:where([title]) {
65
+ -webkit-text-decoration: underline dotted;
66
+ text-decoration: underline dotted;
67
+ }
68
+
69
+ /*
70
+ Remove the default font size and weight for headings.
71
+ */
72
+
73
+ h1,
74
+ h2,
75
+ h3,
76
+ h4,
77
+ h5,
78
+ h6 {
79
+ font-size: inherit;
80
+ font-weight: inherit;
81
+ }
82
+
83
+ /*
84
+ Reset links to optimize for opt-in styling instead of opt-out.
85
+ */
86
+
87
+ a {
88
+ color: inherit;
89
+ text-decoration: inherit;
90
+ }
91
+
92
+ /*
93
+ Add the correct font weight in Edge and Safari.
94
+ */
95
+
96
+ b,
97
+ strong {
98
+ font-weight: bolder;
99
+ }
100
+
101
+ /*
102
+ 1. Use the user's configured `mono` font family by default.
103
+ 2. Correct the odd `em` font sizing in all browsers.
104
+ */
105
+
106
+ code,
107
+ kbd,
108
+ samp,
109
+ pre {
110
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
111
+ font-size: 1em; /* 2 */
112
+ }
113
+
114
+ /*
115
+ Add the correct font size in all browsers.
116
+ */
117
+
118
+ small {
119
+ font-size: 80%;
120
+ }
121
+
122
+ /*
123
+ Prevent `sub` and `sup` elements from affecting the line height in all browsers.
124
+ */
125
+
126
+ sub,
127
+ sup {
128
+ font-size: 75%;
129
+ line-height: 0;
130
+ position: relative;
131
+ vertical-align: baseline;
132
+ }
133
+
134
+ sub {
135
+ bottom: -0.25em;
136
+ }
137
+
138
+ sup {
139
+ top: -0.5em;
140
+ }
141
+
142
+ /*
143
+ 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
144
+ 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
145
+ 3. Remove gaps between table borders by default.
146
+ */
147
+
148
+ table {
149
+ text-indent: 0; /* 1 */
150
+ border-color: inherit; /* 2 */
151
+ border-collapse: collapse; /* 3 */
152
+ }
153
+
154
+ /*
155
+ 1. Change the font styles in all browsers.
156
+ 2. Remove the margin in Firefox and Safari.
157
+ 3. Remove default padding in all browsers.
158
+ */
159
+
160
+ button,
161
+ input,
162
+ optgroup,
163
+ select,
164
+ textarea {
165
+ font-family: inherit; /* 1 */
166
+ font-size: 100%; /* 1 */
167
+ line-height: inherit; /* 1 */
168
+ color: inherit; /* 1 */
169
+ margin: 0; /* 2 */
170
+ padding: 0; /* 3 */
171
+ }
172
+
173
+ /*
174
+ Remove the inheritance of text transform in Edge and Firefox.
175
+ */
176
+
177
+ button,
178
+ select {
179
+ text-transform: none;
180
+ }
181
+
182
+ /*
183
+ 1. Correct the inability to style clickable types in iOS and Safari.
184
+ 2. Remove default button styles.
185
+ */
186
+
187
+ button,
188
+ [type='button'],
189
+ [type='reset'],
190
+ [type='submit'] {
191
+ -webkit-appearance: button; /* 1 */
192
+ background-color: transparent; /* 2 */
193
+ background-image: none; /* 2 */
194
+ }
195
+
196
+ /*
197
+ Use the modern Firefox focus style for all focusable elements.
198
+ */
199
+
200
+ :-moz-focusring {
201
+ outline: auto;
202
+ }
203
+
204
+ /*
205
+ Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
206
+ */
207
+
208
+ :-moz-ui-invalid {
209
+ box-shadow: none;
210
+ }
211
+
212
+ /*
213
+ Add the correct vertical alignment in Chrome and Firefox.
214
+ */
215
+
216
+ progress {
217
+ vertical-align: baseline;
218
+ }
219
+
220
+ /*
221
+ Correct the cursor style of increment and decrement buttons in Safari.
222
+ */
223
+
224
+ ::-webkit-inner-spin-button,
225
+ ::-webkit-outer-spin-button {
226
+ height: auto;
227
+ }
228
+
229
+ /*
230
+ 1. Correct the odd appearance in Chrome and Safari.
231
+ 2. Correct the outline style in Safari.
232
+ */
233
+
234
+ [type='search'] {
235
+ -webkit-appearance: textfield; /* 1 */
236
+ outline-offset: -2px; /* 2 */
237
+ }
238
+
239
+ /*
240
+ Remove the inner padding in Chrome and Safari on macOS.
241
+ */
242
+
243
+ ::-webkit-search-decoration {
244
+ -webkit-appearance: none;
245
+ }
246
+
247
+ /*
248
+ 1. Correct the inability to style clickable types in iOS and Safari.
249
+ 2. Change font properties to `inherit` in Safari.
250
+ */
251
+
252
+ ::-webkit-file-upload-button {
253
+ -webkit-appearance: button; /* 1 */
254
+ font: inherit; /* 2 */
255
+ }
256
+
257
+ /*
258
+ Add the correct display in Chrome and Safari.
259
+ */
260
+
261
+ summary {
262
+ display: list-item;
263
+ }
264
+
265
+ /*
266
+ Removes the default spacing and border for appropriate elements.
267
+ */
268
+
269
+ blockquote,
270
+ dl,
271
+ dd,
272
+ h1,
273
+ h2,
274
+ h3,
275
+ h4,
276
+ h5,
277
+ h6,
278
+ hr,
279
+ figure,
280
+ p,
281
+ pre {
282
+ margin: 0;
283
+ }
284
+
285
+ fieldset {
286
+ margin: 0;
287
+ padding: 0;
288
+ }
289
+
290
+ legend {
291
+ padding: 0;
292
+ }
293
+
294
+ ol,
295
+ ul,
296
+ menu {
297
+ list-style: none;
298
+ margin: 0;
299
+ padding: 0;
300
+ }
301
+
302
+ /*
303
+ Prevent resizing textareas horizontally by default.
304
+ */
305
+
306
+ textarea {
307
+ resize: vertical;
308
+ }
309
+
310
+ /*
311
+ 1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
312
+ 2. Set the default placeholder color to the user's configured gray 400 color.
313
+ */
314
+
315
+ input::-moz-placeholder, textarea::-moz-placeholder {
316
+ opacity: 1; /* 1 */
317
+ color: #9ca3af; /* 2 */
318
+ }
319
+
320
+ input:-ms-input-placeholder, textarea:-ms-input-placeholder {
321
+ opacity: 1; /* 1 */
322
+ color: #9ca3af; /* 2 */
323
+ }
324
+
325
+ input::placeholder,
326
+ textarea::placeholder {
327
+ opacity: 1; /* 1 */
328
+ color: #9ca3af; /* 2 */
329
+ }
330
+
331
+ /*
332
+ Set the default cursor for buttons.
333
+ */
334
+
335
+ button,
336
+ [role="button"] {
337
+ cursor: pointer;
338
+ }
339
+
340
+ /*
341
+ Make sure disabled buttons don't get the pointer cursor.
342
+ */
343
+ :disabled {
344
+ cursor: default;
345
+ }
346
+
347
+ /*
348
+ 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
349
+ 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
350
+ This can trigger a poorly considered lint error in some tools but is included by design.
351
+ */
352
+
353
+ img,
354
+ svg,
355
+ video,
356
+ canvas,
357
+ audio,
358
+ iframe,
359
+ embed,
360
+ object {
361
+ display: block; /* 1 */
362
+ vertical-align: middle; /* 2 */
363
+ }
364
+
365
+ /*
366
+ Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
367
+ */
368
+
369
+ img,
370
+ video {
371
+ max-width: 100%;
372
+ height: auto;
373
+ }
374
+
375
+ /*
376
+ Ensure the default browser behavior of the `hidden` attribute.
377
+ */
378
+
379
+ [hidden] {
380
+ display: none;
381
+ }
382
+ *, ::before, ::after {
383
+ border-color: currentColor;
384
+ }
385
+ .container {
386
+ width: 100%;
387
+ }
388
+ @media (min-width: 960px) {
389
+
390
+ .container {
391
+ max-width: 960px;
392
+ }
393
+ }
394
+ .prose {
395
+ color: var(--tw-prose-body);
396
+ max-width: 65ch;
397
+ }
398
+ .prose :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
399
+ color: var(--tw-prose-lead);
400
+ font-size: 1.25em;
401
+ line-height: 1.6;
402
+ margin-top: 1.2em;
403
+ margin-bottom: 1.2em;
404
+ }
405
+ .prose :where(a):not(:where([class~="not-prose"] *)) {
406
+ color: var(--tw-prose-links);
407
+ text-decoration: underline;
408
+ font-weight: 500;
409
+ }
410
+ .prose :where(strong):not(:where([class~="not-prose"] *)) {
411
+ color: var(--tw-prose-bold);
412
+ font-weight: 600;
413
+ }
414
+ .prose :where(ol):not(:where([class~="not-prose"] *)) {
415
+ list-style-type: decimal;
416
+ padding-left: 1.625em;
417
+ }
418
+ .prose :where(ol[type="A"]):not(:where([class~="not-prose"] *)) {
419
+ list-style-type: upper-alpha;
420
+ }
421
+ .prose :where(ol[type="a"]):not(:where([class~="not-prose"] *)) {
422
+ list-style-type: lower-alpha;
423
+ }
424
+ .prose :where(ol[type="A" s]):not(:where([class~="not-prose"] *)) {
425
+ list-style-type: upper-alpha;
426
+ }
427
+ .prose :where(ol[type="a" s]):not(:where([class~="not-prose"] *)) {
428
+ list-style-type: lower-alpha;
429
+ }
430
+ .prose :where(ol[type="I"]):not(:where([class~="not-prose"] *)) {
431
+ list-style-type: upper-roman;
432
+ }
433
+ .prose :where(ol[type="i"]):not(:where([class~="not-prose"] *)) {
434
+ list-style-type: lower-roman;
435
+ }
436
+ .prose :where(ol[type="I" s]):not(:where([class~="not-prose"] *)) {
437
+ list-style-type: upper-roman;
438
+ }
439
+ .prose :where(ol[type="i" s]):not(:where([class~="not-prose"] *)) {
440
+ list-style-type: lower-roman;
441
+ }
442
+ .prose :where(ol[type="1"]):not(:where([class~="not-prose"] *)) {
443
+ list-style-type: decimal;
444
+ }
445
+ .prose :where(ul):not(:where([class~="not-prose"] *)) {
446
+ list-style-type: disc;
447
+ padding-left: 1.625em;
448
+ }
449
+ .prose :where(ol > li):not(:where([class~="not-prose"] *))::marker {
450
+ font-weight: 400;
451
+ color: var(--tw-prose-counters);
452
+ }
453
+ .prose :where(ul > li):not(:where([class~="not-prose"] *))::marker {
454
+ color: var(--tw-prose-bullets);
455
+ }
456
+ .prose :where(hr):not(:where([class~="not-prose"] *)) {
457
+ border-color: var(--tw-prose-hr);
458
+ border-top-width: 1px;
459
+ margin-top: 3em;
460
+ margin-bottom: 3em;
461
+ }
462
+ .prose :where(blockquote):not(:where([class~="not-prose"] *)) {
463
+ font-weight: 500;
464
+ font-style: italic;
465
+ color: var(--tw-prose-quotes);
466
+ border-left-width: 0.25rem;
467
+ border-left-color: var(--tw-prose-quote-borders);
468
+ quotes: "\201C""\201D""\2018""\2019";
469
+ margin-top: 1.6em;
470
+ margin-bottom: 1.6em;
471
+ padding-left: 1em;
472
+ }
473
+ .prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"] *))::before {
474
+ content: open-quote;
475
+ }
476
+ .prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"] *))::after {
477
+ content: close-quote;
478
+ }
479
+ .prose :where(h1):not(:where([class~="not-prose"] *)) {
480
+ color: var(--tw-prose-headings);
481
+ font-weight: 800;
482
+ font-size: 2.25em;
483
+ margin-top: 0;
484
+ margin-bottom: 0.8888889em;
485
+ line-height: 1.1111111;
486
+ }
487
+ .prose :where(h1 strong):not(:where([class~="not-prose"] *)) {
488
+ font-weight: 900;
489
+ }
490
+ .prose :where(h2):not(:where([class~="not-prose"] *)) {
491
+ color: var(--tw-prose-headings);
492
+ font-weight: 700;
493
+ font-size: 1.5em;
494
+ margin-top: 2em;
495
+ margin-bottom: 1em;
496
+ line-height: 1.3333333;
497
+ }
498
+ .prose :where(h2 strong):not(:where([class~="not-prose"] *)) {
499
+ font-weight: 800;
500
+ }
501
+ .prose :where(h3):not(:where([class~="not-prose"] *)) {
502
+ color: var(--tw-prose-headings);
503
+ font-weight: 600;
504
+ font-size: 1.25em;
505
+ margin-top: 1.6em;
506
+ margin-bottom: 0.6em;
507
+ line-height: 1.6;
508
+ }
509
+ .prose :where(h3 strong):not(:where([class~="not-prose"] *)) {
510
+ font-weight: 700;
511
+ }
512
+ .prose :where(h4):not(:where([class~="not-prose"] *)) {
513
+ color: var(--tw-prose-headings);
514
+ font-weight: 600;
515
+ margin-top: 1.5em;
516
+ margin-bottom: 0.5em;
517
+ line-height: 1.5;
518
+ }
519
+ .prose :where(h4 strong):not(:where([class~="not-prose"] *)) {
520
+ font-weight: 700;
521
+ }
522
+ .prose :where(figure > *):not(:where([class~="not-prose"] *)) {
523
+ margin-top: 0;
524
+ margin-bottom: 0;
525
+ }
526
+ .prose :where(figcaption):not(:where([class~="not-prose"] *)) {
527
+ color: var(--tw-prose-captions);
528
+ font-size: 0.875em;
529
+ line-height: 1.4285714;
530
+ margin-top: 0.8571429em;
531
+ }
532
+ .prose :where(code):not(:where([class~="not-prose"] *)) {
533
+ color: var(--tw-prose-code);
534
+ font-weight: 600;
535
+ font-size: 0.875em;
536
+ }
537
+ .prose :where(code):not(:where([class~="not-prose"] *))::before {
538
+ content: "`";
539
+ }
540
+ .prose :where(code):not(:where([class~="not-prose"] *))::after {
541
+ content: "`";
542
+ }
543
+ .prose :where(a code):not(:where([class~="not-prose"] *)) {
544
+ color: var(--tw-prose-links);
545
+ }
546
+ .prose :where(pre):not(:where([class~="not-prose"] *)) {
547
+ color: var(--tw-prose-pre-code);
548
+ background-color: var(--tw-prose-pre-bg);
549
+ overflow-x: auto;
550
+ font-weight: 400;
551
+ font-size: 0.875em;
552
+ line-height: 1.7142857;
553
+ margin-top: 1.7142857em;
554
+ margin-bottom: 1.7142857em;
555
+ border-radius: 0.375rem;
556
+ padding-top: 0.8571429em;
557
+ padding-right: 1.1428571em;
558
+ padding-bottom: 0.8571429em;
559
+ padding-left: 1.1428571em;
560
+ }
561
+ .prose :where(pre code):not(:where([class~="not-prose"] *)) {
562
+ background-color: transparent;
563
+ border-width: 0;
564
+ border-radius: 0;
565
+ padding: 0;
566
+ font-weight: inherit;
567
+ color: inherit;
568
+ font-size: inherit;
569
+ font-family: inherit;
570
+ line-height: inherit;
571
+ }
572
+ .prose :where(pre code):not(:where([class~="not-prose"] *))::before {
573
+ content: none;
574
+ }
575
+ .prose :where(pre code):not(:where([class~="not-prose"] *))::after {
576
+ content: none;
577
+ }
578
+ .prose :where(table):not(:where([class~="not-prose"] *)) {
579
+ width: 100%;
580
+ table-layout: auto;
581
+ text-align: left;
582
+ margin-top: 2em;
583
+ margin-bottom: 2em;
584
+ font-size: 0.875em;
585
+ line-height: 1.7142857;
586
+ }
587
+ .prose :where(thead):not(:where([class~="not-prose"] *)) {
588
+ border-bottom-width: 1px;
589
+ border-bottom-color: var(--tw-prose-th-borders);
590
+ }
591
+ .prose :where(thead th):not(:where([class~="not-prose"] *)) {
592
+ color: var(--tw-prose-headings);
593
+ font-weight: 600;
594
+ vertical-align: bottom;
595
+ padding-right: 0.5714286em;
596
+ padding-bottom: 0.5714286em;
597
+ padding-left: 0.5714286em;
598
+ }
599
+ .prose :where(tbody tr):not(:where([class~="not-prose"] *)) {
600
+ border-bottom-width: 1px;
601
+ border-bottom-color: var(--tw-prose-td-borders);
602
+ }
603
+ .prose :where(tbody tr:last-child):not(:where([class~="not-prose"] *)) {
604
+ border-bottom-width: 0;
605
+ }
606
+ .prose :where(tbody td):not(:where([class~="not-prose"] *)) {
607
+ vertical-align: baseline;
608
+ padding-top: 0.5714286em;
609
+ padding-right: 0.5714286em;
610
+ padding-bottom: 0.5714286em;
611
+ padding-left: 0.5714286em;
612
+ }
613
+ .prose {
614
+ --tw-prose-body: #374151;
615
+ --tw-prose-headings: #111827;
616
+ --tw-prose-lead: #4b5563;
617
+ --tw-prose-links: #111827;
618
+ --tw-prose-bold: #111827;
619
+ --tw-prose-counters: #6b7280;
620
+ --tw-prose-bullets: #d1d5db;
621
+ --tw-prose-hr: #e5e7eb;
622
+ --tw-prose-quotes: #111827;
623
+ --tw-prose-quote-borders: #e5e7eb;
624
+ --tw-prose-captions: #6b7280;
625
+ --tw-prose-code: #111827;
626
+ --tw-prose-pre-code: #e5e7eb;
627
+ --tw-prose-pre-bg: #1f2937;
628
+ --tw-prose-th-borders: #d1d5db;
629
+ --tw-prose-td-borders: #e5e7eb;
630
+ --tw-prose-invert-body: #d1d5db;
631
+ --tw-prose-invert-headings: #fff;
632
+ --tw-prose-invert-lead: #9ca3af;
633
+ --tw-prose-invert-links: #fff;
634
+ --tw-prose-invert-bold: #fff;
635
+ --tw-prose-invert-counters: #9ca3af;
636
+ --tw-prose-invert-bullets: #4b5563;
637
+ --tw-prose-invert-hr: #374151;
638
+ --tw-prose-invert-quotes: #f3f4f6;
639
+ --tw-prose-invert-quote-borders: #374151;
640
+ --tw-prose-invert-captions: #9ca3af;
641
+ --tw-prose-invert-code: #fff;
642
+ --tw-prose-invert-pre-code: #d1d5db;
643
+ --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
644
+ --tw-prose-invert-th-borders: #4b5563;
645
+ --tw-prose-invert-td-borders: #374151;
646
+ font-size: 1rem;
647
+ line-height: 1.75;
648
+ }
649
+ .prose :where(p):not(:where([class~="not-prose"] *)) {
650
+ margin-top: 1.25em;
651
+ margin-bottom: 1.25em;
652
+ }
653
+ .prose :where(img):not(:where([class~="not-prose"] *)) {
654
+ margin-top: 2em;
655
+ margin-bottom: 2em;
656
+ }
657
+ .prose :where(video):not(:where([class~="not-prose"] *)) {
658
+ margin-top: 2em;
659
+ margin-bottom: 2em;
660
+ }
661
+ .prose :where(figure):not(:where([class~="not-prose"] *)) {
662
+ margin-top: 2em;
663
+ margin-bottom: 2em;
664
+ }
665
+ .prose :where(h2 code):not(:where([class~="not-prose"] *)) {
666
+ font-size: 0.875em;
667
+ }
668
+ .prose :where(h3 code):not(:where([class~="not-prose"] *)) {
669
+ font-size: 0.9em;
670
+ }
671
+ .prose :where(li):not(:where([class~="not-prose"] *)) {
672
+ margin-top: 0.5em;
673
+ margin-bottom: 0.5em;
674
+ }
675
+ .prose :where(ol > li):not(:where([class~="not-prose"] *)) {
676
+ padding-left: 0.375em;
677
+ }
678
+ .prose :where(ul > li):not(:where([class~="not-prose"] *)) {
679
+ padding-left: 0.375em;
680
+ }
681
+ .prose > :where(ul > li p):not(:where([class~="not-prose"] *)) {
682
+ margin-top: 0.75em;
683
+ margin-bottom: 0.75em;
684
+ }
685
+ .prose > :where(ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
686
+ margin-top: 1.25em;
687
+ }
688
+ .prose > :where(ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
689
+ margin-bottom: 1.25em;
690
+ }
691
+ .prose > :where(ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
692
+ margin-top: 1.25em;
693
+ }
694
+ .prose > :where(ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
695
+ margin-bottom: 1.25em;
696
+ }
697
+ .prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) {
698
+ margin-top: 0.75em;
699
+ margin-bottom: 0.75em;
700
+ }
701
+ .prose :where(hr + *):not(:where([class~="not-prose"] *)) {
702
+ margin-top: 0;
703
+ }
704
+ .prose :where(h2 + *):not(:where([class~="not-prose"] *)) {
705
+ margin-top: 0;
706
+ }
707
+ .prose :where(h3 + *):not(:where([class~="not-prose"] *)) {
708
+ margin-top: 0;
709
+ }
710
+ .prose :where(h4 + *):not(:where([class~="not-prose"] *)) {
711
+ margin-top: 0;
712
+ }
713
+ .prose :where(thead th:first-child):not(:where([class~="not-prose"] *)) {
714
+ padding-left: 0;
715
+ }
716
+ .prose :where(thead th:last-child):not(:where([class~="not-prose"] *)) {
717
+ padding-right: 0;
718
+ }
719
+ .prose :where(tbody td:first-child):not(:where([class~="not-prose"] *)) {
720
+ padding-left: 0;
721
+ }
722
+ .prose :where(tbody td:last-child):not(:where([class~="not-prose"] *)) {
723
+ padding-right: 0;
724
+ }
725
+ .prose > :where(:first-child):not(:where([class~="not-prose"] *)) {
726
+ margin-top: 0;
727
+ }
728
+ .prose > :where(:last-child):not(:where([class~="not-prose"] *)) {
729
+ margin-bottom: 0;
730
+ }
731
+ .mx-auto {
732
+ margin-left: auto;
733
+ margin-right: auto;
734
+ }
735
+ .my-2 {
736
+ margin-top: 0.5rem;
737
+ margin-bottom: 0.5rem;
738
+ }
739
+ .mx-4 {
740
+ margin-left: 1rem;
741
+ margin-right: 1rem;
742
+ }
743
+ .ml-4 {
744
+ margin-left: 1rem;
745
+ }
746
+ .mb-5 {
747
+ margin-bottom: 1.25rem;
748
+ }
749
+ .mb-10 {
750
+ margin-bottom: 2.5rem;
751
+ }
752
+ .mb-6 {
753
+ margin-bottom: 1.5rem;
754
+ }
755
+ .mt-0 {
756
+ margin-top: 0px;
757
+ }
758
+ .inline-block {
759
+ display: inline-block;
760
+ }
761
+ .flex {
762
+ display: flex;
763
+ }
764
+ .contents {
765
+ display: contents;
766
+ }
767
+ .hidden {
768
+ display: none;
769
+ }
770
+ .h-6 {
771
+ height: 1.5rem;
772
+ }
773
+ .w-6 {
774
+ width: 1.5rem;
775
+ }
776
+ .max-w-max {
777
+ max-width: -webkit-max-content;
778
+ max-width: -moz-max-content;
779
+ max-width: max-content;
780
+ }
781
+ .max-w-fit {
782
+ max-width: -webkit-fit-content;
783
+ max-width: -moz-fit-content;
784
+ max-width: fit-content;
785
+ }
786
+ .items-center {
787
+ align-items: center;
788
+ }
789
+ .justify-between {
790
+ justify-content: space-between;
791
+ }
792
+ .space-y-2 > :not([hidden]) ~ :not([hidden]) {
793
+ --tw-space-y-reverse: 0;
794
+ margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
795
+ margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
796
+ }
797
+ .space-x-5 > :not([hidden]) ~ :not([hidden]) {
798
+ --tw-space-x-reverse: 0;
799
+ margin-right: calc(1.25rem * var(--tw-space-x-reverse));
800
+ margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
801
+ }
802
+ .border-t {
803
+ border-top-width: 1px;
804
+ }
805
+ .border-b {
806
+ border-bottom-width: 1px;
807
+ }
808
+ .border-b-2 {
809
+ border-bottom-width: 2px;
810
+ }
811
+ .border-porcelain {
812
+ --tw-border-opacity: 1;
813
+ border-color: rgb(241 243 244 / var(--tw-border-opacity));
814
+ }
815
+ .border-green {
816
+ --tw-border-opacity: 1;
817
+ border-color: rgb(152 184 139 / var(--tw-border-opacity));
818
+ }
819
+ .border-white {
820
+ --tw-border-opacity: 1;
821
+ border-color: rgb(255 255 255 / var(--tw-border-opacity));
822
+ }
823
+ .bg-yellow {
824
+ --tw-bg-opacity: 1;
825
+ background-color: rgb(255 198 52 / var(--tw-bg-opacity));
826
+ }
827
+ .bg-white {
828
+ --tw-bg-opacity: 1;
829
+ background-color: rgb(255 255 255 / var(--tw-bg-opacity));
830
+ }
831
+ .p-4 {
832
+ padding: 1rem;
833
+ }
834
+ .py-4 {
835
+ padding-top: 1rem;
836
+ padding-bottom: 1rem;
837
+ }
838
+ .py-1 {
839
+ padding-top: 0.25rem;
840
+ padding-bottom: 0.25rem;
841
+ }
842
+ .px-2 {
843
+ padding-left: 0.5rem;
844
+ padding-right: 0.5rem;
845
+ }
846
+ .px-4 {
847
+ padding-left: 1rem;
848
+ padding-right: 1rem;
849
+ }
850
+ .py-2 {
851
+ padding-top: 0.5rem;
852
+ padding-bottom: 0.5rem;
853
+ }
854
+ .py-10 {
855
+ padding-top: 2.5rem;
856
+ padding-bottom: 2.5rem;
857
+ }
858
+ .text-center {
859
+ text-align: center;
860
+ }
861
+ .font-merriweather {
862
+ font-family: Merriweather, serif;
863
+ }
864
+ .text-caption {
865
+ font-size: 12px;
866
+ line-height: 16px;
867
+ }
868
+ .text-h4 {
869
+ font-size: 34px;
870
+ line-height: 42px;
871
+ }
872
+ .text-h5 {
873
+ font-size: 24px;
874
+ line-height: 32px;
875
+ }
876
+ .text-subtitle {
877
+ font-size: 16px;
878
+ line-height: 20px;
879
+ }
880
+ .font-bold {
881
+ font-weight: 700;
882
+ }
883
+ .text-green {
884
+ --tw-text-opacity: 1;
885
+ color: rgb(152 184 139 / var(--tw-text-opacity));
886
+ }
887
+ .text-white {
888
+ --tw-text-opacity: 1;
889
+ color: rgb(255 255 255 / var(--tw-text-opacity));
890
+ }
891
+ .text-graphite {
892
+ --tw-text-opacity: 1;
893
+ color: rgb(46 46 46 / var(--tw-text-opacity));
894
+ }
895
+ .text-grey\/50 {
896
+ color: rgb(170 170 170 / 0.5);
897
+ }
898
+ .text-grey {
899
+ --tw-text-opacity: 1;
900
+ color: rgb(170 170 170 / var(--tw-text-opacity));
901
+ }
902
+ .underline {
903
+ -webkit-text-decoration-line: underline;
904
+ text-decoration-line: underline;
905
+ }
906
+ .outline-none {
907
+ outline: 2px solid transparent;
908
+ outline-offset: 2px;
909
+ }
910
+ .transition {
911
+ transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
912
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
913
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
914
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
915
+ transition-duration: 150ms;
916
+ }
917
+ .duration-300 {
918
+ transition-duration: 300ms;
919
+ }
920
+ .hover\:border-b-2:hover {
921
+ border-bottom-width: 2px;
922
+ }
923
+ .hover\:border-graphite:hover {
924
+ --tw-border-opacity: 1;
925
+ border-color: rgb(46 46 46 / var(--tw-border-opacity));
926
+ }
927
+ .hover\:text-green:hover {
928
+ --tw-text-opacity: 1;
929
+ color: rgb(152 184 139 / var(--tw-text-opacity));
930
+ }
931
+ @media (min-width: 960px) {
932
+
933
+ .desktop\:inline {
934
+ display: inline;
935
+ }
936
+
937
+ .desktop\:flex {
938
+ display: flex;
939
+ }
940
+
941
+ .desktop\:hidden {
942
+ display: none;
943
+ }
944
+
945
+ .desktop\:justify-between {
946
+ justify-content: space-between;
947
+ }
948
+
949
+ .desktop\:border-none {
950
+ border-style: none;
951
+ }
952
+
953
+ .desktop\:px-0 {
954
+ padding-left: 0px;
955
+ padding-right: 0px;
956
+ }
957
+
958
+ .desktop\:py-4 {
959
+ padding-top: 1rem;
960
+ padding-bottom: 1rem;
961
+ }
962
+
963
+ .desktop\:text-h3 {
964
+ font-size: 48px;
965
+ line-height: 60px;
966
+ }
967
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-superb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ivanka Todorova
@@ -72,6 +72,7 @@ files:
72
72
  - _layouts/page.html
73
73
  - _layouts/post.html
74
74
  - _sass/theme.scss
75
+ - assets/css/style.css
75
76
  - assets/js/main.js
76
77
  homepage: https://github.com/simplysuperb-dev/jekyll-theme-superb
77
78
  licenses: