jekyll-theme-fica 0.1.8 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) 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_BASE_2002.yaml.swp +0 -0
  5. data/.github/workflows/.ci_LOCAL_2002.yaml.swp +0 -0
  6. data/.github/workflows/.ci_REMOTE_2002.yaml.swp +0 -0
  7. data/.github/workflows/ci.yaml +20 -13
  8. data/.github/workflows/ci.yaml.orig +34 -0
  9. data/.github/workflows/ci_BACKUP_2002.yaml +34 -0
  10. data/.github/workflows/ci_BASE_2002.yaml +27 -0
  11. data/.github/workflows/ci_LOCAL_2002.yaml +27 -0
  12. data/.github/workflows/ci_REMOTE_2002.yaml +27 -0
  13. data/404.html +5 -3
  14. data/README.md +59 -89
  15. data/_includes/Footer.html +76 -36
  16. data/_includes/Head.html +11 -11
  17. data/_includes/Header.html +17 -23
  18. data/_includes/assets/BTT.html +8 -0
  19. data/_includes/assets/Google-Analytics.html +12 -0
  20. data/_includes/assets/anchor-headings.html +164 -0
  21. data/_includes/assets/comments.html +16 -0
  22. data/_includes/assets/toc.html +174 -0
  23. data/_layouts/default.html +12 -10
  24. data/_layouts/home.html +20 -46
  25. data/_layouts/page.html +5 -14
  26. data/_layouts/post.html +49 -50
  27. data/_layouts/post_home.html +102 -70
  28. data/_posts/2022-03-31-To-Know-if-the-nav-works.md +8 -8
  29. data/_posts/2022-04-1-Demo.md +113 -113
  30. data/_posts/2022-04-5-Getting-Started.md +74 -27
  31. data/_posts/2022-04-6-Creating-a-new-post.md +136 -124
  32. data/_sass/base.scss +472 -0
  33. data/_sass/{themes/dark theme → colors/dark-theme}/highlight.scss +0 -0
  34. data/_sass/{themes/dark theme/theme-dark.scss → colors/dark-theme/theme-dark.scss} +24 -27
  35. data/_sass/{themes/light theme → colors/light-theme}/highlight.scss +0 -0
  36. data/_sass/{themes/light theme/theme-light.scss → colors/light-theme/theme-light.scss} +18 -24
  37. data/_sass/jekyll-theme-fica.scss +1 -7
  38. data/_sass/layouts/Google-fonts.scss +139 -0
  39. data/_sass/layouts/component.scss +253 -0
  40. data/_sass/layouts/layout.scss +508 -572
  41. data/_sass/layouts/variable.scss +201 -0
  42. data/assets/css/Style.scss +7 -37
  43. data/assets/fica-icons.svg +64 -64
  44. data/assets/img/{fica_ad.png → homepage-pic.png} +0 -0
  45. data/bin/run +195 -0
  46. data/js/Main.js +21 -0
  47. data/js/back-to-top.js +16 -25
  48. data/post/index.html +3 -3
  49. metadata +36 -21
  50. data/_includes/BTT.html +0 -9
  51. data/_includes/Custom-Head.html +0 -9
  52. data/_includes/Google-Analytics.html +0 -11
  53. data/_sass/custom/styles.scss +0 -1
  54. data/_sass/custom/variables.scss +0 -1
  55. data/_sass/layouts/base.scss +0 -573
  56. data/_sass/layouts/variables.scss +0 -89
  57. data/assets/css/fica-icons.svg +0 -68
  58. data/bin/build +0 -7
  59. data/bin/server +0 -7
  60. data/docs/contributing.md +0 -69
