creek-jekyll-theme 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (178) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +81 -0
  4. data/_config.yml +306 -0
  5. data/_data/README.md +3 -0
  6. data/_data/navigation/docs.yml +56 -0
  7. data/_data/navigation/main.yml +12 -0
  8. data/_data/navigation.yml +68 -0
  9. data/_data/ui-text.yml +2024 -0
  10. data/_includes/analytics-providers/custom.html +3 -0
  11. data/_includes/analytics-providers/google-gtag.html +9 -0
  12. data/_includes/analytics-providers/google-universal.html +7 -0
  13. data/_includes/analytics-providers/google.html +14 -0
  14. data/_includes/analytics.html +14 -0
  15. data/_includes/archive-single.html +30 -0
  16. data/_includes/author-profile-custom-links.html +7 -0
  17. data/_includes/author-profile.html +246 -0
  18. data/_includes/breadcrumbs.html +40 -0
  19. data/_includes/browser-upgrade.html +2 -0
  20. data/_includes/category-list.html +19 -0
  21. data/_includes/comment.html +22 -0
  22. data/_includes/comments-providers/custom.html +3 -0
  23. data/_includes/comments-providers/custom_scripts.html +3 -0
  24. data/_includes/comments-providers/discourse.html +13 -0
  25. data/_includes/comments-providers/disqus.html +15 -0
  26. data/_includes/comments-providers/facebook.html +8 -0
  27. data/_includes/comments-providers/giscus.html +24 -0
  28. data/_includes/comments-providers/scripts.html +20 -0
  29. data/_includes/comments-providers/staticman.html +40 -0
  30. data/_includes/comments-providers/staticman_v2.html +40 -0
  31. data/_includes/comments-providers/utterances.html +21 -0
  32. data/_includes/comments.html +180 -0
  33. data/_includes/documents-collection.html +15 -0
  34. data/_includes/feature_row +41 -0
  35. data/_includes/figure +9 -0
  36. data/_includes/footer/custom.html +3 -0
  37. data/_includes/footer.html +21 -0
  38. data/_includes/gallery +35 -0
  39. data/_includes/group-by-array +47 -0
  40. data/_includes/head/custom.html +15 -0
  41. data/_includes/head.html +25 -0
  42. data/_includes/masthead.html +35 -0
  43. data/_includes/nav_list +26 -0
  44. data/_includes/page__date.html +6 -0
  45. data/_includes/page__hero.html +55 -0
  46. data/_includes/page__hero_video.html +2 -0
  47. data/_includes/page__meta.html +31 -0
  48. data/_includes/page__taxonomy.html +7 -0
  49. data/_includes/paginator.html +69 -0
  50. data/_includes/post_pagination.html +14 -0
  51. data/_includes/posts-category.html +5 -0
  52. data/_includes/posts-tag.html +5 -0
  53. data/_includes/scripts.html +28 -0
  54. data/_includes/search/algolia-search-scripts.html +62 -0
  55. data/_includes/search/google-search-scripts.html +30 -0
  56. data/_includes/search/lunr-search-scripts.html +10 -0
  57. data/_includes/search/search_form.html +26 -0
  58. data/_includes/seo.html +158 -0
  59. data/_includes/sidebar.html +19 -0
  60. data/_includes/skip-links.html +7 -0
  61. data/_includes/social-share.html +11 -0
  62. data/_includes/tag-list.html +19 -0
  63. data/_includes/toc +7 -0
  64. data/_includes/toc.html +182 -0
  65. data/_includes/video +24 -0
  66. data/_layouts/archive-taxonomy.html +29 -0
  67. data/_layouts/archive.html +26 -0
  68. data/_layouts/categories.html +43 -0
  69. data/_layouts/category.html +10 -0
  70. data/_layouts/collection.html +10 -0
  71. data/_layouts/compress.html +10 -0
  72. data/_layouts/default.html +41 -0
  73. data/_layouts/home.html +22 -0
  74. data/_layouts/posts.html +30 -0
  75. data/_layouts/search.html +42 -0
  76. data/_layouts/single.html +95 -0
  77. data/_layouts/splash.html +22 -0
  78. data/_layouts/tag.html +10 -0
  79. data/_layouts/tags.html +43 -0
  80. data/_pages/404.html +26 -0
  81. data/_sass/minimal-mistakes/_animations.scss +21 -0
  82. data/_sass/minimal-mistakes/_archive.scss +463 -0
  83. data/_sass/minimal-mistakes/_base.scss +339 -0
  84. data/_sass/minimal-mistakes/_buttons.scss +97 -0
  85. data/_sass/minimal-mistakes/_footer.scss +85 -0
  86. data/_sass/minimal-mistakes/_forms.scss +359 -0
  87. data/_sass/minimal-mistakes/_masthead.scss +93 -0
  88. data/_sass/minimal-mistakes/_mixins.scss +92 -0
  89. data/_sass/minimal-mistakes/_navigation.scss +573 -0
  90. data/_sass/minimal-mistakes/_notices.scss +109 -0
  91. data/_sass/minimal-mistakes/_page.scss +578 -0
  92. data/_sass/minimal-mistakes/_print.scss +252 -0
  93. data/_sass/minimal-mistakes/_reset.scss +187 -0
  94. data/_sass/minimal-mistakes/_search.scss +132 -0
  95. data/_sass/minimal-mistakes/_sidebar.scss +353 -0
  96. data/_sass/minimal-mistakes/_syntax.scss +324 -0
  97. data/_sass/minimal-mistakes/_tables.scss +39 -0
  98. data/_sass/minimal-mistakes/_utilities.scss +593 -0
  99. data/_sass/minimal-mistakes/_variables.scss +173 -0
  100. data/_sass/minimal-mistakes/skins/_air.scss +23 -0
  101. data/_sass/minimal-mistakes/skins/_aqua.scss +34 -0
  102. data/_sass/minimal-mistakes/skins/_contrast.scss +52 -0
  103. data/_sass/minimal-mistakes/skins/_dark.scss +30 -0
  104. data/_sass/minimal-mistakes/skins/_default.scss +5 -0
  105. data/_sass/minimal-mistakes/skins/_dirt.scss +33 -0
  106. data/_sass/minimal-mistakes/skins/_mint.scss +24 -0
  107. data/_sass/minimal-mistakes/skins/_neon.scss +63 -0
  108. data/_sass/minimal-mistakes/skins/_plum.scss +70 -0
  109. data/_sass/minimal-mistakes/skins/_sunrise.scss +49 -0
  110. data/_sass/minimal-mistakes/vendor/breakpoint/_breakpoint.scss +114 -0
  111. data/_sass/minimal-mistakes/vendor/breakpoint/_context.scss +95 -0
  112. data/_sass/minimal-mistakes/vendor/breakpoint/_helpers.scss +151 -0
  113. data/_sass/minimal-mistakes/vendor/breakpoint/_legacy-settings.scss +50 -0
  114. data/_sass/minimal-mistakes/vendor/breakpoint/_no-query.scss +15 -0
  115. data/_sass/minimal-mistakes/vendor/breakpoint/_parsers.scss +215 -0
  116. data/_sass/minimal-mistakes/vendor/breakpoint/_respond-to.scss +82 -0
  117. data/_sass/minimal-mistakes/vendor/breakpoint/_settings.scss +71 -0
  118. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss +33 -0
  119. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_query.scss +82 -0
  120. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_resolution.scss +31 -0
  121. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_single.scss +26 -0
  122. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_triple.scss +36 -0
  123. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_default-pair.scss +21 -0
  124. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_default.scss +22 -0
  125. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_double-string.scss +22 -0
  126. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/resolution/_resolution.scss +60 -0
  127. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/single/_default.scss +13 -0
  128. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/triple/_default.scss +18 -0
  129. data/_sass/minimal-mistakes/vendor/magnific-popup/_magnific-popup.scss +649 -0
  130. data/_sass/minimal-mistakes/vendor/magnific-popup/_settings.scss +46 -0
  131. data/_sass/minimal-mistakes/vendor/susy/_su.scss +4 -0
  132. data/_sass/minimal-mistakes/vendor/susy/_susy-prefix.scss +13 -0
  133. data/_sass/minimal-mistakes/vendor/susy/_susy.scss +5 -0
  134. data/_sass/minimal-mistakes/vendor/susy/plugins/_svg-grid.scss +5 -0
  135. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_prefix.scss +7 -0
  136. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-api.scss +114 -0
  137. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-grid-math.scss +67 -0
  138. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-settings.scss +14 -0
  139. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-unprefix.scss +18 -0
  140. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-utilities.scss +133 -0
  141. data/_sass/minimal-mistakes/vendor/susy/susy/_api.scss +318 -0
  142. data/_sass/minimal-mistakes/vendor/susy/susy/_normalize.scss +261 -0
  143. data/_sass/minimal-mistakes/vendor/susy/susy/_parse.scss +163 -0
  144. data/_sass/minimal-mistakes/vendor/susy/susy/_settings.scss +329 -0
  145. data/_sass/minimal-mistakes/vendor/susy/susy/_su-math.scss +441 -0
  146. data/_sass/minimal-mistakes/vendor/susy/susy/_su-validate.scss +213 -0
  147. data/_sass/minimal-mistakes/vendor/susy/susy/_syntax-helpers.scss +191 -0
  148. data/_sass/minimal-mistakes/vendor/susy/susy/_unprefix.scss +56 -0
  149. data/_sass/minimal-mistakes/vendor/susy/susy/_utilities.scss +167 -0
  150. data/_sass/minimal-mistakes.scss +40 -0
  151. data/assets/css/main.scss +9 -0
  152. data/assets/images/android-chrome-192x192.png +0 -0
  153. data/assets/images/android-chrome-512x512.png +0 -0
  154. data/assets/images/apple-touch-icon.png +0 -0
  155. data/assets/images/browserconfig.xml +9 -0
  156. data/assets/images/creek-logo.png +0 -0
  157. data/assets/images/favicon-16x16.png +0 -0
  158. data/assets/images/favicon-32x32.png +0 -0
  159. data/assets/images/favicon.ico +0 -0
  160. data/assets/images/mstile-150x150.png +0 -0
  161. data/assets/images/safari-pinned-tab.svg +48 -0
  162. data/assets/images/site-under-construction.png +0 -0
  163. data/assets/images/site.webmanifest +19 -0
  164. data/assets/js/_main.js +136 -0
  165. data/assets/js/lunr/lunr-en.js +73 -0
  166. data/assets/js/lunr/lunr-gr.js +526 -0
  167. data/assets/js/lunr/lunr-store.js +84 -0
  168. data/assets/js/lunr/lunr.js +3475 -0
  169. data/assets/js/lunr/lunr.min.js +6 -0
  170. data/assets/js/main.min.js +6 -0
  171. data/assets/js/plugins/gumshoe.js +484 -0
  172. data/assets/js/plugins/jquery.ba-throttle-debounce.js +252 -0
  173. data/assets/js/plugins/jquery.fitvids.js +82 -0
  174. data/assets/js/plugins/jquery.greedy-navigation.js +127 -0
  175. data/assets/js/plugins/jquery.magnific-popup.js +1860 -0
  176. data/assets/js/plugins/smooth-scroll.js +650 -0
  177. data/assets/js/vendor/jquery/jquery-3.6.0.js +10881 -0
  178. metadata +233 -0
