lions-jekyll-theme 0.1.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.
@@ -0,0 +1,361 @@
1
+ @charset "utf-8";
2
+
3
+ // Default color scheme settings
4
+ // These are overridden in classic.css and dark.scss
5
+
6
+ $color-scheme-auto: true !default;
7
+ $color-scheme-dark: false !default;
8
+
9
+
10
+ // Light mode
11
+ // ----------
12
+
13
+ $lm-brand-color: #828282 !default;
14
+ $lm-brand-color-light: lighten($lm-brand-color, 40%) !default;
15
+ $lm-brand-color-dark: darken($lm-brand-color, 25%) !default;
16
+
17
+ $lm-site-title-color: $lm-brand-color-dark !default;
18
+
19
+ $lm-text-color: #111111 !default;
20
+ $lm-background-color: #fdfdfd !default;
21
+ $lm-code-background-color: #eeeeff !default;
22
+
23
+ $lm-link-base-color: #2a7ae2 !default;
24
+ $lm-link-visited-color: darken($lm-link-base-color, 15%) !default;
25
+ $lm-link-hover-color: $lm-text-color !default;
26
+
27
+ $lm-border-color-01: $lm-brand-color-light !default;
28
+ $lm-border-color-02: lighten($lm-brand-color, 35%) !default;
29
+ $lm-border-color-03: $lm-brand-color-dark !default;
30
+
31
+ $lm-table-text-color: lighten($lm-text-color, 18%) !default;
32
+ $lm-table-zebra-color: lighten($lm-brand-color, 46%) !default;
33
+ $lm-table-header-bg-color: lighten($lm-brand-color, 43%) !default;
34
+ $lm-table-header-border: lighten($lm-brand-color, 37%) !default;
35
+ $lm-table-border-color: $lm-border-color-01 !default;
36
+
37
+
38
+ // Syntax highlighting styles should be adjusted appropriately for every "skin"
39
+ // ----------------------------------------------------------------------------
40
+
41
+ @mixin lm-highlight {
42
+ .highlight {
43
+ .c { color: #998; font-style: italic } // Comment
44
+ .err { color: #a61717; background-color: #e3d2d2 } // Error
45
+ .k { font-weight: bold } // Keyword
46
+ .o { font-weight: bold } // Operator
47
+ .cm { color: #998; font-style: italic } // Comment.Multiline
48
+ .cp { color: #999; font-weight: bold } // Comment.Preproc
49
+ .c1 { color: #998; font-style: italic } // Comment.Single
50
+ .cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
51
+ .gd { color: #000; background-color: #fdd } // Generic.Deleted
52
+ .gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
53
+ .ge { font-style: italic } // Generic.Emph
54
+ .gr { color: #a00 } // Generic.Error
55
+ .gh { color: #999 } // Generic.Heading
56
+ .gi { color: #000; background-color: #dfd } // Generic.Inserted
57
+ .gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
58
+ .go { color: #888 } // Generic.Output
59
+ .gp { color: #555 } // Generic.Prompt
60
+ .gs { font-weight: bold } // Generic.Strong
61
+ .gu { color: #aaa } // Generic.Subheading
62
+ .gt { color: #a00 } // Generic.Traceback
63
+ .kc { font-weight: bold } // Keyword.Constant
64
+ .kd { font-weight: bold } // Keyword.Declaration
65
+ .kp { font-weight: bold } // Keyword.Pseudo
66
+ .kr { font-weight: bold } // Keyword.Reserved
67
+ .kt { color: #458; font-weight: bold } // Keyword.Type
68
+ .m { color: #099 } // Literal.Number
69
+ .s { color: #d14 } // Literal.String
70
+ .na { color: #008080 } // Name.Attribute
71
+ .nb { color: #0086B3 } // Name.Builtin
72
+ .nc { color: #458; font-weight: bold } // Name.Class
73
+ .no { color: #008080 } // Name.Constant
74
+ .ni { color: #800080 } // Name.Entity
75
+ .ne { color: #900; font-weight: bold } // Name.Exception
76
+ .nf { color: #900; font-weight: bold } // Name.Function
77
+ .nn { color: #555 } // Name.Namespace
78
+ .nt { color: #000080 } // Name.Tag
79
+ .nv { color: #008080 } // Name.Variable
80
+ .ow { font-weight: bold } // Operator.Word
81
+ .w { color: #bbb } // Text.Whitespace
82
+ .mf { color: #099 } // Literal.Number.Float
83
+ .mh { color: #099 } // Literal.Number.Hex
84
+ .mi { color: #099 } // Literal.Number.Integer
85
+ .mo { color: #099 } // Literal.Number.Oct
86
+ .sb { color: #d14 } // Literal.String.Backtick
87
+ .sc { color: #d14 } // Literal.String.Char
88
+ .sd { color: #d14 } // Literal.String.Doc
89
+ .s2 { color: #d14 } // Literal.String.Double
90
+ .se { color: #d14 } // Literal.String.Escape
91
+ .sh { color: #d14 } // Literal.String.Heredoc
92
+ .si { color: #d14 } // Literal.String.Interpol
93
+ .sx { color: #d14 } // Literal.String.Other
94
+ .sr { color: #009926 } // Literal.String.Regex
95
+ .s1 { color: #d14 } // Literal.String.Single
96
+ .ss { color: #990073 } // Literal.String.Symbol
97
+ .bp { color: #999 } // Name.Builtin.Pseudo
98
+ .vc { color: #008080 } // Name.Variable.Class
99
+ .vg { color: #008080 } // Name.Variable.Global
100
+ .vi { color: #008080 } // Name.Variable.Instance
101
+ .il { color: #099 } // Literal.Number.Integer.Long
102
+ }
103
+ }
104
+
105
+
106
+ // Dark mode
107
+ // ---------
108
+
109
+ $dm-brand-color: #999999 !default;
110
+ $dm-brand-color-light: lighten($dm-brand-color, 5%) !default;
111
+ $dm-brand-color-dark: darken($dm-brand-color, 35%) !default;
112
+
113
+ $dm-site-title-color: $dm-brand-color-light !default;
114
+
115
+ $dm-text-color: #bbbbbb !default;
116
+ $dm-background-color: #181818 !default;
117
+ $dm-code-background-color: #212121 !default;
118
+
119
+ $dm-link-base-color: #79b8ff !default;
120
+ $dm-link-visited-color: $dm-link-base-color !default;
121
+ $dm-link-hover-color: $dm-text-color !default;
122
+
123
+ $dm-border-color-01: $dm-brand-color-dark !default;
124
+ $dm-border-color-02: $dm-brand-color-light !default;
125
+ $dm-border-color-03: $dm-brand-color !default;
126
+
127
+ $dm-table-text-color: $dm-text-color !default;
128
+ $dm-table-zebra-color: lighten($dm-background-color, 4%) !default;
129
+ $dm-table-header-bg-color: lighten($dm-background-color, 10%) !default;
130
+ $dm-table-header-border: lighten($dm-background-color, 21%) !default;
131
+ $dm-table-border-color: $dm-border-color-01 !default;
132
+
133
+
134
+ // Syntax highlighting styles should be adjusted appropriately for every "skin"
135
+ // List of tokens: https://github.com/rouge-ruby/rouge/wiki/List-of-tokens
136
+ // Some colors come from Material Theme Darker:
137
+ // https://github.com/material-theme/vsc-material-theme/blob/master/scripts/generator/settings/specific/darker-hc.ts
138
+ // https://github.com/material-theme/vsc-material-theme/blob/master/scripts/generator/color-set.ts
139
+ // ----------------------------------------------------------------------------
140
+
141
+ @mixin dm-highlight {
142
+ .highlight {
143
+ .c { color: #545454; font-style: italic } // Comment
144
+ .err { color: #f07178; background-color: #e3d2d2 } // Error
145
+ .k { color: #89DDFF; font-weight: bold } // Keyword
146
+ .o { font-weight: bold } // Operator
147
+ .cm { color: #545454; font-style: italic } // Comment.Multiline
148
+ .cp { color: #545454; font-weight: bold } // Comment.Preproc
149
+ .c1 { color: #545454; font-style: italic } // Comment.Single
150
+ .cs { color: #545454; font-weight: bold; font-style: italic } // Comment.Special
151
+ .gd { color: #000; background-color: #fdd } // Generic.Deleted
152
+ .gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
153
+ .ge { font-style: italic } // Generic.Emph
154
+ .gr { color: #f07178 } // Generic.Error
155
+ .gh { color: #999 } // Generic.Heading
156
+ .gi { color: #000; background-color: #dfd } // Generic.Inserted
157
+ .gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
158
+ .go { color: #888 } // Generic.Output
159
+ .gp { color: #555 } // Generic.Prompt
160
+ .gs { font-weight: bold } // Generic.Strong
161
+ .gu { color: #aaa } // Generic.Subheading
162
+ .gt { color: #f07178 } // Generic.Traceback
163
+ .kc { font-weight: bold } // Keyword.Constant
164
+ .kd { font-weight: bold } // Keyword.Declaration
165
+ .kp { font-weight: bold } // Keyword.Pseudo
166
+ .kr { font-weight: bold } // Keyword.Reserved
167
+ .kt { color: #FFCB6B; font-weight: bold } // Keyword.Type
168
+ .m { color: #F78C6C } // Literal.Number
169
+ .s { color: #C3E88D } // Literal.String
170
+ .na { color: #008080 } // Name.Attribute
171
+ .nb { color: #EEFFFF } // Name.Builtin
172
+ .nc { color: #FFCB6B; font-weight: bold } // Name.Class
173
+ .no { color: #008080 } // Name.Constant
174
+ .ni { color: #800080 } // Name.Entity
175
+ .ne { color: #900; font-weight: bold } // Name.Exception
176
+ .nf { color: #82AAFF; font-weight: bold } // Name.Function
177
+ .nn { color: #555 } // Name.Namespace
178
+ .nt { color: #FFCB6B } // Name.Tag
179
+ .nv { color: #EEFFFF } // Name.Variable
180
+ .ow { font-weight: bold } // Operator.Word
181
+ .w { color: #EEFFFF } // Text.Whitespace
182
+ .mf { color: #F78C6C } // Literal.Number.Float
183
+ .mh { color: #F78C6C } // Literal.Number.Hex
184
+ .mi { color: #F78C6C } // Literal.Number.Integer
185
+ .mo { color: #F78C6C } // Literal.Number.Oct
186
+ .sb { color: #C3E88D } // Literal.String.Backtick
187
+ .sc { color: #C3E88D } // Literal.String.Char
188
+ .sd { color: #C3E88D } // Literal.String.Doc
189
+ .s2 { color: #C3E88D } // Literal.String.Double
190
+ .se { color: #EEFFFF } // Literal.String.Escape
191
+ .sh { color: #C3E88D } // Literal.String.Heredoc
192
+ .si { color: #C3E88D } // Literal.String.Interpol
193
+ .sx { color: #C3E88D } // Literal.String.Other
194
+ .sr { color: #C3E88D } // Literal.String.Regex
195
+ .s1 { color: #C3E88D } // Literal.String.Single
196
+ .ss { color: #C3E88D } // Literal.String.Symbol
197
+ .bp { color: #999 } // Name.Builtin.Pseudo
198
+ .vc { color: #FFCB6B } // Name.Variable.Class
199
+ .vg { color: #EEFFFF } // Name.Variable.Global
200
+ .vi { color: #EEFFFF } // Name.Variable.Instance
201
+ .il { color: #F78C6C } // Literal.Number.Integer.Long
202
+ }
203
+ }
204
+
205
+
206
+ // Mode selection
207
+ // --------------
208
+
209
+
210
+ // Classic skin (always light mode)
211
+ // Assign outside of the if construct to establish global variable scope
212
+
213
+ $brand-color: $lm-brand-color;
214
+ $brand-color-light: $lm-brand-color-light;
215
+ $brand-color-dark: $lm-brand-color-dark;
216
+
217
+ $site-title-color: $lm-site-title-color;
218
+
219
+ $text-color: $lm-text-color;
220
+ $background-color: $lm-background-color;
221
+ $code-background-color: $lm-code-background-color;
222
+
223
+ $link-base-color: $lm-link-base-color;
224
+ $link-visited-color: $lm-link-visited-color;
225
+ $link-hover-color: $lm-link-hover-color;
226
+
227
+ $border-color-01: $lm-border-color-01;
228
+ $border-color-02: $lm-border-color-02;
229
+ $border-color-03: $lm-border-color-03;
230
+
231
+ $table-text-color: $lm-table-text-color;
232
+ $table-zebra-color: $lm-table-zebra-color;
233
+ $table-header-bg-color: $lm-table-header-bg-color;
234
+ $table-header-border: $lm-table-header-border;
235
+ $table-border-color: $lm-table-border-color;
236
+
237
+
238
+ @if $color-scheme-auto {
239
+
240
+ // Auto mode
241
+
242
+ :root {
243
+ --lions-jekyll-theme-brand-color: #{$lm-brand-color};
244
+ --lions-jekyll-theme-brand-color-light: #{$lm-brand-color-light};
245
+ --lions-jekyll-theme-brand-color-dark: #{$lm-brand-color-dark};
246
+
247
+ --lions-jekyll-theme-site-title-color: #{$lm-site-title-color};
248
+
249
+ --lions-jekyll-theme-text-color: #{$lm-text-color};
250
+ --lions-jekyll-theme-background-color: #{$lm-background-color};
251
+ --lions-jekyll-theme-code-background-color: #{$lm-code-background-color};
252
+
253
+ --lions-jekyll-theme-link-base-color: #{$lm-link-base-color};
254
+ --lions-jekyll-theme-link-visited-color: #{$lm-link-visited-color};
255
+ --lions-jekyll-theme-link-hover-color: #{$lm-link-hover-color};
256
+
257
+ --lions-jekyll-theme-border-color-01: #{$lm-border-color-01};
258
+ --lions-jekyll-theme-border-color-02: #{$lm-border-color-02};
259
+ --lions-jekyll-theme-border-color-03: #{$lm-border-color-03};
260
+
261
+ --lions-jekyll-theme-table-text-color: #{$lm-table-text-color};
262
+ --lions-jekyll-theme-table-zebra-color: #{$lm-table-zebra-color};
263
+ --lions-jekyll-theme-table-header-bg-color: #{$lm-table-header-bg-color};
264
+ --lions-jekyll-theme-table-header-border: #{$lm-table-header-border};
265
+ --lions-jekyll-theme-table-border-color: #{$lm-table-border-color};
266
+ }
267
+
268
+ @include lm-highlight;
269
+
270
+ @media (prefers-color-scheme: dark) {
271
+ :root {
272
+ --lions-jekyll-theme-brand-color: #{$dm-brand-color};
273
+ --lions-jekyll-theme-brand-color-light: #{$dm-brand-color-light};
274
+ --lions-jekyll-theme-brand-color-dark: #{$dm-brand-color-dark};
275
+
276
+ --lions-jekyll-theme-site-title-color: #{$dm-site-title-color};
277
+
278
+ --lions-jekyll-theme-text-color: #{$dm-text-color};
279
+ --lions-jekyll-theme-background-color: #{$dm-background-color};
280
+ --lions-jekyll-theme-code-background-color: #{$dm-code-background-color};
281
+
282
+ --lions-jekyll-theme-link-base-color: #{$dm-link-base-color};
283
+ --lions-jekyll-theme-link-visited-color: #{$dm-link-visited-color};
284
+ --lions-jekyll-theme-link-hover-color: #{$dm-link-hover-color};
285
+
286
+ --lions-jekyll-theme-border-color-01: #{$dm-border-color-01};
287
+ --lions-jekyll-theme-border-color-02: #{$dm-border-color-02};
288
+ --lions-jekyll-theme-border-color-03: #{$dm-border-color-03};
289
+
290
+ --lions-jekyll-theme-table-text-color: #{$dm-table-text-color};
291
+ --lions-jekyll-theme-table-zebra-color: #{$dm-table-zebra-color};
292
+ --lions-jekyll-theme-table-header-bg-color: #{$dm-table-header-bg-color};
293
+ --lions-jekyll-theme-table-header-border: #{$dm-table-header-border};
294
+ --lions-jekyll-theme-table-border-color: #{$dm-table-border-color};
295
+ }
296
+
297
+ @include dm-highlight;
298
+ }
299
+
300
+ $brand-color: var(--lions-jekyll-theme-brand-color);
301
+ $brand-color-light: var(--lions-jekyll-theme-brand-color-light);
302
+ $brand-color-dark: var(--lions-jekyll-theme-brand-color-dark);
303
+
304
+ $site-title-color: var(--lions-jekyll-theme-site-title-color);
305
+
306
+ $text-color: var(--lions-jekyll-theme-text-color);
307
+ $background-color: var(--lions-jekyll-theme-background-color);
308
+ $code-background-color: var(--lions-jekyll-theme-code-background-color);
309
+
310
+ $link-base-color: var(--lions-jekyll-theme-link-base-color);
311
+ $link-visited-color: var(--lions-jekyll-theme-link-visited-color);
312
+ $link-hover-color: var(--lions-jekyll-theme-link-hover-color);
313
+
314
+ $border-color-01: var(--lions-jekyll-theme-border-color-01);
315
+ $border-color-02: var(--lions-jekyll-theme-border-color-02);
316
+ $border-color-03: var(--lions-jekyll-theme-border-color-03);
317
+
318
+ $table-text-color: var(--lions-jekyll-theme-table-text-color);
319
+ $table-zebra-color: var(--lions-jekyll-theme-table-zebra-color);
320
+ $table-header-bg-color: var(--lions-jekyll-theme-table-header-bg-color);
321
+ $table-header-border: var(--lions-jekyll-theme-table-header-border);
322
+ $table-border-color: var(--lions-jekyll-theme-table-border-color);
323
+
324
+
325
+ } @else if $color-scheme-dark {
326
+
327
+ // Dark skin (always dark mode)
328
+
329
+ $brand-color: $dm-brand-color;
330
+ $brand-color-light: $dm-brand-color-light;
331
+ $brand-color-dark: $dm-brand-color-dark;
332
+
333
+ $site-title-color: $dm-site-title-color;
334
+
335
+ $text-color: $dm-text-color;
336
+ $background-color: $dm-background-color;
337
+ $code-background-color: $dm-code-background-color;
338
+
339
+ $link-base-color: $dm-link-base-color;
340
+ $link-visited-color: $dm-link-visited-color;
341
+ $link-hover-color: $dm-link-hover-color;
342
+
343
+ $border-color-01: $dm-border-color-01;
344
+ $border-color-02: $dm-border-color-02;
345
+ $border-color-03: $dm-border-color-03;
346
+
347
+ $table-text-color: $dm-table-text-color;
348
+ $table-zebra-color: $dm-table-zebra-color;
349
+ $table-header-bg-color: $dm-table-header-bg-color;
350
+ $table-header-border: $dm-table-header-border;
351
+ $table-border-color: $dm-table-border-color;
352
+
353
+ @include dm-highlight;
354
+
355
+
356
+ } @else {
357
+
358
+ // Classic skin syntax highlighting
359
+ @include lm-highlight;
360
+
361
+ }
@@ -0,0 +1,5 @@
1
+ @charset "utf-8";
2
+
3
+ $color-scheme-auto: false;
4
+ $color-scheme-dark: false;
5
+ @import "lions-jekyll-theme/skins/auto";
@@ -0,0 +1,5 @@
1
+ @charset "utf-8";
2
+
3
+ $color-scheme-auto: false;
4
+ $color-scheme-dark: true;
5
+ @import "lions-jekyll-theme/skins/auto";
@@ -0,0 +1,7 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ ---
4
+
5
+ @import
6
+ "lions-jekyll-theme/skins/{{ site.lions-jekyll-theme.skin | default: 'dark' }}",
7
+ "lions-jekyll-theme/initialize";
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" viewBox="0 0 512 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2023 Fonticons, Inc.--><path d="M64 112c-8.8 0-16 7.2-16 16v22.1L220.5 291.7c20.7 17 50.4 17 71.1 0L464 150.1V128c0-8.8-7.2-16-16-16H64zM48 212.2V384c0 8.8 7.2 16 16 16H448c8.8 0 16-7.2 16-16V212.2L322 328.8c-38.4 31.5-93.7 31.5-132 0L48 212.2zM0 128C0 92.7 28.7 64 64 64H448c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="16" width="15.5" viewBox="0 0 496 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2023 Fonticons, Inc.--><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3 .3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5 .3-6.2 2.3zm44.2-1.7c-2.9 .7-4.9 2.6-4.6 4.9 .3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3 .7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3 .3 2.9 2.3 3.9 1.6 1 3.6 .7 4.3-.7 .7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3 .7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3 .7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="16" width="14" viewBox="0 0 448 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2023 Fonticons, Inc.--><path d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"/></svg>
metadata ADDED
@@ -0,0 +1,77 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lions-jekyll-theme
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Anders Gilliland
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-12-19 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 3.9.3
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 3.9.3
27
+ description:
28
+ email:
29
+ - luboost3@gmail.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - LICENSE.txt
35
+ - README.md
36
+ - _includes/footer.html
37
+ - _includes/head.html
38
+ - _includes/header.html
39
+ - _includes/sidebar.html
40
+ - _layouts/base.html
41
+ - _layouts/home.html
42
+ - _layouts/page.html
43
+ - _layouts/post.html
44
+ - _sass/lions-jekyll-theme/_base.scss
45
+ - _sass/lions-jekyll-theme/_layout.scss
46
+ - _sass/lions-jekyll-theme/initialize.scss
47
+ - _sass/lions-jekyll-theme/skins/auto.scss
48
+ - _sass/lions-jekyll-theme/skins/classic.scss
49
+ - _sass/lions-jekyll-theme/skins/dark.scss
50
+ - assets/css/style.scss
51
+ - assets/svg/email.svg
52
+ - assets/svg/github.svg
53
+ - assets/svg/linkedin.svg
54
+ homepage: https://github.com/Lion4567714/lions-jekyll-theme
55
+ licenses:
56
+ - MIT
57
+ metadata: {}
58
+ post_install_message:
59
+ rdoc_options: []
60
+ require_paths:
61
+ - lib
62
+ required_ruby_version: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: '0'
67
+ required_rubygems_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: '0'
72
+ requirements: []
73
+ rubygems_version: 3.3.5
74
+ signing_key:
75
+ specification_version: 4
76
+ summary: A custom theme built specfically for my website https://ablion.dev
77
+ test_files: []