data/_sass/base.scss ADDED
@@ -0,0 +1,472 @@
1
+ html {
2
+ overflow-x: hidden;
3
+ scroll-behavior: smooth;
4
+
5
+ ::selection {
6
+ background-color: $highlight-bg-color;
7
+ color: $highlight-text-color;
8
+ }
9
+ }
10
+
11
+ //
12
+ // Reseting elements
13
+ //
14
+
15
+ body,
16
+ h1,
17
+ h2,
18
+ h3,
19
+ h4,
20
+ h5,
21
+ h6,
22
+ p,
23
+ blockquote,
24
+ pre,
25
+ hr,
26
+ dl,
27
+ dd,
28
+ ol,
29
+ ul,
30
+ figure {
31
+ margin: 0;
32
+ padding: 0;
33
+ }
34
+
35
+ // set `margin-bottom` to maintain vertical alignment
36
+ h1,
37
+ h2,
38
+ h3,
39
+ h4,
40
+ h5,
41
+ h6,
42
+ p,
43
+ blockquote,
44
+ pre,
45
+ ul,
46
+ ol,
47
+ figure,
48
+ %vertical-rhythm {
49
+ margin-bottom: $font-spacing - 15;
50
+ }
51
+
52
+ //
53
+ // body
54
+ //
55
+ body {
56
+ font: $font-weight #{$font-size}/#{$line-height} $font-family;
57
+ color: $text-color;
58
+ background-color: $primary_color;
59
+ -webkit-text-size-adjust: 100%;
60
+ font-kerning: normal;
61
+ display: flex;
62
+ min-height: 100vh;
63
+ flex-direction: column;
64
+ overflow-wrap: break-word;
65
+ -webkit-font-smoothing: antialiased;
66
+ -moz-osx-font-smoothing: grayscale;
67
+
68
+ &::-webkit-scrollbar {
69
+ height: 16px;
70
+ }
71
+
72
+ &::-webkit-scrollbar-track {
73
+ background-color: transparent;
74
+ }
75
+
76
+ &::-webkit-scrollbar-thumb {
77
+ background: rgba(128, 134, 139, 0.2);
78
+ background-clip: padding-box;
79
+ border: 4px solid transparent;
80
+ border-radius: 10px;
81
+ box-sizing: border-box;
82
+
83
+ &:hover {
84
+ background: rgba(128, 134, 139, 0.4);
85
+ box-sizing: border-box;
86
+ background-clip: padding-box;
87
+ }
88
+ }
89
+ }
90
+
91
+ //
92
+ // line
93
+ //
94
+ hr {
95
+ margin-top: $font-spacing;
96
+ margin-bottom: $font-spacing;
97
+ border: 0;
98
+ border-top: 2px solid $text-mute-color;
99
+ border-radius: 7px;
100
+ }
101
+
102
+ //
103
+ // wrapper
104
+ //
105
+ .wrapper {
106
+ padding: 0 $font-spacing - 5 0 $font-spacing - 5;
107
+ margin: 0 auto 0 auto;
108
+ max-width: $content-width + 100;
109
+ }
110
+
111
+ .footer-wrapper {
112
+ padding: 0 $font-spacing - 5 0 $font-spacing - 5;
113
+ margin: 0 auto 0 auto;
114
+ max-width: 1168px;
115
+ }
116
+
117
+
118
+ .post-wrapper {
119
+ padding: 0 $font-spacing - 5 0 $font-spacing - 5;
120
+ margin: 0 auto 0 auto;
121
+ max-width: $content-width + 100;
122
+
123
+ @media screen and (min-width: 1111px) {
124
+ display: flex;
125
+ justify-content: center;
126
+ }
127
+ }
128
+
129
+ .content {
130
+ padding: 30px 0 30px;
131
+ flex: 1 0 auto;
132
+ overflow: hidden;
133
+ opacity: 0;
134
+ transform: translateY(3rem);
135
+ animation: 208.898ms linear 0s 1 normal forwards running slide-up;
136
+ animation-delay: 252.00568990042672ms;
137
+ }
138
+
139
+ //
140
+ // Headers
141
+ //
142
+ h1 {
143
+ font-size: $font-size + 31;
144
+ line-height: 1.5;
145
+ }
146
+
147
+ h2 {
148
+ font-size: $font-size + 26;
149
+ line-height: 1.5;
150
+ }
151
+
152
+ h3 {
153
+ font-size: $font-size + 21;
154
+ line-height: 1.5;
155
+ }
156
+
157
+ h4 {
158
+ font-size: $font-size + 16;
159
+ line-height: 1.5;
160
+ }
161
+
162
+ h5 {
163
+ font-size: $font-size + 11;
164
+ line-height: 1.5;
165
+ }
166
+
167
+ h6 {
168
+ font-size: $font-size + 6;
169
+ line-height: 1.5;
170
+ }
171
+
172
+ //
173
+ // Lists
174
+ //
175
+ ul,
176
+ ol {
177
+ margin-left: $font-spacing;
178
+ }
179
+
180
+ //
181
+ // Links
182
+ //
183
+ a {
184
+ text-decoration: none;
185
+ transition: $transition-links;
186
+ color: $link-visited-color;
187
+ font-weight: 700;
188
+
189
+ &:hover {
190
+ color: $link-hover-color;
191
+ text-decoration: none;
192
+ }
193
+ }
194
+
195
+ li {
196
+ > ul,
197
+ > ol {
198
+ margin-bottom: 0;
199
+ }
200
+ }
201
+
202
+ //
203
+ // Image
204
+ //
205
+ img {
206
+ max-width: 100%;
207
+ height: auto;
208
+ }
209
+
210
+ //
211
+ // BOLD
212
+ //
213
+ strong {
214
+ font-weight: 900;
215
+ font-size: 18px;
216
+ }
217
+
218
+ //
219
+ // Figures
220
+ //
221
+ figure > img {
222
+ display: block;
223
+ }
224
+
225
+ figcaption {
226
+ font-size: $small-font-size;
227
+ }
228
+
229
+ //
230
+ // Blockquotes
231
+ //
232
+ blockquote {
233
+ color: $blockquote-text-color;
234
+ border-left: 4px solid $code-background-color;
235
+ padding-left: $font-spacing / 2;
236
+ @include relative-font-size(1.125);
237
+ font-style: italic;
238
+
239
+ > :last-child {
240
+ margin-bottom: 0;
241
+ }
242
+
243
+ i,
244
+ em {
245
+ font-style: normal;
246
+ }
247
+ }
248
+
249
+ //
250
+ // Code format
251
+ //
252
+ pre,
253
+ code {
254
+ font-size: inherit;
255
+ border: 1px solid $code-background-color;
256
+ border-radius: 4px;
257
+ font-weight: 700;
258
+ background-color: $code-background-color;
259
+ color: $code-text-color;
260
+
261
+ @include horizontal-scroll();
262
+ }
263
+
264
+ code {
265
+ padding: 1px 5px;
266
+
267
+ a {
268
+ color: inherit !important;
269
+ border-bottom: none !important;
270
+ pointer-events: none;
271
+ }
272
+ }
273
+
274
+ pre {
275
+ overflow-x: auto;
276
+
277
+ > code {
278
+ border: 0;
279
+ padding-right: 0;
280
+ padding-left: 0;
281
+ }
282
+ }
283
+
284
+ .rouge-table {
285
+ width: 0%;
286
+
287
+ .rouge-gutter {
288
+ padding: 0px;
289
+ border: 0px;
290
+ }
291
+
292
+ td.rouge-code {
293
+ padding-left: 1rem;
294
+ border: 0px;
295
+ }
296
+
297
+ border: 0px;
298
+ margin-bottom: 0px;
299
+ }
300
+
301
+ .highlight {
302
+ border-radius: 5px;
303
+ background: $code-background-color;
304
+ border: 0px;
305
+ @extend %vertical-rhythm;
306
+
307
+ pre {
308
+ margin-bottom: 0;
309
+ font-size: $code-font-family;
310
+ line-height: 1.5rem;
311
+ word-wrap: normal;
312
+ /* Fixed Safari overflow-x */
313
+ }
314
+
315
+ .lineno {
316
+ padding-top: 7px;
317
+ padding-bottom: 7px;
318
+ padding-left: 7px;
319
+ padding-right: 0px;
320
+ width: 1%;
321
+
322
+ min-width: 20px;
323
+ text-align: right;
324
+ color: $text-mute-color;
325
+ -webkit-user-select: none;
326
+ -khtml-user-select: none;
327
+ -moz-user-select: none;
328
+ -ms-user-select: none;
329
+ -o-user-select: none;
330
+ user-select: none;
331
+ }
332
+
333
+ // set the dollar sign to non-selectable
334
+ .gp {
335
+ user-select: none;
336
+ }
337
+
338
+ table {
339
+ td pre {
340
+ overflow: visible; // Fixed iOS safari overflow-x
341
+ word-break: normal; // Fixed iOS safari linenos code break
342
+ }
343
+ }
344
+
345
+ .highlighter-rouge & {
346
+ background: $code-background-color;
347
+ }
348
+ }
349
+
350
+ // Removes the line numbers default snippets
351
+ div {
352
+ &[class^="highlighter-rouge"],
353
+ &.language-plaintext.highlighter-rouge,
354
+ &.language-console.highlighter-rouge,
355
+ &.language-terminal.highlighter-rouge,
356
+ &.nolineno {
357
+ pre.lineno {
358
+ display: none;
359
+ }
360
+
361
+ td.rouge-code {
362
+ padding: 8px 12px;
363
+ }
364
+
365
+ pre.highlight {
366
+ padding: 0px;
367
+ padding-bottom: 0px;
368
+ }
369
+ }
370
+ }
371
+
372
+ //
373
+ // Icons
374
+ //
375
+
376
+ // .stackoverflow {
377
+ // color: #f66a0a;
378
+ // }
379
+
380
+ // .youtube {
381
+ // color: #dd0505;
382
+ // }
383
+
384
+ // .github {
385
+ // color: $Github;
386
+
387
+ // }
388
+
389
+ .svg-icon {
390
+ width: 16px;
391
+ height: 16px;
392
+ display: inline-block;
393
+ fill: currentColor;
394
+ padding: 5px 3px 2px 5px;
395
+ vertical-align: text-bottom;
396
+ }
397
+
398
+ .gitlab {
399
+ color: $Github;
400
+ }
401
+
402
+ dl {
403
+ padding: 0;
404
+
405
+ dt {
406
+ padding: 0;
407
+ margin-top: 1rem;
408
+ font-size: $font-size;
409
+ font-weight: 690;
410
+ }
411
+
412
+ dd {
413
+ margin-inline-start: 40px;
414
+ }
415
+ }
416
+
417
+ //
418
+ // Error page
419
+ //
420
+ .container {
421
+ margin: 10px auto;
422
+ max-width: 400px;
423
+ text-align: center;
424
+ background-color: $error-div-bg-color;
425
+ border-radius: 20px;
426
+ align-content: center;
427
+
428
+ > svg {
429
+ height: 220px;
430
+ width: 220px;
431
+ margin-left: 3px;
432
+ margin-right: 5px;
433
+ margin-top: 50px;
434
+ fill: $error-btn-svg-color;
435
+ }
436
+ }
437
+
438
+ .error-pagh {
439
+ > p {
440
+ margin-bottom: 0px;
441
+ line-height: 2;
442
+
443
+ &:last-child {
444
+ margin-bottom: 15px;
445
+ }
446
+ }
447
+ }
448
+
449
+ .btn-error {
450
+ display: inline-block;
451
+ padding: 17px 16px 16px;
452
+ color: #e7e7e7;
453
+ background-color: #2e353e;
454
+ transition: all 0.2s ease-in-out;
455
+ width: 92%;
456
+ border-bottom-left-radius: 20px;
457
+ border-bottom-right-radius: 20px;
458
+ height: 24px;
459
+ line-height: 1.5;
460
+
461
+ &,
462
+ &:visited {
463
+ color: $text-color;
464
+ }
465
+
466
+ &:hover {
467
+ color: $btn-text-hover-color;
468
+ text-decoration: none;
469
+ background-color: $btn-color-hover;
470
+ border-color: $btn-color-hover;
471
+ }
472
+ }
@@ -6,8 +6,9 @@
6
6
  //-------------Basic settings-----------------------//
