jekyll-theme-abd3lraouf 5.2.6 → 5.2.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (96) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +21 -21
  3. data/README.md +105 -105
  4. data/_data/assets/cross_origin.yml +62 -62
  5. data/_data/assets/self_host.yml +51 -51
  6. data/_data/authors.yml +17 -17
  7. data/_data/contact.yml +30 -30
  8. data/_data/locales/bg-BG.yml +83 -83
  9. data/_data/locales/en.yml +83 -83
  10. data/_data/locales/es-ES.yml +79 -79
  11. data/_data/locales/fr-FR.yml +79 -79
  12. data/_data/locales/hu-HU.yml +81 -81
  13. data/_data/locales/id-ID.yml +79 -79
  14. data/_data/locales/ko-KR.yml +79 -79
  15. data/_data/locales/my-MM.yml +79 -79
  16. data/_data/locales/pt-BR.yml +79 -79
  17. data/_data/locales/ru-RU.yml +79 -79
  18. data/_data/locales/tr-TR.yml +79 -79
  19. data/_data/locales/uk-UA.yml +79 -79
  20. data/_data/locales/vi-VN.yml +77 -77
  21. data/_data/locales/zh-CN.yml +78 -78
  22. data/_data/share.yml +27 -27
  23. data/_includes/assets-origin.html +12 -12
  24. data/_includes/comments/disqus.html +54 -54
  25. data/_includes/comments/giscus.html +56 -56
  26. data/_includes/comments/utterances.html +51 -51
  27. data/_includes/comments.html +5 -5
  28. data/_includes/datetime.html +21 -21
  29. data/_includes/favicons.html +17 -17
  30. data/_includes/footer.html +17 -36
  31. data/_includes/google-analytics.html +14 -14
  32. data/_includes/head.html +116 -116
  33. data/_includes/js-selector.html +104 -104
  34. data/_includes/jsdelivr-combine.html +32 -32
  35. data/_includes/lang.html +8 -8
  36. data/_includes/language-alias.html +70 -70
  37. data/_includes/mermaid.html +57 -57
  38. data/_includes/mode-toggle.html +129 -129
  39. data/_includes/no-linenos.html +10 -10
  40. data/_includes/post-nav.html +30 -30
  41. data/_includes/post-paginator.html +88 -88
  42. data/_includes/post-sharing.html +27 -27
  43. data/_includes/read-time.html +30 -30
  44. data/_includes/refactor-content.html +282 -282
  45. data/_includes/related-posts.html +103 -103
  46. data/_includes/search-loader.html +46 -46
  47. data/_includes/search-results.html +11 -11
  48. data/_includes/sidebar.html +93 -93
  49. data/_includes/toc.html +16 -16
  50. data/_includes/topbar.html +70 -70
  51. data/_includes/trending-tags.html +50 -50
  52. data/_includes/update-list.html +40 -40
  53. data/_layouts/archives.html +48 -48
  54. data/_layouts/categories.html +120 -120
  55. data/_layouts/category.html +24 -24
  56. data/_layouts/compress.html +10 -10
  57. data/_layouts/default.html +74 -74
  58. data/_layouts/home.html +103 -103
  59. data/_layouts/page.html +64 -64
  60. data/_layouts/post.html +159 -159
  61. data/_layouts/tag.html +23 -23
  62. data/_layouts/tags.html +23 -23
  63. data/_plugins/posts-lastmod-hook.rb +14 -14
  64. data/_sass/addon/commons.scss +1694 -1680
  65. data/_sass/addon/module.scss +151 -151
  66. data/_sass/addon/syntax.scss +289 -289
  67. data/_sass/addon/variables.scss +34 -34
  68. data/_sass/colors/dark-syntax.scss +88 -88
  69. data/_sass/colors/dark-typography.scss +157 -157
  70. data/_sass/colors/light-syntax.scss +84 -84
  71. data/_sass/colors/light-typography.scss +94 -94
  72. data/_sass/layout/archives.scss +147 -147
  73. data/_sass/layout/categories.scss +67 -67
  74. data/_sass/layout/category-tag.scss +73 -73
  75. data/_sass/layout/home.scss +184 -184
  76. data/_sass/layout/post.scss +369 -369
  77. data/_sass/layout/tags.scss +19 -19
  78. data/_sass/variables-hook.scss +3 -3
  79. data/_tabs/about.md +8 -8
  80. data/_tabs/archives.md +7 -7
  81. data/_tabs/categories.md +6 -6
  82. data/_tabs/tags.md +6 -6
  83. data/assets/404.html +69 -16
  84. data/assets/css/style.scss +12 -12
  85. data/assets/feed.xml +61 -61
  86. data/assets/img/404.png +0 -0
  87. data/assets/img/favicons/browserconfig.xml +13 -13
  88. data/assets/img/favicons/site.webmanifest +26 -26
  89. data/assets/js/data/search.json +18 -18
  90. data/assets/js/data/swcache.js +55 -55
  91. data/assets/js/pwa/app.js +47 -47
  92. data/assets/js/pwa/sw.js +89 -89
  93. data/assets/js/pwa/unregister.js +12 -12
  94. data/assets/robots.txt +10 -10
  95. data/index.html +4 -4
  96. metadata +8 -7
