jekyll-theme-fica 0.2.0 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) 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 +7 -0
  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/README.md +4 -3
  14. data/_includes/Footer.html +112 -85
  15. data/_includes/Head.html +12 -13
  16. data/_includes/Header.html +17 -34
  17. data/_includes/{BTT.html → assets/BTT.html} +8 -7
  18. data/_includes/{Google-Analytics.html → assets/Google-Analytics.html} +12 -12
  19. data/_includes/assets/anchor-headings.html +164 -0
  20. data/_includes/assets/comments.html +16 -0
  21. data/_includes/assets/toc.html +174 -0
  22. data/_layouts/default.html +16 -14
  23. data/_layouts/home.html +25 -67
  24. data/_layouts/page.html +5 -3
  25. data/_layouts/post.html +50 -52
  26. data/_layouts/post_home.html +112 -112
  27. data/_posts/2022-04-5-Getting-Started.md +150 -149
  28. data/_sass/{layouts/base.scss → base.scss} +472 -579
  29. data/_sass/{themes/dark theme/highlight.scss → colors/dark-theme/highlight.scss} +362 -362
  30. data/_sass/{themes/dark theme/theme-dark.scss → colors/dark-theme/theme-dark.scss} +132 -142
  31. data/_sass/{themes/light theme/highlight.scss → colors/light-theme/highlight.scss} +198 -198
  32. data/_sass/{themes/light theme/theme-light.scss → colors/light-theme/theme-light.scss} +126 -136
  33. data/_sass/jekyll-theme-fica.scss +1 -8
  34. data/_sass/layouts/component.scss +253 -0
  35. data/_sass/layouts/layout.scss +612 -718
  36. data/_sass/layouts/variable.scss +201 -0
  37. data/assets/css/Style.scss +12 -13
  38. data/bin/run +195 -150
  39. data/js/Main.js +21 -0
  40. data/js/back-to-top.js +39 -48
  41. metadata +28 -16
  42. data/_sass/custom/styles.scss +0 -1
  43. data/_sass/custom/variables.scss +0 -1
  44. data/_sass/layouts/variables.scss +0 -230
  45. data/docs/contributing.md +0 -69
@@ -1,579 +1,472 @@
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
- }
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
+ }