7
7
  // //
8
8
  $primary_color: #1d2127 !default;
9
- $link-color: #4dd0e1!default;
10
- $text-color: #ffffff !default;
9
+ $link-color: #4dd0e1 !default;
10
+ $text-color: #e7e7e7 !default;
11
+ $text-mute-color: darken($text-color, 50%) !default;
11
12
 
12
13
  // //
13
14
  //-------------Advance settings-----------------------//
@@ -21,35 +22,32 @@ $site-header-bg: darken($primary_color, 5%) !default;
21
22
  //
22
23
  // Site Home Banner
23
24
  //
24
- $header-bg-color: $link-color !default;
25
+ $header-bg-color: $link-color !default;
25
26
  $home-header-title-color: darken($primary_color, 3%) !default;
27
+ $btn-download-bg-color: darken($home-header-title-color, 1%) !default;
28
+ $btn-download-hover-color: darken($btn-download-bg-color, 2%) !default;
26
29
 
27
30
  //
28
31
  // Site Nav
29
32
  //
30
33
  $menu-bdr-color: darken($primary_color, 6%) !default;
31
- $menu-color: $text-color !default;
34
+ $menu-color: $text-color !default;
32
35
  $menu-bg-color-chae: darken($primary_color, 6%) !default;
33
36
 
