jekyll-theme-doodle 4.4.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 +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +92 -0
  4. data/_config.yml +54 -0
  5. data/_data/images.json +3 -0
  6. data/_includes/disqus_comments.html +20 -0
  7. data/_includes/footer.html +49 -0
  8. data/_includes/google-analytics.html +12 -0
  9. data/_includes/head.html +44 -0
  10. data/_includes/header.html +33 -0
  11. data/_includes/icon-github.html +1 -0
  12. data/_includes/icon-github.svg +1 -0
  13. data/_includes/icon-twitter.html +1 -0
  14. data/_includes/icon-twitter.svg +1 -0
  15. data/_includes/navrail.html +23 -0
  16. data/_includes/social.html +14 -0
  17. data/_includes/theme_selector.html +35 -0
  18. data/_layouts/default.html +23 -0
  19. data/_layouts/home.html +80 -0
  20. data/_layouts/page.html +14 -0
  21. data/_layouts/post.html +35 -0
  22. data/_sass/minima/_base.scss +851 -0
  23. data/_sass/minima/_layout.scss +277 -0
  24. data/_sass/minima/_mysass.scss +289 -0
  25. data/_sass/minima/_syntax-highlighting.scss +68 -0
  26. data/_sass/minima.scss +52 -0
  27. data/assets/main.scss +5 -0
  28. data/assets/minima-social-icons.svg +33 -0
  29. data/assets/theme-assets/js/theme.js +27 -0
  30. data/assets/theme-assets/material-theme/colors.module.css +294 -0
  31. data/assets/theme-assets/material-theme/theme.css +5 -0
  32. data/assets/theme-assets/material-theme/theme.dark.css +51 -0
  33. data/assets/theme-assets/material-theme/theme.light.css +51 -0
  34. data/assets/theme-assets/material-theme/tokens.css +303 -0
  35. data/assets/theme-assets/material-theme/typography.module.css +150 -0
  36. data/assets/theme-assets/theme-fonts/CascadiaCode-Regular.woff2 +0 -0
  37. data/assets/theme-assets/theme-fonts/ComicShanns-Regular.woff2 +0 -0
  38. data/assets/theme-assets/theme-fonts/Excalifont-Regular.woff2 +0 -0
  39. data/assets/theme-assets/theme-fonts/Lexend-Regular.ttf +0 -0
  40. data/assets/theme-assets/theme-fonts/LilitaOne-Regular.ttf +0 -0
  41. data/assets/theme-assets/theme-fonts/Virgil-Regular.woff2 +0 -0
  42. data/assets/theme-assets/theme-fonts/Virgil.woff2 +0 -0
  43. data/assets/theme-assets/theme-fonts/comic shanns.otf +0 -0
  44. data/assets/theme-assets/theme-icons/aboutme-small.svg +103 -0
  45. data/assets/theme-assets/theme-icons/aboutme.svg +10 -0
  46. data/assets/theme-assets/theme-icons/bookmark.svg +10 -0
  47. data/assets/theme-assets/theme-icons/categories-rough.svg +10 -0
  48. data/assets/theme-assets/theme-icons/categories.svg +1 -0
  49. data/assets/theme-assets/theme-icons/categories2.svg +10 -0
  50. data/assets/theme-assets/theme-icons/divider.svg +20 -0
  51. data/assets/theme-assets/theme-icons/home-rough.svg +10 -0
  52. data/assets/theme-assets/theme-icons/home.svg +6 -0
  53. data/assets/theme-assets/theme-icons/home2.svg +10 -0
  54. data/assets/theme-assets/theme-icons/info.svg +1 -0
  55. data/assets/theme-assets/theme-icons/pin.svg +19 -0
  56. data/assets/theme-assets/theme-images/border-thick.svg +16 -0
  57. data/assets/theme-assets/theme-images/comp.png +0 -0
  58. data/assets/theme-assets/theme-images/comp.svg +10 -0
  59. data/assets/theme-assets/theme-images/logo.png +0 -0
  60. data/assets/theme-assets/theme-images/logo.svg +10 -0
  61. data/assets/theme-assets/theme-images/menu.svg +10 -0
  62. metadata +137 -0
