jekyll-theme-fica 0.2.0 → 0.3.0

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.
Files changed (62) hide show
  1. checksums.yaml +4 -4
  2. data/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
  3. data/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  4. data/.github/workflows/ci.yaml +5 -2
  5. data/.github/workflows/ci.yaml.orig +34 -0
  6. data/404.html +12 -10
  7. data/License.md +2 -8
  8. data/README.md +53 -49
  9. data/_includes/Footer.html +88 -85
  10. data/_includes/Head.html +24 -12
  11. data/_includes/Header.html +21 -34
  12. data/_includes/assets/BTT.html +8 -0
  13. data/_includes/{Google-Analytics.html → assets/Google-Analytics.html} +12 -12
  14. data/_includes/assets/anchor-headings.html +164 -0
  15. data/_includes/assets/comments.html +16 -0
  16. data/_includes/assets/toc.html +174 -0
  17. data/_layouts/default.html +16 -14
  18. data/_layouts/home.html +25 -67
  19. data/_layouts/page.html +5 -3
  20. data/_layouts/post.html +48 -52
  21. data/_layouts/post_list.html +103 -0
  22. data/_posts/2022-03-31-To-Know-if-the-nav-works.md +9 -8
  23. data/_posts/{2022-04-1-Demo.md → 2022-04-1-Elements-of-Fica-Theme.md} +111 -113
  24. data/_posts/2022-04-5-Getting-Started.md +149 -149
  25. data/_posts/2022-04-6-Creating-a-new-post.md +144 -136
  26. data/_posts/2023-04-24-Fica-Customization.md +43 -0
  27. data/_sass/base.scss +437 -0
  28. data/_sass/{themes/dark theme/highlight.scss → colors/dark-theme/highlight.scss} +362 -362
  29. data/_sass/{themes/dark theme/theme-dark.scss → colors/dark-theme/theme-dark.scss} +132 -142
  30. data/_sass/{themes/light theme/highlight.scss → colors/light-theme/highlight.scss} +198 -198
  31. data/_sass/{themes/light theme/theme-light.scss → colors/light-theme/theme-light.scss} +126 -136
  32. data/_sass/jekyll-theme-fica.scss +1 -8
  33. data/_sass/layouts/Google-fonts.scss +103 -138
  34. data/_sass/layouts/component.scss +272 -0
  35. data/_sass/layouts/layout.scss +657 -718
  36. data/_sass/layouts/typography.scss +492 -0
  37. data/_sass/layouts/variable.scss +215 -0
  38. data/assets/css/Style.scss +4 -13
  39. data/assets/favicons/android-chrome-192x192.png +0 -0
  40. data/assets/favicons/android-chrome-512x512.png +0 -0
  41. data/assets/favicons/apple-touch-icon.png +0 -0
  42. data/assets/favicons/browserconfig.xml +9 -0
  43. data/assets/favicons/favicon-16x16.png +0 -0
  44. data/assets/favicons/favicon-32x32.png +0 -0
  45. data/assets/favicons/favicon.ico +0 -0
  46. data/assets/favicons/mstile-150x150.png +0 -0
  47. data/assets/favicons/safari-pinned-tab.svg +32 -0
  48. data/assets/favicons/site.webmanifest +19 -0
  49. data/assets/img/homepage-pic.png +0 -0
  50. data/bin/run +195 -150
  51. data/js/Main.js +74 -0
  52. data/js/back-to-top.js +39 -48
  53. data/logo.png +0 -0
  54. data/post/index.html +3 -3
  55. metadata +35 -32
  56. data/_includes/BTT.html +0 -7
  57. data/_layouts/post_home.html +0 -113
  58. data/_sass/custom/styles.scss +0 -1
  59. data/_sass/custom/variables.scss +0 -1
  60. data/_sass/layouts/base.scss +0 -579
  61. data/_sass/layouts/variables.scss +0 -230
  62. data/docs/contributing.md +0 -69