34
37
  //
35
38
  // Site Footer
36
39
  //
37
40
  $footer-bg-color: darken($primary_color, 2%) !default;
38
- $footer-head-link-color: darken($text-color, 50%) !default;
41
+ $footer-info-bg-color: darken($footer-bg-color, 2%) !default;
39
42
  $footer-links-color: darken($text-color, 10%) !default;
40
43
  $footer-links-hover-color: darken($footer-links-color, 30%) !default;
41
44
 
42
- //
43
- // Site Scroll
44
- //
45
- $scroll_bar_bg_color: darken($text-color, 10%) !default;
46
-
47
45
  //
48
46
  // Error Pages
49
47
  //
50
48
  $error-div-bg-color: darken($primary_color, 2%) !default;
51
- $error-btn-svg-color: $primary_color !default;
52
- $error-btn-bg-color: $primary_color !default;
49
+ $error-btn-svg-color: $primary_color !default;
50
+ $error-btn-bg-color: $primary_color !default;
53
51
  $error-btn-hover-color: darken($error-btn-bg-color, 7%) !default;
54
52
 
55
53
  //
@@ -57,7 +55,7 @@ $error-btn-hover-color: darken($error-btn-bg-color, 7%) !default;
57
55
  //
58
56
  $page-bar-top-bar-color: darken($primary_color, 5%) !default;