@@ -0,0 +1,851 @@
1
+ /**
2
+ * Reset some basic elements
3
+ */
4
+ body,
5
+ h1,
6
+ h2,
7
+ h3,
8
+ h4,
9
+ h5,
10
+ h6,
11
+ p,
12
+ blockquote,
13
+ pre,
14
+ hr,
15
+ dl,
16
+ dd,
17
+ ol,
18
+ ul,
19
+ figure {
20
+ margin: 0;
21
+ padding: 0;
22
+ box-sizing: border-box;
23
+ }
24
+ .dark-yellow {
25
+ --md-sys-color-primary: rgb(219 198 110);
26
+ --md-sys-color-surface-tint: rgb(219 198 110);
27
+ --md-sys-color-on-primary: rgb(58 48 0);
28
+ --md-sys-color-primary-container: rgb(83 70 0);
29
+ --md-sys-color-on-primary-container: rgb(248 226 135);
30
+ --md-sys-color-secondary: rgb(209 198 161);
31
+ --md-sys-color-on-secondary: rgb(54 48 22);
32
+ --md-sys-color-secondary-container: rgb(78 71 42);
33
+ --md-sys-color-on-secondary-container: rgb(238 226 188);
34
+ --md-sys-color-tertiary: rgb(169 208 179);
35
+ --md-sys-color-on-tertiary: rgb(20 55 35);
36
+ --md-sys-color-tertiary-container: rgb(44 78 56);
37
+ --md-sys-color-on-tertiary-container: rgb(197 236 206);
38
+ --md-sys-color-error: rgb(255 180 171);
39
+ --md-sys-color-on-error: rgb(105 0 5);
40
+ --md-sys-color-error-container: rgb(147 0 10);
41
+ --md-sys-color-on-error-container: rgb(255 218 214);
42
+ --md-sys-color-background: rgb(21 19 11);
43
+ --md-sys-color-on-background: rgb(232 226 212);
44
+ --md-sys-color-surface: rgb(21 19 11);
45
+ --md-sys-color-on-surface: rgb(232 226 212);
46
+ --md-sys-color-surface-variant: rgb(75 71 57);
47
+ --md-sys-color-on-surface-variant: rgb(205 198 180);
48
+ --md-sys-color-outline: #969080;
49
+ --outline-filter: brightness(0) saturate(100%) invert(64%) sepia(15%)
50
+ saturate(306%) hue-rotate(6deg) brightness(87%) contrast(85%);
51
+ --md-sys-color-outline-variant: rgb(75 71 57);
52
+ --md-sys-color-shadow: rgb(0 0 0);
53
+ --md-sys-color-scrim: rgb(0 0 0);
54
+ --md-sys-color-inverse-surface: rgb(232 226 212);
55
+ --md-sys-color-inverse-on-surface: rgb(51 48 39);
56
+ --md-sys-color-inverse-primary: rgb(109 94 15);
57
+ --md-sys-color-primary-fixed: rgb(248 226 135);
58
+ --md-sys-color-on-primary-fixed: rgb(34 27 0);
59
+ --md-sys-color-primary-fixed-dim: rgb(219 198 110);
60
+ --md-sys-color-on-primary-fixed-variant: rgb(83 70 0);
61
+ --md-sys-color-secondary-fixed: rgb(238 226 188);
62
+ --md-sys-color-on-secondary-fixed: rgb(33 27 4);
63
+ --md-sys-color-secondary-fixed-dim: rgb(209 198 161);
64
+ --md-sys-color-on-secondary-fixed-variant: rgb(78 71 42);
65
+ --md-sys-color-tertiary-fixed: rgb(197 236 206);
66
+ --md-sys-color-on-tertiary-fixed: rgb(0 33 15);
67
+ --md-sys-color-tertiary-fixed-dim: rgb(169 208 179);
68
+ --md-sys-color-on-tertiary-fixed-variant: rgb(44 78 56);
69
+ --md-sys-color-surface-dim: rgb(21 19 11);
70
+ --md-sys-color-surface-bright: rgb(60 57 48);
71
+ --md-sys-color-surface-container-lowest: rgb(16 14 7);
72
+ --md-sys-color-surface-container-low: rgb(30 27 19);
73
+ --md-sys-color-surface-container: rgb(34 32 23);
74
+ --md-sys-color-surface-container-high: rgb(45 42 33);
75
+ --md-sys-color-surface-container-highest: rgb(56 53 43);
76
+ }
77
+ .dark-blue {
78
+ --md-sys-color-primary: rgb(170 199 255);
79
+ --md-sys-color-surface-tint: rgb(170 199 255);
80
+ --md-sys-color-on-primary: rgb(10 48 95);
81
+ --md-sys-color-primary-container: rgb(40 71 119);
82
+ --md-sys-color-on-primary-container: rgb(214 227 255);
83
+ --md-sys-color-secondary: rgb(190 198 220);
84
+ --md-sys-color-on-secondary: rgb(40 49 65);
85
+ --md-sys-color-secondary-container: rgb(62 71 89);
86
+ --md-sys-color-on-secondary-container: rgb(218 226 249);
87
+ --md-sys-color-tertiary: rgb(221 188 224);
88
+ --md-sys-color-on-tertiary: rgb(63 40 68);
89
+ --md-sys-color-tertiary-container: rgb(87 62 92);
90
+ --md-sys-color-on-tertiary-container: rgb(250 216 253);
91
+ --md-sys-color-error: rgb(255 180 171);
92
+ --md-sys-color-on-error: rgb(105 0 5);
93
+ --md-sys-color-error-container: rgb(147 0 10);
94
+ --md-sys-color-on-error-container: rgb(255 218 214);
95
+ --md-sys-color-background: rgb(17 19 24);
96
+ --md-sys-color-on-background: rgb(226 226 233);
97
+ --md-sys-color-surface: rgb(17 19 24);
98
+ --md-sys-color-on-surface: rgb(226 226 233);
99
+ --md-sys-color-surface-variant: rgb(68 71 78);
100
+ --md-sys-color-on-surface-variant: rgb(196 198 208);
101
+ --md-sys-color-outline: #8e9099;
102
+ --outline-filter: brightness(0) saturate(100%) invert(61%) sepia(5%)
103
+ saturate(424%) hue-rotate(192deg) brightness(92%) contrast(92%);
104
+ --md-sys-color-outline-variant: #44474e;
105
+ --md-sys-color-shadow: rgb(0 0 0);
106
+ --md-sys-color-scrim: rgb(0 0 0);
107
+ --md-sys-color-inverse-surface: rgb(226 226 233);
108
+ --md-sys-color-inverse-on-surface: rgb(46 48 54);
109
+ --md-sys-color-inverse-primary: rgb(65 95 145);
110
+ --md-sys-color-primary-fixed: rgb(214 227 255);
111
+ --md-sys-color-on-primary-fixed: rgb(0 27 62);
112
+ --md-sys-color-primary-fixed-dim: rgb(170 199 255);
113
+ --md-sys-color-on-primary-fixed-variant: rgb(40 71 119);
114
+ --md-sys-color-secondary-fixed: rgb(218 226 249);
115
+ --md-sys-color-on-secondary-fixed: rgb(19 28 43);
116
+ --md-sys-color-secondary-fixed-dim: rgb(190 198 220);
117
+ --md-sys-color-on-secondary-fixed-variant: rgb(62 71 89);
118
+ --md-sys-color-tertiary-fixed: rgb(250 216 253);
119
+ --md-sys-color-on-tertiary-fixed: rgb(40 19 46);
120
+ --md-sys-color-tertiary-fixed-dim: rgb(221 188 224);
121
+ --md-sys-color-on-tertiary-fixed-variant: rgb(87 62 92);
122
+ --md-sys-color-surface-dim: rgb(17 19 24);
123
+ --md-sys-color-surface-bright: rgb(55 57 62);
124
+ --md-sys-color-surface-container-lowest: rgb(12 14 19);
125
+ --md-sys-color-surface-container-low: rgb(25 28 32);
126
+ --md-sys-color-surface-container: rgb(29 32 36);
127
+ --md-sys-color-surface-container-high: rgb(40 42 47);
128
+ --md-sys-color-surface-container-highest: rgb(51 53 58);
129
+ }
130
+ .dark-cyan {
131
+ --md-sys-color-primary: rgb(129 213 205);
132
+ --md-sys-color-surface-tint: rgb(129 213 205);
133
+ --md-sys-color-on-primary: rgb(0 55 52);
134
+ --md-sys-color-primary-container: rgb(0 80 75);
135
+ --md-sys-color-on-primary-container: rgb(157 242 233);
136
+ --md-sys-color-secondary: rgb(176 204 200);
137
+ --md-sys-color-on-secondary: rgb(28 53 50);
138
+ --md-sys-color-secondary-container: rgb(50 75 73);
139
+ --md-sys-color-on-secondary-container: rgb(204 232 228);
140
+ --md-sys-color-tertiary: rgb(175 201 231);
141
+ --md-sys-color-on-tertiary: rgb(24 50 74);
142
+ --md-sys-color-tertiary-container: rgb(48 73 98);
143
+ --md-sys-color-on-tertiary-container: rgb(207 229 255);
144
+ --md-sys-color-error: rgb(255 180 171);
145
+ --md-sys-color-on-error: rgb(105 0 5);
146
+ --md-sys-color-error-container: rgb(147 0 10);
147
+ --md-sys-color-on-error-container: rgb(255 218 214);
148
+ --md-sys-color-background: rgb(14 21 20);
149
+ --md-sys-color-on-background: rgb(221 228 226);
150
+ --md-sys-color-surface: rgb(14 21 20);
151
+ --md-sys-color-on-surface: rgb(221 228 226);
152
+ --md-sys-color-surface-variant: rgb(63 73 71);
153
+ --md-sys-color-on-surface-variant: rgb(190 201 198);
154
+ --md-sys-color-outline: #899391;
155
+ --outline-filter: brightness(0) saturate(100%) invert(66%) sepia(8%)
156
+ saturate(263%) hue-rotate(118deg) brightness(85%) contrast(87%);
157
+ --md-sys-color-outline-variant: rgb(63 73 71);
158
+ --md-sys-color-shadow: rgb(0 0 0);
159
+ --md-sys-color-scrim: rgb(0 0 0);
160
+ --md-sys-color-inverse-surface: rgb(221 228 226);
161
+ --md-sys-color-inverse-on-surface: rgb(43 50 49);
162
+ --md-sys-color-inverse-primary: rgb(0 106 100);
163
+ --md-sys-color-primary-fixed: rgb(157 242 233);
164
+ --md-sys-color-on-primary-fixed: rgb(0 32 30);
165
+ --md-sys-color-primary-fixed-dim: rgb(129 213 205);
166
+ --md-sys-color-on-primary-fixed-variant: rgb(0 80 75);
167
+ --md-sys-color-secondary-fixed: rgb(204 232 228);
168
+ --md-sys-color-on-secondary-fixed: rgb(5 31 29);
169
+ --md-sys-color-secondary-fixed-dim: rgb(176 204 200);
170
+ --md-sys-color-on-secondary-fixed-variant: rgb(50 75 73);
171
+ --md-sys-color-tertiary-fixed: rgb(207 229 255);
172
+ --md-sys-color-on-tertiary-fixed: rgb(0 29 51);
173
+ --md-sys-color-tertiary-fixed-dim: rgb(175 201 231);
174
+ --md-sys-color-on-tertiary-fixed-variant: rgb(48 73 98);
175
+ --md-sys-color-surface-dim: rgb(14 21 20);
176
+ --md-sys-color-surface-bright: rgb(52 58 57);
177
+ --md-sys-color-surface-container-lowest: rgb(9 15 15);
178
+ --md-sys-color-surface-container-low: rgb(22 29 28);
179
+ --md-sys-color-surface-container: rgb(26 33 32);
180
+ --md-sys-color-surface-container-high: rgb(37 43 42);
181
+ --md-sys-color-surface-container-highest: rgb(47 54 53);
182
+ }
183
+ .dark-green {
184
+ --md-sys-color-primary: rgb(177 209 138);
185
+ --md-sys-color-surface-tint: rgb(177 209 138);
186
+ --md-sys-color-on-primary: rgb(31 55 1);
187
+ --md-sys-color-primary-container: rgb(53 78 22);
188
+ --md-sys-color-on-primary-container: rgb(205 237 163);
189
+ --md-sys-color-secondary: rgb(191 203 173);
190
+ --md-sys-color-on-secondary: rgb(42 51 30);
191
+ --md-sys-color-secondary-container: rgb(64 74 51);
192
+ --md-sys-color-on-secondary-container: rgb(220 231 200);
193
+ --md-sys-color-tertiary: rgb(160 208 203);
194
+ --md-sys-color-on-tertiary: rgb(0 55 53);
195
+ --md-sys-color-tertiary-container: rgb(31 78 75);
196
+ --md-sys-color-on-tertiary-container: rgb(188 236 231);
197
+ --md-sys-color-error: rgb(255 180 171);
198
+ --md-sys-color-on-error: rgb(105 0 5);
199
+ --md-sys-color-error-container: rgb(147 0 10);
200
+ --md-sys-color-on-error-container: rgb(255 218 214);
201
+ --md-sys-color-background: rgb(18 20 14);
202
+ --md-sys-color-on-background: rgb(226 227 216);
203
+ --md-sys-color-surface: rgb(18 20 14);
204
+ --md-sys-color-on-surface: rgb(226 227 216);
205
+ --md-sys-color-surface-variant: rgb(68 72 61);
206
+ --md-sys-color-on-surface-variant: rgb(197 200 186);
207
+ --md-sys-color-outline: #8f9285;
208
+ --outline-filter: brightness(0) saturate(100%) invert(61%) sepia(6%)
209
+ saturate(487%) hue-rotate(33deg) brightness(92%) contrast(91%);
210
+ --md-sys-color-outline-variant: rgb(68 72 61);
211
+ --md-sys-color-shadow: rgb(0 0 0);
212
+ --md-sys-color-scrim: rgb(0 0 0);
213
+ --md-sys-color-inverse-surface: rgb(226 227 216);
214
+ --md-sys-color-inverse-on-surface: rgb(47 49 42);
215
+ --md-sys-color-inverse-primary: rgb(76 102 43);
216
+ --md-sys-color-primary-fixed: rgb(205 237 163);
217
+ --md-sys-color-on-primary-fixed: rgb(16 32 0);
218
+ --md-sys-color-primary-fixed-dim: rgb(177 209 138);
219
+ --md-sys-color-on-primary-fixed-variant: rgb(53 78 22);
220
+ --md-sys-color-secondary-fixed: rgb(220 231 200);
221
+ --md-sys-color-on-secondary-fixed: rgb(21 30 11);
222
+ --md-sys-color-secondary-fixed-dim: rgb(191 203 173);
223
+ --md-sys-color-on-secondary-fixed-variant: rgb(64 74 51);
224
+ --md-sys-color-tertiary-fixed: rgb(188 236 231);
225
+ --md-sys-color-on-tertiary-fixed: rgb(0 32 30);
226
+ --md-sys-color-tertiary-fixed-dim: rgb(160 208 203);
227
+ --md-sys-color-on-tertiary-fixed-variant: rgb(31 78 75);
228
+ --md-sys-color-surface-dim: rgb(18 20 14);
229
+ --md-sys-color-surface-bright: rgb(56 58 50);
230
+ --md-sys-color-surface-container-lowest: rgb(12 15 9);
231
+ --md-sys-color-surface-container-low: rgb(26 28 22);
232
+ --md-sys-color-surface-container: rgb(30 32 26);
233
+ --md-sys-color-surface-container-high: rgb(40 43 36);
234
+ --md-sys-color-surface-container-highest: rgb(51 54 46);
235
+ }
236
+ .dark-pink {
237
+ --md-sys-color-primary: rgb(240 179 231);
238
+ --md-sys-color-surface-tint: rgb(240 179 231);
239
+ --md-sys-color-on-primary: rgb(75 31 74);
240
+ --md-sys-color-primary-container: rgb(101 54 98);
241
+ --md-sys-color-on-primary-container: rgb(255 215 247);
242
+ --md-sys-color-secondary: rgb(218 191 211);
243
+ --md-sys-color-on-secondary: rgb(61 43 58);
244
+ --md-sys-color-secondary-container: rgb(84 65 81);
245
+ --md-sys-color-on-secondary-container: rgb(247 218 239);
246
+ --md-sys-color-tertiary: rgb(246 184 168);
247
+ --md-sys-color-on-tertiary: rgb(76 38 27);
248
+ --md-sys-color-tertiary-container: rgb(102 59 48);
249
+ --md-sys-color-on-tertiary-container: rgb(255 219 209);
250
+ --md-sys-color-error: rgb(255 180 171);
251
+ --md-sys-color-on-error: rgb(105 0 5);
252
+ --md-sys-color-error-container: rgb(147 0 10);
253
+ --md-sys-color-on-error-container: rgb(255 218 214);
254
+ --md-sys-color-background: rgb(23 18 22);
255
+ --md-sys-color-on-background: rgb(235 223 230);
256
+ --md-sys-color-surface: rgb(23 18 22);
257
+ --md-sys-color-on-surface: rgb(235 223 230);
258
+ --md-sys-color-surface-variant: rgb(78 68 75);
259
+ --md-sys-color-on-surface-variant: rgb(209 195 203);
260
+ --md-sys-color-outline: #9a8d95;
261
+ --outline-filter: brightness(0) saturate(100%) invert(61%) sepia(13%)
262
+ saturate(228%) hue-rotate(270deg) brightness(93%) contrast(82%);
263
+ --md-sys-color-outline-variant: rgb(78 68 75);
264
+ --md-sys-color-shadow: rgb(0 0 0);
265
+ --md-sys-color-scrim: rgb(0 0 0);
266
+ --md-sys-color-inverse-surface: rgb(235 223 230);
267
+ --md-sys-color-inverse-on-surface: rgb(53 46 51);
268
+ --md-sys-color-inverse-primary: rgb(127 77 123);
269
+ --md-sys-color-primary-fixed: rgb(255 215 247);
270
+ --md-sys-color-on-primary-fixed: rgb(51 8 51);
271
+ --md-sys-color-primary-fixed-dim: rgb(240 179 231);
272
+ --md-sys-color-on-primary-fixed-variant: rgb(101 54 98);
273
+ --md-sys-color-secondary-fixed: rgb(247 218 239);
274
+ --md-sys-color-on-secondary-fixed: rgb(38 22 37);
275
+ --md-sys-color-secondary-fixed-dim: rgb(218 191 211);
276
+ --md-sys-color-on-secondary-fixed-variant: rgb(84 65 81);
277
+ --md-sys-color-tertiary-fixed: rgb(255 219 209);
278
+ --md-sys-color-on-tertiary-fixed: rgb(50 18 9);
279
+ --md-sys-color-tertiary-fixed-dim: rgb(246 184 168);
280
+ --md-sys-color-on-tertiary-fixed-variant: rgb(102 59 48);
281
+ --md-sys-color-surface-dim: rgb(23 18 22);
282
+ --md-sys-color-surface-bright: rgb(62 55 60);
283
+ --md-sys-color-surface-container-lowest: rgb(18 13 17);
284
+ --md-sys-color-surface-container-low: rgb(32 26 30);
285
+ --md-sys-color-surface-container: rgb(36 30 34);
286
+ --md-sys-color-surface-container-high: #2f282d;
287
+ --md-sys-color-surface-container-highest: rgb(58 51 56);
288
+ }
289
+
290
+ .logo {
291
+ height: 120px;
292
+ @include media-query($on-palm) {
293
+ height: 90px;
294
+ }
295
+ }
296
+ .header-container {
297
+ display: flex;
298
+ justify-content: center;
299
+ flex-direction: column;
300
+ }
301
+ @font-face {
302
+ font-family: "Excalifont";
303
+ src: url("/assets/theme-assets/theme-fonts/Excalifont-Regular.woff2");
304
+ }
305
+ @font-face {
306
+ font-family: "Comic Shanns";
307
+ src: url("/assets/theme-assets/theme-fonts/comic\ shanns.otf");
308
+ }
309
+ @font-face {
310
+ font-family: "Lexend";
311
+ src: url("/assets/theme-assets/theme-fonts/Lexend-Regular.ttf");
312
+ }
313
+ /**
314
+ * Basic styling
315
+ */
316
+ body {
317
+ font: $base-font-weight #{$base-font-size}/#{$base-line-height}
318
+ $base-font-family;
319
+ color: $text-color;
320
+ background-color: $background-color;
321
+ -webkit-text-size-adjust: 100%;
322
+ -webkit-font-feature-settings: "kern" 1;
323
+ -moz-font-feature-settings: "kern" 1;
324
+ -o-font-feature-settings: "kern" 1;
325
+ font-feature-settings: "kern" 1;
326
+ font-kerning: normal;
327
+ display: flex;
328
+ min-height: 100vh;
329
+ flex-direction: column;
330
+ }
331
+
332
+ /**
333
+ * Set `margin-bottom` to maintain vertical rhythm
334
+ */
335
+ h1,
336
+ h2,
337
+ h3,
338
+ h4,
339
+ h5,
340
+ h6,
341
+ p,
342
+ blockquote,
343
+ pre,
344
+ ul,
345
+ ol,
346
+ dl,
347
+ figure,
348
+ %vertical-rhythm {
349
+ margin-bottom: $spacing-unit / 2;
350
+ }
351
+
352
+ /**
353
+ * `main` element
354
+ */
355
+ main {
356
+ display: block; /* Default value of `display` of `main` element is 'inline' in IE 11. */
357
+ }
358
+
359
+ /**
360
+ * Images
361
+ */
362
+ img {
363
+ max-width: 100%;
364
+ vertical-align: middle;
365
+ }
366
+
367
+ /**
368
+ * Figures
369
+ */
370
+ figure > img {
371
+ display: block;
372
+ }
373
+
374
+ figcaption {
375
+ font-size: $small-font-size;
376
+ }
377
+
378
+ /**
379
+ * Lists
380
+ */
381
+ ul,
382
+ ol {
383
+ margin-left: $spacing-unit;
384
+ }
385
+
386
+ li {
387
+ > ul,
388
+ > ol {
389
+ margin-bottom: 0;
390
+ }
391
+ }
392
+
393
+ /**
394
+ * Headings
395
+ */
396
+ h1,
397
+ h2,
398
+ h3,
399
+ h4,
400
+ h5,
401
+ h6 {
402
+ font-weight: $base-font-weight;
403
+ }
404
+
405
+ /**
406
+ * Links
407
+ */
408
+ a {
409
+ color: var(--md-sys-color-primary);
410
+ text-decoration: none;
411
+
412
+ &:visited {
413
+ // color: var(--md-sys-color-inverse-primary);
414
+ }
415
+
416
+ &:hover {
417
+ color: $text-color;
418
+ text-decoration: underline;
419
+ }
420
+
421
+ .social-media-list &:hover {
422
+ text-decoration: none;
423
+
424
+ .username {
425
+ text-decoration: underline;
426
+ }
427
+ }
428
+ }
429
+
430
+ /**
431
+ * Blockquotes
432
+ */
433
+ blockquote {
434
+ color: var(--md-sys-color-primary);
435
+ border-left: 3px solid $grey-color-light;
436
+ padding-left: $spacing-unit / 2;
437
+ margin-left: 12px;
438
+ margin-right: 12px;
439
+ @include relative-font-size(1.125);
440
+ letter-spacing: -1px;
441
+ font-style: italic;
442
+
443
+ > :last-child {
444
+ margin-bottom: 0;
445
+ }
446
+ }
447
+
448
+ /**
449
+ * Code formatting
450
+ */
451
+ pre,
452
+ code {
453
+ @include relative-font-size(0.9375);
454
+ border: 1px solid var(--md-sys-color-outline);
455
+ border-radius: 3px;
456
+ background-color: var(--md-sys-color-surface-container-high);
457
+ }
458
+
459
+ code {
460
+ padding: 1px 5px;
461
+ }
462
+
463
+ pre {
464
+ padding: 8px 12px;
465
+ overflow-x: auto;
466
+
467
+ > code {
468
+ border: 0;
469
+ padding-right: 0;
470
+ padding-left: 0;
471
+ }
472
+ }
473
+
474
+ /**
475
+ * Wrapper
476
+ */
477
+ .wrapper {
478
+ max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit} * 2));
479
+ max-width: calc(#{$content-width} - (#{$spacing-unit} * 2));
480
+ margin-right: auto;
481
+ margin-left: auto;
482
+ padding-right: $spacing-unit;
483
+ padding-left: $spacing-unit + 100;
484
+ @extend %clearfix;
485
+
486
+ @include media-query($on-laptop) {
487
+ max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit}));
488
+ max-width: calc(#{$content-width} - (#{$spacing-unit}));
489
+ padding-right: $spacing-unit / 2;
490
+ padding-left: ($spacing-unit / 2)+100;
491
+ }
492
+ @include media-query($on-palm) {
493
+ padding-left: $spacing-unit/2;
494
+ }
495
+ }
496
+
497
+ /**
498
+ * Clearfix
499
+ */
500
+ %clearfix:after {
501
+ content: "";
502
+ display: table;
503
+ clear: both;
504
+ }
505
+
506
+ /**
507
+ * Icons
508
+ */
509
+
510
+ .svg-icon {
511
+ width: 16px;
512
+ height: 16px;
513
+ display: inline-block;
514
+ fill: #{$grey-color};
515
+ padding-right: 5px;
516
+ vertical-align: text-top;
517
+ }
518
+
519
+ .social-media-list {
520
+ li + li {
521
+ padding-top: 5px;
522
+ }
523
+ }
524
+
525
+ /**
526
+ * Tables
527
+ */
528
+
529
+ table {
530
+ // display: block;
531
+ overflow-x: auto;
532
+ // white-space: nowrap;
533
+ max-width: 100%;
534
+ margin-bottom: $spacing-unit;
535
+ width: 100%;
536
+ text-align: $table-text-align;
537
+ color: var(--md-sys-color-on-surface);
538
+ border-collapse: collapse;
539
+ border: 1px solid var(--md-sys-color-outline);
540
+ tr {
541
+ &:nth-child(even) {
542
+ background-color: var(--md-sys-color-surface-container-high);
543
+ }
544
+ }
545
+ th,
546
+ td {
547
+ padding: ($spacing-unit / 3) ($spacing-unit / 2);
548
+ }
549
+ th {
550
+ background-color: var(--md-sys-color-surface-container-highest);
551
+ // border: 1px solid darken($grey-color-light, 4%);
552
+ // border-bottom-color: darken($grey-color-light, 12%);
553
+ }
554
+ td {
555
+ border: 1px solid var(--md-sys-color-outline);
556
+ }
557
+ }
558
+ .primary {
559
+ background-color: var(--md-sys-color-primary);
560
+ }
561
+ .primary-text {
562
+ color: var(--md-sys-color-primary);
563
+ }
564
+ .on-primary {
565
+ background-color: var(--md-sys-color-on-primary);
566
+ }
567
+ .on-primary-text {
568
+ color: var(--md-sys-color-on-primary);
569
+ }
570
+ .primary-container {
571
+ background-color: var(--md-sys-color-primary-container);
572
+ }
573
+ .primary-container-text {
574
+ color: var(--md-sys-color-primary-container);
575
+ }
576
+ .on-primary-container {
577
+ background-color: var(--md-sys-color-on-primary-container);
578
+ }
579
+ .on-primary-container-text {
580
+ color: var(--md-sys-color-on-primary-container);
581
+ }
582
+ .primary-fixed {
583
+ background-color: var(--md-sys-color-primary-fixed);
584
+ }
585
+ .primary-fixed-text {
586
+ color: var(--md-sys-color-primary-fixed);
587
+ }
588
+ .on-primary-fixed {
589
+ background-color: var(--md-sys-color-on-primary-fixed);
590
+ }
591
+ .on-primary-fixed-text {
592
+ color: var(--md-sys-color-on-primary-fixed);
593
+ }
594
+ .primary-fixed-dim {
595
+ background-color: var(--md-sys-color-primary-fixed-dim);
596
+ }
597
+ .primary-fixed-dim-text {
598
+ color: var(--md-sys-color-primary-fixed-dim);
599
+ }
600
+ .on-primary-fixed-variant {
601
+ background-color: var(--md-sys-color-on-primary-fixed-variant);
602
+ }
603
+ .on-primary-fixed-variant-text {
604
+ color: var(--md-sys-color-on-primary-fixed-variant);
605
+ }
606
+ .secondary {
607
+ background-color: var(--md-sys-color-secondary);
608
+ }
609
+ .secondary-text {
610
+ color: var(--md-sys-color-secondary);
611
+ }
612
+ .on-secondary {
613
+ background-color: var(--md-sys-color-on-secondary);
614
+ }
615
+ .on-secondary-text {
616
+ color: var(--md-sys-color-on-secondary);
617
+ }
618
+ .secondary-container {
619
+ background-color: var(--md-sys-color-secondary-container);
620
+ }
621
+ .secondary-container-text {
622
+ color: var(--md-sys-color-secondary-container);
623
+ }
624
+ .on-secondary-container {
625
+ background-color: var(--md-sys-color-on-secondary-container);
626
+ }
627
+ .on-secondary-container-text {
628
+ color: var(--md-sys-color-on-secondary-container);
629
+ }
630
+ .secondary-fixed {
631
+ background-color: var(--md-sys-color-secondary-fixed);
632
+ }
633
+ .secondary-fixed-text {
634
+ color: var(--md-sys-color-secondary-fixed);
635
+ }
636
+ .on-secondary-fixed {
637
+ background-color: var(--md-sys-color-on-secondary-fixed);
638
+ }
639
+ .on-secondary-fixed-text {
640
+ color: var(--md-sys-color-on-secondary-fixed);
641
+ }
642
+ .secondary-fixed-dim {
643
+ background-color: var(--md-sys-color-secondary-fixed-dim);
644
+ }
645
+ .secondary-fixed-dim-text {
646
+ color: var(--md-sys-color-secondary-fixed-dim);
647
+ }
648
+ .on-secondary-fixed-variant {
649
+ background-color: var(--md-sys-color-on-secondary-fixed-variant);
650
+ }
651
+ .on-secondary-fixed-variant-text {
652
+ color: var(--md-sys-color-on-secondary-fixed-variant);
653
+ }
654
+ .tertiary {
655
+ background-color: var(--md-sys-color-tertiary);
656
+ }
657
+ .tertiary-text {
658
+ color: var(--md-sys-color-tertiary);
659
+ }
660
+ .on-tertiary {
661
+ background-color: var(--md-sys-color-on-tertiary);
662
+ }
663
+ .on-tertiary-text {
664
+ color: var(--md-sys-color-on-tertiary);
665
+ }
666
+ .tertiary-container {
667
+ background-color: var(--md-sys-color-tertiary-container);
668
+ }
669
+ .tertiary-container-text {
670
+ color: var(--md-sys-color-tertiary-container);
671
+ }
672
+ .on-tertiary-container {
673
+ background-color: var(--md-sys-color-on-tertiary-container);
674
+ }
675
+ .on-tertiary-container-text {
676
+ color: var(--md-sys-color-on-tertiary-container);
677
+ }
678
+ .tertiary-fixed {
679
+ background-color: var(--md-sys-color-tertiary-fixed);
680
+ }
681
+ .tertiary-fixed-text {
682
+ color: var(--md-sys-color-tertiary-fixed);
683
+ }
684
+ .on-tertiary-fixed {
685
+ background-color: var(--md-sys-color-on-tertiary-fixed);
686
+ }
687
+ .on-tertiary-fixed-text {
688
+ color: var(--md-sys-color-on-tertiary-fixed);
689
+ }
690
+ .tertiary-fixed-dim {
691
+ background-color: var(--md-sys-color-tertiary-fixed-dim);
692
+ }
693
+ .tertiary-fixed-dim-text {
694
+ color: var(--md-sys-color-tertiary-fixed-dim);
695
+ }
696
+ .on-tertiary-fixed-variant {
697
+ background-color: var(--md-sys-color-on-tertiary-fixed-variant);
698
+ }
699
+ .on-tertiary-fixed-variant-text {
700
+ color: var(--md-sys-color-on-tertiary-fixed-variant);
701
+ }
702
+ .error {
703
+ background-color: var(--md-sys-color-error);
704
+ }
705
+ .error-text {
706
+ color: var(--md-sys-color-error);
707
+ }
708
+ .on-error {
709
+ background-color: var(--md-sys-color-on-error);
710
+ }
711
+ .on-error-text {
712
+ color: var(--md-sys-color-on-error);
713
+ }
714
+ .error-container {
715
+ background-color: var(--md-sys-color-error-container);
716
+ }
717
+ .error-container-text {
718
+ color: var(--md-sys-color-error-container);
719
+ }
720
+ .on-error-container {
721
+ background-color: var(--md-sys-color-on-error-container);
722
+ }
723
+ .on-error-container-text {
724
+ color: var(--md-sys-color-on-error-container);
725
+ }
726
+ .outline {
727
+ background-color: var(--md-sys-color-outline);
728
+ }
729
+ .outline-text {
730
+ color: var(--md-sys-color-outline);
731
+ }
732
+ .background {
733
+ background-color: var(--md-sys-color-background);
734
+ }
735
+ .background-text {
736
+ color: var(--md-sys-color-background);
737
+ }
738
+ .on-background {
739
+ background-color: var(--md-sys-color-on-background);
740
+ }
741
+ .on-background-text {
742
+ color: var(--md-sys-color-on-background);
743
+ }
744
+ .surface {
745
+ background-color: var(--md-sys-color-surface);
746
+ }
747
+ .surface-text {
748
+ color: var(--md-sys-color-surface);
749
+ }
750
+ .on-surface {
751
+ background-color: var(--md-sys-color-on-surface);
752
+ }
753
+ .on-surface-text {
754
+ color: var(--md-sys-color-on-surface);
755
+ }
756
+ .surface-variant {
757
+ background-color: var(--md-sys-color-surface-variant);
758
+ }
759
+ .surface-variant-text {
760
+ color: var(--md-sys-color-surface-variant);
761
+ }
762
+ .on-surface-variant {
763
+ background-color: var(--md-sys-color-on-surface-variant);
764
+ }
765
+ .on-surface-variant-text {
766
+ color: var(--md-sys-color-on-surface-variant);
767
+ }
768
+ .inverse-surface {
769
+ background-color: var(--md-sys-color-inverse-surface);
770
+ }
771
+ .inverse-surface-text {
772
+ color: var(--md-sys-color-inverse-surface);
773
+ }
774
+ .inverse-on-surface {
775
+ background-color: var(--md-sys-color-inverse-on-surface);
776
+ }
777
+ .inverse-on-surface-text {
778
+ color: var(--md-sys-color-inverse-on-surface);
779
+ }
780
+ .inverse-primary {
781
+ background-color: var(--md-sys-color-inverse-primary);
782
+ }
783
+ .inverse-primary-text {
784
+ color: var(--md-sys-color-inverse-primary);
785
+ }
786
+ .shadow {
787
+ background-color: var(--md-sys-color-shadow);
788
+ }
789
+ .shadow-text {
790
+ color: var(--md-sys-color-shadow);
791
+ }
792
+ .surface-tint {
793
+ background-color: var(--md-sys-color-surface-tint);
794
+ }
795
+ .surface-tint-text {
796
+ color: var(--md-sys-color-surface-tint);
797
+ }
798
+ .outline-variant {
799
+ background-color: var(--md-sys-color-outline-variant);
800
+ }
801
+ .outline-variant-text {
802
+ color: var(--md-sys-color-outline-variant);
803
+ }
804
+ .scrim {
805
+ background-color: var(--md-sys-color-scrim);
806
+ }
807
+ .scrim-text {
808
+ color: var(--md-sys-color-scrim);
809
+ }
810
+ .surface-container-highest {
811
+ background-color: var(--md-sys-color-surface-container-highest);
812
+ }
813
+ .surface-container-highest-text {
814
+ color: var(--md-sys-color-surface-container-highest);
815
+ }
816
+ .surface-container-high {
817
+ background-color: var(--md-sys-color-surface-container-high);
818
+ }
819
+ .surface-container-high-text {
820
+ color: var(--md-sys-color-surface-container-high);
821
+ }
822
+ .surface-container {
823
+ background-color: var(--md-sys-color-surface-container);
824
+ }
825
+ .surface-container-text {
826
+ color: var(--md-sys-color-surface-container);
827
+ }
828
+ .surface-container-low {
829
+ background-color: var(--md-sys-color-surface-container-low);
830
+ }
831
+ .surface-container-low-text {
832
+ color: var(--md-sys-color-surface-container-low);
833
+ }
834
+ .surface-container-lowest {
835
+ background-color: var(--md-sys-color-surface-container-lowest);
836
+ }
837
+ .surface-container-lowest-text {
838
+ color: var(--md-sys-color-surface-container-lowest);
839
+ }
840
+ .surface-bright {
841
+ background-color: var(--md-sys-color-surface-bright);
842
+ }
843
+ .surface-bright-text {
844
+ color: var(--md-sys-color-surface-bright);
845
+ }
846
+ .surface-dim {
847
+ background-color: var(--md-sys-color-surface-dim);
848
+ }
849
+ .surface-dim-text {
850
+ color: var(--md-sys-color-surface-dim);
851
+ }