@@ -1,151 +1,151 @@
1
- /*
2
- * Mainly scss modules, only imported to `assets/css/main.scss`
3
- */
4
-
5
- /* ---------- scss placeholder --------- */
6
-
7
- %heading {
8
- color: var(--heading-color);
9
- font-weight: 400;
10
- font-family: 'Lato', 'Microsoft Yahei', sans-serif;
11
- }
12
-
13
- %section {
14
- #core-wrapper & {
15
- margin-top: 2.5rem;
16
- margin-bottom: 1.25rem;
17
-
18
- &:focus {
19
- outline: none; /* avoid outline in Safari */
20
- }
21
- }
22
- }
23
-
24
- %anchor {
25
- .anchor {
26
- font-size: 80%;
27
- }
28
-
29
- @media (hover: hover) {
30
- .anchor {
31
- visibility: hidden;
32
- opacity: 0;
33
- transition: opacity 0.25s ease-in, visibility 0s ease-in 0.25s;
34
- }
35
-
36
- &:hover {
37
- .anchor {
38
- visibility: visible;
39
- opacity: 1;
40
- transition: opacity 0.25s ease-in, visibility 0s ease-in 0s;
41
- }
42
- }
43
- }
44
- }
45
-
46
- %tag-hover {
47
- background: var(--tag-hover);
48
- transition: background 0.35s ease-in-out;
49
- }
50
-
51
- %table-cell {
52
- padding: 0.4rem 1rem;
53
- font-size: 95%;
54
- white-space: nowrap;
55
- }
56
-
57
- %link-hover {
58
- color: #d2603a !important;
59
- border-bottom: 1px solid #d2603a;
60
- text-decoration: none;
61
- }
62
-
63
- %link-color {
64
- color: var(--link-color);
65
- }
66
-
67
- %link-underline {
68
- border-bottom: 1px solid var(--link-underline-color);
69
- }
70
-
71
- %clickable-transition {
72
- transition: color 0.35s ease-in-out;
73
- }
74
-
75
- %no-cursor {
76
- user-select: none;
77
- }
78
-
79
- %no-bottom-border {
80
- border-bottom: none;
81
- }
82
-
83
- %cursor-pointer {
84
- cursor: pointer;
85
- }
86
-
87
- %normal-font-style {
88
- font-style: normal;
89
- }
90
-
91
- %img-caption {
92
- + em {
93
- display: block;
94
- text-align: center;
95
- font-style: normal;
96
- font-size: 80%;
97
- padding: 0;
98
- color: #6d6c6c;
99
- }
100
- }
101
-
102
- %sidebar-links {
103
- color: rgba(117, 117, 117, 0.9);
104
- user-select: none;
105
- }
106
-
107
- /* ---------- scss mixin --------- */
108
-
109
- @mixin no-text-decoration {
110
- text-decoration: none;
111
- }
112
-
113
- @mixin ml-mr($value) {
114
- margin-left: $value;
115
- margin-right: $value;
116
- }
117
-
118
- @mixin pl-pr($val) {
119
- padding-left: $val;
120
- padding-right: $val;
121
- }
122
-
123
- @mixin input-placeholder {
124
- opacity: 0.6;
125
- }
126
-
127
- @mixin label($font-size: 1rem, $font-weight: 600, $color: var(--label-color)) {
128
- color: $color;
129
- font-size: $font-size;
130
- font-weight: $font-weight;
131
- }
132
-
133
- @mixin align-center {
134
- position: relative;
135
- left: 50%;
136
- -webkit-transform: translateX(-50%);
137
- -ms-transform: translateX(-50%);
138
- transform: translateX(-50%);
139
- }
140
-
141
- @mixin prompt($type, $fw-icon, $icon-weight: 900) {
142
- &.prompt-#{$type} {
143
- background-color: var(--prompt-#{$type}-bg);
144
-
145
- &::before {
146
- content: $fw-icon;
147
- color: var(--prompt-#{$type}-icon-color);
148
- font-weight: $icon-weight;
149
- }
150
- }
151
- }
1
+ /*
2
+ * Mainly scss modules, only imported to `assets/css/main.scss`
3
+ */
4
+
5
+ /* ---------- scss placeholder --------- */
6
+
7
+ %heading {
8
+ color: var(--heading-color);
9
+ font-weight: 400;
10
+ font-family: 'Lato', 'Microsoft Yahei', sans-serif;
11
+ }
12
+
13
+ %section {
14
+ #core-wrapper & {
15
+ margin-top: 2.5rem;
16
+ margin-bottom: 1.25rem;
17
+
18
+ &:focus {
19
+ outline: none; /* avoid outline in Safari */
20
+ }
21
+ }
22
+ }
23
+
24
+ %anchor {
25
+ .anchor {
26
+ font-size: 80%;
27
+ }
28
+
29
+ @media (hover: hover) {
30
+ .anchor {
31
+ visibility: hidden;
32
+ opacity: 0;
33
+ transition: opacity 0.25s ease-in, visibility 0s ease-in 0.25s;
34
+ }
35
+
36
+ &:hover {
37
+ .anchor {
38
+ visibility: visible;
39
+ opacity: 1;
40
+ transition: opacity 0.25s ease-in, visibility 0s ease-in 0s;
41
+ }
42
+ }
43
+ }
44
+ }
45
+
46
+ %tag-hover {
47
+ background: var(--tag-hover);
48
+ transition: background 0.35s ease-in-out;
49
+ }
50
+
51
+ %table-cell {
52
+ padding: 0.4rem 1rem;
53
+ font-size: 95%;
54
+ white-space: nowrap;
55
+ }
56
+
57
+ %link-hover {
58
+ color: #d2603a !important;
59
+ border-bottom: 1px solid #d2603a;
60
+ text-decoration: none;
61
+ }
62
+
63
+ %link-color {
64
+ color: var(--link-color);
65
+ }
66
+
67
+ %link-underline {
68
+ border-bottom: 1px solid var(--link-underline-color);
69
+ }
70
+
71
+ %clickable-transition {
72
+ transition: color 0.35s ease-in-out;
73
+ }
74
+
75
+ %no-cursor {
76
+ user-select: none;
77
+ }
78
+
79
+ %no-bottom-border {
80
+ border-bottom: none;
81
+ }
82
+
83
+ %cursor-pointer {
84
+ cursor: pointer;
85
+ }
86
+
87
+ %normal-font-style {
88
+ font-style: normal;
89
+ }
90
+
91
+ %img-caption {
92
+ + em {
93
+ display: block;
94
+ text-align: center;
95
+ font-style: normal;
96
+ font-size: 80%;
97
+ padding: 0;
98
+ color: #6d6c6c;
99
+ }
100
+ }
101
+
102
+ %sidebar-links {
103
+ color: rgba(117, 117, 117, 0.9);
104
+ user-select: none;
105
+ }
106
+
107
+ /* ---------- scss mixin --------- */
108
+
109
+ @mixin no-text-decoration {
110
+ text-decoration: none;
111
+ }
112
+
113
+ @mixin ml-mr($value) {
114
+ margin-left: $value;
115
+ margin-right: $value;
116
+ }
117
+
118
+ @mixin pl-pr($val) {
119
+ padding-left: $val;
120
+ padding-right: $val;
121
+ }
122
+
123
+ @mixin input-placeholder {
124
+ opacity: 0.6;
125
+ }
126
+
127
+ @mixin label($font-size: 1rem, $font-weight: 600, $color: var(--label-color)) {
128
+ color: $color;
129
+ font-size: $font-size;
130
+ font-weight: $font-weight;
131
+ }
132
+
133
+ @mixin align-center {
134
+ position: relative;
135
+ left: 50%;
136
+ -webkit-transform: translateX(-50%);
137
+ -ms-transform: translateX(-50%);
138
+ transform: translateX(-50%);
139
+ }
140
+
141
+ @mixin prompt($type, $fw-icon, $icon-weight: 900) {
142
+ &.prompt-#{$type} {
143
+ background-color: var(--prompt-#{$type}-bg);
144
+
145
+ &::before {
146
+ content: $fw-icon;
147
+ color: var(--prompt-#{$type}-icon-color);
148
+ font-weight: $icon-weight;
149
+ }
150
+ }
151
+ }