59
57
  $page-bar-btn-bg-color: darken($primary_color, 2%) !default;
60
- $page-bar-svg-color: $text-color !default;
58
+ $page-bar-svg-color: $text-color !default;
61
59
  $page-bar-btn-hover-color: darken($page-bar-btn-bg-color, 5%) !default;
62
60
  $page-bar-svg-hover-color: darken($page-bar-svg-color, 30%) !default;
63
61
  $page-bar-btn-disabled: lighten($page-bar-btn-bg-color, 5%) !default;
@@ -80,40 +78,44 @@ $highlight-text-color: darken($text-color, 100%) !default;
80
78
  //
81
79
  // Prompt Tip
82
80
  //
81
+ $prompt-tip-icon-color: #395021 !default;
83
82
  $prompt-tip-bg-color: #5a8034 !default;
84
83
 
85
84
  //
86
85
  // Prompt Info
87
86
  //
87
+ $prompt-info-icon-color: #12447d !default;
88
88
  $prompt-info-bg-color: #1a61b3 !default;
89
89
 
90
90
  //
91
91
  // Prompt Warning
92
92
  //
93
+ $prompt-warning-icon-color: #754e12 !default;
93
94
  $prompt-warning-bg-color: #b3761a !default;
94
95
 
95
96
  //
96
97
  // Prompt Danger
97
- //
98
+ // s
99
+ $prompt-danger-icon-color: #670e0e !default;
98
100
  $prompt-danger-bg-color: #b31a1a !default;
99
101
 
100
102
  //
101
103
  // Code
102
104
  //
103
- $code-background-color: darken($primary_color, 3%) !default;
104
- $code-text-color: #4dd0e1 !default;
105
- $blockquote-text-color: darken($text-color, 30%) !default;
105
+ $code-background-color: darken($primary_color, 6%) !default;
106
+ $code-text-color: darken($text-color, 20%) !default;
107
+ $blockquote-text-color: darken($text-color, 40%) !default;
106
108
 
107
109
  //
108
110
  // links
109
111
  //
110
- $link-visited-color: $link-color !default;
112
+ $link-visited-color: $link-color !default;
111
113
  $link-hover-color: darken($link-color, 33%) !default;
112
114
 
113
115
  //
114
116
  // Table
115
117
  //
116
- $table-text-color: $text-color !default;
118
+ $table-text-color: $text-color !default;
117
119
  $table-zebra-color: darken($primary_color, 2%) !default;
118
120
  $table-header-bg-color: darken($primary_color, 3%) !default;
119
121
 
@@ -124,12 +126,7 @@ $border-color: lighten($primary_color, 3%) !default;
124
126
  //
125
127
  // Back to Top
126
128
  //
127
- $BTT-bg-color: $code-text-color !default;
128
- $BTT-svg-color: darken($text-color, 100%) !default;
129
-
130
- //
131
- // BOLD
132
- //
133
- $Bold-color: #88ffff !default;
129
+ $BTT-bg-color: #4dd0e1 !default;
130
+ $BTT-svg-color: rgba(0, 0, 0, 0.54) !default;
134
131
 
135
- @import "themes/dark theme/highlight"
132
+ @import "colors/dark-theme/highlight"