@@ -1,579 +0,0 @@
1
- html {
2
- font-size: $font-size;
3
- overflow-x: hidden;
4
-
5
- ::selection {
6
- background-color: $highlight-bg-color;
7
- color: $highlight-text-color;
8
- }
9
- }
10
-
11
- //
12
- // Basic
13
- //
14
- body,
15
- h1,
16
- h2,
17
- h3,
18
- h4,
19
- h5,
20
- h6,
21
- p,
22
- blockquote,
23
- pre,
24
- hr,
25
- dl,
26
- dd,
27
- ol,
28
- ul,
29
- figure {
30
- margin: 0;
31
- padding: 0;
32
- }
33
-
34
- h1,
35
- h2,
36
- h3,
37
- h4,
38
- h5,
39
- h6,
40
- p,
41
- blockquote,
42
- pre,
43
- ul,
44
- ol,
45
- dl,
46
- figure,
47
- %vertical-rhythm {
48
- margin-bottom: $spacing-unit / 2;
49
- }
50
-
51
- hr {
52
- margin-top: $spacing-unit;
53
- margin-bottom: $spacing-unit;
54
- border: 0;
55
- border-top: 2px solid $footer-head-link-color;
56
- border-radius: 7px;
57
- }
58
-
59
- body {
60
- font: $text-font-weight #{$font-size}/#{$line-height} $text-font-family;
61
- color: $text-color;
62
- background-color: $primary_color;
63
- -webkit-text-size-adjust: 100%;
64
- font-kerning: normal;
65
- display: flex;
66
- min-height: 100vh;
67
- flex-direction: column;
68
- overflow-wrap: break-word;
69
- -webkit-font-smoothing: antialiased;
70
- -moz-osx-font-smoothing: grayscale;
71
- word-break: keep-all;
72
-
73
- &::-webkit-scrollbar {
74
- width: 7px;
75
- height: 4px;
76
- }
77
-
78
- &::-webkit-scrollbar-track {
79
- background-color: $primary_color;
80
- }
81
-
82
- &::-webkit-scrollbar-thumb {
83
- background: $scroll_bar_bg_color;
84
- border-radius: 4px;
85
- }
86
- }
87
-
88
- //
89
- // `main` element
90
- //
91
- main {
92
- overflow-y: hidden;
93
- display: block;
94
- opacity: 0;
95
- transform: translateY(3rem);
96
- animation: 208.898ms linear 0s 1 normal forwards running slide-up;
97
- animation-delay: 252.00568990042672ms;
98
- }
99
-
100
- //
101
- // Headings
102
- //
103
- h1 {
104
- font-weight: $h1_fnt-wght;
105
- font-size: $h1_fnt-sze;
106
- }
107
-
108
- h2 {
109
- font-weight: 650;
110
- @include relative-font-size(1.75);
111
-
112
- @media screen and (min-width: $pc-width) {
113
- @include relative-font-size(2);
114
- }
115
- }
116
-
117
- h3 {
118
- font-weight: 600;
119
- font-size: 2.2rem;
120
-
121
- @include relative-font-size(1.375);
122
-
123
- @media screen and (min-width: $pc-width) {
124
- @include relative-font-size(1.625);
125
- }
126
- }
127
-
128
- h4 {
129
- font-weight: 550;
130
- @include relative-font-size(1.25);
131
- }
132
-
133
- h5 {
134
- font-family: 500;
135
- @include relative-font-size(1.125);
136
- }
137
-
138
- h6 {
139
- font-family: 450;
140
- @include relative-font-size(1.0625);
141
- }
142
-
143
-
144
- //
145
- // Lists
146
- //
147
- ul,
148
- ol {
149
- margin-left: $spacing-unit;
150
- }
151
-
152
- //
153
- // Links
154
- //
155
- a {
156
- text-decoration: none;
157
- transition: $transition-links;
158
- color: $link-visited-color;
159
- font-weight: 700;
160
-
161
- &:visited {
162
- color: $link-visited-color;
163
- }
164
-
165
- &:hover {
166
- color: $link-hover-color;
167
- text-decoration: none;
168
- }
169
- }
170
-
171
-
172
- li {
173
-
174
- >ul,
175
- >ol {
176
- margin-bottom: 0;
177
- }
178
- }
179
-
180
- //
181
- // Image
182
- //
183
- img {
184
- max-width: 100%;
185
- height: auto;
186
- }
187
-
188
- //
189
- // BOLD
190
- //
191
- strong {
192
- color: $Bold-color;
193
- }
194
-
195
- //
196
- // Figures
197
- //
198
- figure>img {
199
- display: block;
200
- }
201
-
202
- figcaption {
203
- font-size: $small-font-size;
204
- }
205
-
206
- //
207
- // Blockquotes
208
- //
209
- blockquote {
210
- color: $blockquote-text-color;
211
- border-left: 4px solid $code-background-color;
212
- padding-left: $spacing-unit / 2;
213
- @include relative-font-size(1.125);
214
- font-style: italic;
215
-
216
- > :last-child {
217
- margin-bottom: 0;
218
- }
219
-
220
- i,
221
- em {
222
- font-style: normal;
223
- }
224
- }
225
-
226
- //
227
- // Code format
228
- //
229
- pre,
230
- code {
231
- font-size: 0.95rem;
232
- border: 1px solid $code-background-color;
233
- border-radius: 4px;
234
- font-weight: 700;
235
- background-color: $code-background-color;
236
- color: $code-text-color;
237
-
238
- @include horizontal-scroll();
239
- }
240
-
241
- code {
242
- padding: 1px 5px;
243
-
244
- a {
245
- color: inherit !important;
246
- border-bottom: none !important;
247
- pointer-events: none;
248
- }
249
- }
250
-
251
- pre {
252
- overflow-x: auto;
253
-
254
- >code {
255
- border: 0;
256
- padding-right: 0;
257
- padding-left: 0;
258
- }
259
- }
260
-
261
- .rouge-table {
262
- width: 0%;
263
-
264
- .rouge-gutter {
265
- padding: 0px;
266
- border: 0px;
267
- }
268
-
269
- td.rouge-code {
270
- padding-left: 1rem;
271
- border: 0px;
272
- }
273
-
274
- border: 0px;
275
- margin-bottom: 0px;
276
- }
277
-
278
- .highlight {
279
- border-radius: 5px;
280
- background: $code-background-color;
281
- border: 0px;
282
- @extend %vertical-rhythm;
283
-
284
- pre {
285
- margin-bottom: 0;
286
- font-size: $code-font-family;
287
- line-height: 1.5rem;
288
- word-wrap: normal;
289
- /* Fixed Safari overflow-x */
290
- }
291
-
292
- .lineno {
293
- padding-top: 7px;
294
- padding-bottom: 7px;
295
- padding-left: 0px;
296
- padding-right: 0px;
297
- width: 1%;
298
-
299
- min-width: 20px;
300
- text-align: right;
301
- color: $footer-head-link-color;
302
- -webkit-user-select: none;
303
- -khtml-user-select: none;
304
- -moz-user-select: none;
305
- -ms-user-select: none;
306
- -o-user-select: none;
307
- user-select: none;
308
- }
309
-
310
- // set the dollar sign to non-selectable
311
- .gp {
312
- user-select: none;
313
- }
314
-
315
- table {
316
- td pre {
317
- overflow: visible; // Fixed iOS safari overflow-x
318
- word-break: normal; // Fixed iOS safari linenos code break
319
- }
320
- }
321
-
322
- .highlighter-rouge & {
323
- background: $code-background-color;
324
- }
325
-
326
- }
327
-
328
- // Removes the line numbers default snippets
329
- div {
330
-
331
- &[class^='highlighter-rouge'],
332
- &.language-plaintext.highlighter-rouge,
333
- &.language-console.highlighter-rouge,
334
- &.language-terminal.highlighter-rouge,
335
- &.nolineno {
336
- pre.lineno {
337
- display: none;
338
- }
339
-
340
- td.rouge-code {
341
- padding: 8px 12px;
342
- }
343
-
344
- pre.highlight {
345
- padding: 0px;
346
- padding-bottom: 0px;
347
- }
348
- }
349
- }
350
-
351
- //
352
- // Tooltip
353
- //
354
- .tooltip {
355
- position: relative;
356
- display: inline-block;
357
- }
358
-
359
- .tooltip .tooltiptext {
360
- visibility: hidden;
361
- width: 105px;
362
- background-color: black;
363
- color: #fff;
364
- text-align: center;
365
- border-radius: 6px;
366
- padding: 2px 0;
367
- position: absolute;
368
- z-index: 1;
369
- top: 70%;
370
- left: 50%;
371
- margin-left: -60px;
372
- font-size: 0.90rem;
373
- }
374
-
375
- .tooltip .tooltiptext::after {
376
- content: "";
377
- position: absolute;
378
- bottom: 100%;
379
- left: 50%;
380
- margin-left: -5px;
381
- border-width: 5px;
382
- border-style: solid;
383
- border-color: transparent transparent black transparent;
384
- }
385
-
386
- .tooltip:hover .tooltiptext {
387
- visibility: visible;
388
- }
389
-
390
- //
391
- // Wrappers
392
- //
393
- .wrapper {
394
- max-width: calc(#{$content-width} - (#{$spacing-unit}));
395
- margin-right: auto;
396
- margin-left: auto;
397
- padding-right: $spacing-unit / 2;
398
- padding-left: $spacing-unit / 2;
399
-
400
- @media screen and (min-width: $pc-width) {
401
- max-width: calc(#{$content-width} - (#{$spacing-unit} * 2));
402
- padding-right: $spacing-unit;
403
- padding-left: $spacing-unit;
404
- }
405
- }
406
-
407
- .wrapper_header {
408
- padding-left: 20px;
409
- padding-right: auto;
410
-
411
- @media screen and (min-width: $mobile-width) {
412
- padding-right: 30px;
413
- padding-left: 30px;
414
- }
415
-
416
- @media screen and (min-width: $pc-width) {
417
- padding-right: 70px;
418
- padding-left: 70px;
419
- }
420
- }
421
-
422
- //
423
- // Icons
424
- //
425
-
426
- // .stackoverflow {
427
- // color: #f66a0a;
428
- // }
429
-
430
- // .youtube {
431
- // color: #dd0505;
432
- // }
433
-
434
- // .github {
435
- // color: $Github;
436
-
437
- // }
438
-
439
- .svg-icon {
440
- width: 16px;
441
- height: 16px;
442
- display: inline-block;
443
- fill: currentColor;
444
- padding: 5px 3px 2px 5px;
445
- vertical-align: text-bottom;
446
- }
447
-
448
- .gitlab {
449
- color: $Github;
450
- }
451
-
452
- //
453
- // Tables
454
- //
455
- table {
456
- margin-bottom: $spacing-unit;
457
- width: 100%;
458
- text-align: $table-text-align;
459
- color: $table-text-color;
460
- border-collapse: collapse;
461
-
462
- @include horizontal-scroll();
463
-
464
- tr {
465
- &:nth-child(even) {
466
- background-color: $table-zebra-color;
467
- }
468
- }
469
-
470
- th {
471
- padding: ($spacing-unit / 3) ($spacing-unit / 2);
472
- border-bottom: 3px solid $text-color;
473
- border-left: 1px solid $border-color;
474
- border-right: 1px solid $border-color;
475
- }
476
-
477
- td {
478
- padding: ($spacing-unit / 3) ($spacing-unit / 2);
479
- border-left: 1px solid $border-color;
480
- border-right: 1px solid $border-color;
481
- }
482
-
483
- th {
484
- background-color: $table-header-bg-color;
485
- }
486
- }
487
-
488
- dl {
489
- padding: 0;
490
-
491
- dt {
492
- padding: 0;
493
- margin-top: 1rem;
494
- font-size: $font-size;
495
- font-weight: 690;
496
- }
497
-
498
- dd {
499
- margin-inline-start: 40px;
500
- }
501
- }
502
-
503
- //
504
- // Error page
505
- //
506
- .container {
507
- margin: 10px auto;
508
- max-width: 400px;
509
- text-align: center;
510
- background-color: $error-div-bg-color;
511
- border-radius: 20px;
512
- align-content: center;
513
- height: 500px;
514
-
515
- >svg {
516
- height: 220px;
517
- width: 220px;
518
- margin-left: 3px;
519
- margin-right: 5px;
520
- margin-top: 50px;
521
- fill: $error-btn-svg-color;
522
- }
523
-
524
- >h1 {
525
- font-weight: bolder;
526
- }
527
- }
528
-
529
- .error-pagh {
530
- >p {
531
- margin-bottom: 3px;
532
-
533
- &:last-child {
534
- margin-bottom: 15px;
535
- }
536
- }
537
- }
538
-
539
- .btn-error {
540
- padding: 8px 25px;
541
- border-radius: 5px;
542
- cursor: pointer;
543
- color: $text-color;
544
- background-color: $error-btn-bg-color;
545
- border-color: $btn-bg-color;
546
- transition: $transition-btn;
547
- border-top: 10px;
548
-
549
- &,
550
- &:visited {
551
- color: $text-color;
552
- }
553
-
554
- &:hover {
555
- color: $btn-text-hover-color;
556
- text-decoration: none;
557
- background-color: $error-btn-hover-color;
558
- border-color: $error-btn-hover-color;
559
- }
560
- }
561
-
562
- //
563
- // Prompts
564
- //
565
- .prompt-tip {
566
- @include prompt("tips_and_updates", $prompt-tip-icon-color, $prompt-tip-bg-color, "Material Icons Outlined");
567
- }
568
-
569
- .prompt-info {
570
- @include prompt("info", $prompt-info-icon-color, $prompt-info-bg-color, "Material Icons Outlined");
571
- }
572
-
573
- .prompt-warning {
574
- @include prompt("warning", $prompt-warning-icon-color, $prompt-warning-bg-color, "Material Icons Round");
575
- }
576
-
577
- .prompt-danger {
578
- @include prompt("dangerous", $prompt-danger-icon-color, $prompt-danger-bg-color, "Material Icons Round");
579
- }