@@ -0,0 +1,353 @@
1
+ /* ==========================================================================
2
+ SIDEBAR
3
+ ========================================================================== */
4
+
5
+ /*
6
+ Default
7
+ ========================================================================== */
8
+
9
+ .sidebar {
10
+ @include clearfix();
11
+ // @include breakpoint(max-width $large) {
12
+ // /* fix z-index order of follow links */
13
+ // position: relative;
14
+ // z-index: 10;
15
+ // -webkit-transform: translate3d(0, 0, 0);
16
+ // transform: translate3d(0, 0, 0);
17
+ // }
18
+
19
+ @include breakpoint($large) {
20
+ float: left;
21
+ width: calc(#{$right-sidebar-width-narrow} - 1em);
22
+ opacity: 0.75;
23
+ -webkit-transition: opacity 0.2s ease-in-out;
24
+ transition: opacity 0.2s ease-in-out;
25
+
26
+ &:hover {
27
+ opacity: 1;
28
+ }
29
+
30
+ &.sticky {
31
+ overflow-y: auto;
32
+ /* calculate height of nav list
33
+ viewport height - nav height - masthead x-padding
34
+ */
35
+ max-height: calc(100vh - #{$nav-height} - 2em);
36
+ }
37
+ }
38
+
39
+ @include breakpoint($x-large) {
40
+ width: calc(#{$right-sidebar-width} - 1em);
41
+ }
42
+
43
+ > * {
44
+ margin-top: 1em;
45
+ margin-bottom: 1em;
46
+ }
47
+
48
+ h2,
49
+ h3,
50
+ h4,
51
+ h5,
52
+ h6 {
53
+ margin-bottom: 0;
54
+ font-family: $sans-serif-narrow;
55
+ }
56
+
57
+ p,
58
+ li {
59
+ font-family: $sans-serif;
60
+ font-size: $type-size-6;
61
+ line-height: 1.5;
62
+ }
63
+
64
+ img {
65
+ width: 100%;
66
+
67
+ &.emoji {
68
+ width: 20px;
69
+ height: 20px;
70
+ }
71
+ }
72
+ }
73
+
74
+ .sidebar__right {
75
+ margin-bottom: 1em;
76
+
77
+ @include breakpoint($large) {
78
+ position: absolute;
79
+ top: 0;
80
+ right: 0;
81
+ width: $right-sidebar-width-narrow;
82
+ margin-right: -1 * $right-sidebar-width-narrow;
83
+ padding-left: 1em;
84
+ z-index: 10;
85
+
86
+ &.sticky {
87
+ @include clearfix();
88
+ position: -webkit-sticky;
89
+ position: sticky;
90
+ top: 2em;
91
+ float: right;
92
+
93
+ .toc {
94
+ .toc__menu {
95
+ overflow-y: auto;
96
+ max-height: calc(100vh - 7em);
97
+ }
98
+ }
99
+ }
100
+ }
101
+
102
+ @include breakpoint($x-large) {
103
+ width: $right-sidebar-width;
104
+ margin-right: -1 * $right-sidebar-width;
105
+ }
106
+ }
107
+
108
+ .splash .sidebar__right {
109
+ @include breakpoint($large) {
110
+ position: relative;
111
+ float: right;
112
+ margin-right: 0;
113
+ }
114
+
115
+ @include breakpoint($x-large) {
116
+ margin-right: 0;
117
+ }
118
+ }
119
+
120
+ /*
121
+ Author profile and links
122
+ ========================================================================== */
123
+
124
+ .author__avatar {
125
+ display: table-cell;
126
+ vertical-align: top;
127
+ width: 36px;
128
+ height: 36px;
129
+
130
+ @include breakpoint($large) {
131
+ display: block;
132
+ width: auto;
133
+ height: auto;
134
+ }
135
+
136
+ img {
137
+ max-width: 110px;
138
+ border-radius: 50%;
139
+
140
+ @include breakpoint($large) {
141
+ padding: 5px;
142
+ border: 1px solid $border-color;
143
+ }
144
+ }
145
+ }
146
+
147
+ .author__content {
148
+ display: table-cell;
149
+ vertical-align: top;
150
+ padding-left: 15px;
151
+ padding-right: 25px;
152
+ line-height: 1;
153
+
154
+ @include breakpoint($large) {
155
+ display: block;
156
+ width: 100%;
157
+ padding-left: 0;
158
+ padding-right: 0;
159
+ }
160
+
161
+ a {
162
+ color: inherit;
163
+ text-decoration: none;
164
+ }
165
+ }
166
+
167
+ .author__name {
168
+ margin: 0;
169
+
170
+ @include breakpoint($large) {
171
+ margin-top: 10px;
172
+ margin-bottom: 10px;
173
+ }
174
+ }
175
+ .sidebar .author__name {
176
+ font-family: $sans-serif;
177
+ font-size: $type-size-5;
178
+ }
179
+
180
+ .author__bio {
181
+ margin: 0;
182
+
183
+ @include breakpoint($large) {
184
+ margin-top: 10px;
185
+ margin-bottom: 20px;
186
+ }
187
+ }
188
+
189
+ .author__urls-wrapper {
190
+ position: relative;
191
+ display: table-cell;
192
+ vertical-align: middle;
193
+ font-family: $sans-serif;
194
+ z-index: 20;
195
+ cursor: pointer;
196
+
197
+ li:last-child {
198
+ a {
199
+ margin-bottom: 0;
200
+ }
201
+ }
202
+
203
+ .author__urls {
204
+ span.label {
205
+ padding-left: 5px;
206
+ }
207
+ }
208
+
209
+ @include breakpoint($large) {
210
+ display: block;
211
+ }
212
+
213
+ button {
214
+ position: relative;
215
+ margin-bottom: 0;
216
+
217
+ &:before {
218
+ @supports (pointer-events: none) {
219
+ content: '';
220
+ position: fixed;
221
+ top: 0;
222
+ left: 0;
223
+ width: 100%;
224
+ height: 100%;
225
+ pointer-events: none;
226
+ }
227
+ }
228
+
229
+ &.open {
230
+ &:before {
231
+ pointer-events: auto;
232
+ }
233
+ }
234
+
235
+ @include breakpoint($large) {
236
+ display: none;
237
+ }
238
+ }
239
+ }
240
+
241
+ .author__urls {
242
+ display: none;
243
+ position: absolute;
244
+ right: 0;
245
+ margin-top: 15px;
246
+ padding: 10px;
247
+ list-style-type: none;
248
+ border: 1px solid $border-color;
249
+ border-radius: $border-radius;
250
+ background: $background-color;
251
+ box-shadow: 0 2px 4px 0 rgba(#000, 0.16), 0 2px 10px 0 rgba(#000, 0.12);
252
+ cursor: default;
253
+
254
+ &.is--visible {
255
+ display: block;
256
+ }
257
+
258
+ @include breakpoint($large) {
259
+ display: block;
260
+ position: relative;
261
+ margin: 0;
262
+ padding: 0;
263
+ border: 0;
264
+ background: transparent;
265
+ box-shadow: none;
266
+ }
267
+
268
+ &:before {
269
+ display: block;
270
+ content: "";
271
+ position: absolute;
272
+ top: -11px;
273
+ left: calc(50% - 10px);
274
+ width: 0;
275
+ border-style: solid;
276
+ border-width: 0 10px 10px;
277
+ border-color: $border-color transparent;
278
+ z-index: 0;
279
+
280
+ @include breakpoint($large) {
281
+ display: none;
282
+ }
283
+ }
284
+
285
+ &:after {
286
+ display: block;
287
+ content: "";
288
+ position: absolute;
289
+ top: -10px;
290
+ left: calc(50% - 10px);
291
+ width: 0;
292
+ border-style: solid;
293
+ border-width: 0 10px 10px;
294
+ border-color: $background-color transparent;
295
+ z-index: 1;
296
+
297
+ @include breakpoint($large) {
298
+ display: none;
299
+ }
300
+ }
301
+
302
+ ul {
303
+ padding: 10px;
304
+ list-style-type: none;
305
+ }
306
+
307
+ li {
308
+ white-space: nowrap;
309
+ }
310
+
311
+ a {
312
+ display: block;
313
+ margin-bottom: 5px;
314
+ padding-right: 5px;
315
+ padding-top: 2px;
316
+ padding-bottom: 2px;
317
+ color: inherit;
318
+ font-size: $type-size-5;
319
+ text-decoration: none;
320
+
321
+ &:hover {
322
+ text-decoration: underline;
323
+ }
324
+ }
325
+ }
326
+
327
+ /*
328
+ Wide Pages
329
+ ========================================================================== */
330
+
331
+ .wide .sidebar__right {
332
+ margin-bottom: 1em;
333
+
334
+ @include breakpoint($large) {
335
+ position: initial;
336
+ top: initial;
337
+ right: initial;
338
+ width: initial;
339
+ margin-right: initial;
340
+ padding-left: initial;
341
+ z-index: initial;
342
+
343
+ &.sticky {
344
+ float: none;
345
+ }
346
+ }
347
+
348
+ @include breakpoint($x-large) {
349
+ width: initial;
350
+ margin-right: initial;
351
+ }
352
+ }
353
+
@@ -0,0 +1,324 @@
1
+ /* ==========================================================================
2
+ Syntax highlighting
3
+ ========================================================================== */
4
+
5
+ div.highlighter-rouge,
6
+ figure.highlight {
7
+ position: relative;
8
+ margin-bottom: 1em;
9
+ background: $base00;
10
+ color: $base05;
11
+ font-family: $monospace;
12
+ font-size: $type-size-6;
13
+ line-height: 1.8;
14
+ border-radius: $border-radius;
15
+
16
+ > pre,
17
+ pre.highlight {
18
+ margin: 0;
19
+ padding: 1em;
20
+ }
21
+ }
22
+
23
+ .highlight table {
24
+ margin-bottom: 0;
25
+ font-size: 1em;
26
+ border: 0;
27
+
28
+ td {
29
+ padding: 0;
30
+ width: calc(100% - 1em);
31
+ border: 0;
32
+
33
+ /* line numbers*/
34
+ &.gutter,
35
+ &.rouge-gutter {
36
+ padding-right: 1em;
37
+ width: 1em;
38
+ color: $base04;
39
+ border-right: 1px solid $base04;
40
+ text-align: right;
41
+ }
42
+
43
+ /* code */
44
+ &.code,
45
+ &.rouge-code {
46
+ padding-left: 1em;
47
+ }
48
+ }
49
+
50
+ pre {
51
+ margin: 0;
52
+ }
53
+ }
54
+
55
+ .highlight pre {
56
+ width: 100%;
57
+ }
58
+
59
+ .highlight .hll {
60
+ background-color: $base06;
61
+ }
62
+ .highlight {
63
+ .c {
64
+ /* Comment */
65
+ color: $base04;
66
+ }
67
+ .err {
68
+ /* Error */
69
+ color: $base08;
70
+ }
71
+ .k {
72
+ /* Keyword */
73
+ color: $base0e;
74
+ }
75
+ .l {
76
+ /* Literal */
77
+ color: $base09;
78
+ }
79
+ .n {
80
+ /* Name */
81
+ color: $base05;
82
+ }
83
+ .o {
84
+ /* Operator */
85
+ color: $base0c;
86
+ }
87
+ .p {
88
+ /* Punctuation */
89
+ color: $base05;
90
+ }
91
+ .cm {
92
+ /* Comment.Multiline */
93
+ color: $base04;
94
+ }
95
+ .cp {
96
+ /* Comment.Preproc */
97
+ color: $base04;
98
+ }
99
+ .c1 {
100
+ /* Comment.Single */
101
+ color: $base04;
102
+ }
103
+ .cs {
104
+ /* Comment.Special */
105
+ color: $base04;
106
+ }
107
+ .gd {
108
+ /* Generic.Deleted */
109
+ color: $base08;
110
+ }
111
+ .ge {
112
+ /* Generic.Emph */
113
+ font-style: italic;
114
+ }
115
+ .gh {
116
+ /* Generic.Heading */
117
+ color: $base05;
118
+ font-weight: bold;
119
+ }
120
+ .gi {
121
+ /* Generic.Inserted */
122
+ color: $base0b;
123
+ }
124
+ .gp {
125
+ /* Generic.Prompt */
126
+ color: $base04;
127
+ font-weight: bold;
128
+ }
129
+ .gs {
130
+ /* Generic.Strong */
131
+ font-weight: bold;
132
+ }
133
+ .gu {
134
+ /* Generic.Subheading */
135
+ color: $base0c;
136
+ font-weight: bold;
137
+ }
138
+ .kc {
139
+ /* Keyword.Constant */
140
+ color: $base0e;
141
+ }
142
+ .kd {
143
+ /* Keyword.Declaration */
144
+ color: $base0e;
145
+ }
146
+ .kn {
147
+ /* Keyword.Namespace */
148
+ color: $base0c;
149
+ }
150
+ .kp {
151
+ /* Keyword.Pseudo */
152
+ color: $base0e;
153
+ }
154
+ .kr {
155
+ /* Keyword.Reserved */
156
+ color: $base0e;
157
+ }
158
+ .kt {
159
+ /* Keyword.Type */
160
+ color: $base0a;
161
+ }
162
+ .ld {
163
+ /* Literal.Date */
164
+ color: $base0b;
165
+ }
166
+ .m {
167
+ /* Literal.Number */
168
+ color: $base09;
169
+ }
170
+ .s {
171
+ /* Literal.String */
172
+ color: $base0b;
173
+ }
174
+ .na {
175
+ /* Name.Attribute */
176
+ color: $base0d;
177
+ }
178
+ .nb {
179
+ /* Name.Builtin */
180
+ color: $base05;
181
+ }
182
+ .nc {
183
+ /* Name.Class */
184
+ color: $base0a;
185
+ }
186
+ .no {
187
+ /* Name.Constant */
188
+ color: $base08;
189
+ }
190
+ .nd {
191
+ /* Name.Decorator */
192
+ color: $base0c;
193
+ }
194
+ .ni {
195
+ /* Name.Entity */
196
+ color: $base05;
197
+ }
198
+ .ne {
199
+ /* Name.Exception */
200
+ color: $base08;
201
+ }
202
+ .nf {
203
+ /* Name.Function */
204
+ color: $base0d;
205
+ }
206
+ .nl {
207
+ /* Name.Label */
208
+ color: $base05;
209
+ }
210
+ .nn {
211
+ /* Name.Namespace */
212
+ color: $base0a;
213
+ }
214
+ .nx {
215
+ /* Name.Other */
216
+ color: $base0d;
217
+ }
218
+ .py {
219
+ /* Name.Property */
220
+ color: $base05;
221
+ }
222
+ .nt {
223
+ /* Name.Tag */
224
+ color: $base0c;
225
+ }
226
+ .nv {
227
+ /* Name.Variable */
228
+ color: $base08;
229
+ }
230
+ .ow {
231
+ /* Operator.Word */
232
+ color: $base0c;
233
+ }
234
+ .w {
235
+ /* Text.Whitespace */
236
+ color: $base05;
237
+ }
238
+ .mf {
239
+ /* Literal.Number.Float */
240
+ color: $base09;
241
+ }
242
+ .mh {
243
+ /* Literal.Number.Hex */
244
+ color: $base09;
245
+ }
246
+ .mi {
247
+ /* Literal.Number.Integer */
248
+ color: $base09;
249
+ }
250
+ .mo {
251
+ /* Literal.Number.Oct */
252
+ color: $base09;
253
+ }
254
+ .sb {
255
+ /* Literal.String.Backtick */
256
+ color: $base0b;
257
+ }
258
+ .sc {
259
+ /* Literal.String.Char */
260
+ color: $base05;
261
+ }
262
+ .sd {
263
+ /* Literal.String.Doc */
264
+ color: $base04;
265
+ }
266
+ .s2 {
267
+ /* Literal.String.Double */
268
+ color: $base0b;
269
+ }
270
+ .se {
271
+ /* Literal.String.Escape */
272
+ color: $base09;
273
+ }
274
+ .sh {
275
+ /* Literal.String.Heredoc */
276
+ color: $base0b;
277
+ }
278
+ .si {
279
+ /* Literal.String.Interpol */
280
+ color: $base09;
281
+ }
282
+ .sx {
283
+ /* Literal.String.Other */
284
+ color: $base0b;
285
+ }
286
+ .sr {
287
+ /* Literal.String.Regex */
288
+ color: $base0b;
289
+ }
290
+ .s1 {
291
+ /* Literal.String.Single */
292
+ color: $base0b;
293
+ }
294
+ .ss {
295
+ /* Literal.String.Symbol */
296
+ color: $base0b;
297
+ }
298
+ .bp {
299
+ /* Name.Builtin.Pseudo */
300
+ color: $base05;
301
+ }
302
+ .vc {
303
+ /* Name.Variable.Class */
304
+ color: $base08;
305
+ }
306
+ .vg {
307
+ /* Name.Variable.Global */
308
+ color: $base08;
309
+ }
310
+ .vi {
311
+ /* Name.Variable.Instance */
312
+ color: $base08;
313
+ }
314
+ .il {
315
+ /* Literal.Number.Integer.Long */
316
+ color: $base09;
317
+ }
318
+ }
319
+
320
+ .gist {
321
+ th, td {
322
+ border-bottom: 0;
323
+ }
324
+ }
@@ -0,0 +1,39 @@
1
+ /* ==========================================================================
2
+ TABLES
3
+ ========================================================================== */
4
+
5
+ table {
6
+ display: block;
7
+ margin-bottom: 1em;
8
+ width: 100%;
9
+ font-family: $global-font-family;
10
+ font-size: $type-size-6;
11
+ border-collapse: collapse;
12
+ overflow-x: auto;
13
+
14
+ & + table {
15
+ margin-top: 1em;
16
+ }
17
+ }
18
+
19
+ thead {
20
+ background-color: $border-color;
21
+ border-bottom: 2px solid mix(#000, $border-color, 25%);
22
+ }
23
+
24
+ th {
25
+ padding: 0.5em;
26
+ font-weight: bold;
27
+ text-align: left;
28
+ }
29
+
30
+ td {
31
+ padding: 0.5em;
32
+ border-bottom: 1px solid mix(#000, $border-color, 25%);
33
+ }
34
+
35
+ tr,
36
+ td,
37
+ th {
38
+ vertical-align: middle;
39
+ }