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,578 @@
1
+ /* ==========================================================================
2
+ SINGLE PAGE/POST
3
+ ========================================================================== */
4
+
5
+ #main {
6
+ @include clearfix;
7
+ margin-left: auto;
8
+ margin-right: auto;
9
+ padding-left: 1em;
10
+ padding-right: 1em;
11
+ -webkit-animation: $intro-transition;
12
+ animation: $intro-transition;
13
+ max-width: 100%;
14
+ -webkit-animation-delay: 0.15s;
15
+ animation-delay: 0.15s;
16
+
17
+ @include breakpoint($x-large) {
18
+ max-width: $max-width;
19
+ }
20
+ }
21
+
22
+ body {
23
+ display: -webkit-box;
24
+ display: -ms-flexbox;
25
+ display: flex;
26
+ min-height: 100vh;
27
+ -webkit-box-orient: vertical;
28
+ -webkit-box-direction: normal;
29
+ -ms-flex-direction: column;
30
+ flex-direction: column;
31
+ }
32
+
33
+ .initial-content,
34
+ .search-content {
35
+ flex: 1 0 auto;
36
+ }
37
+
38
+ .page {
39
+ @include breakpoint($large) {
40
+ float: right;
41
+ width: calc(100% - #{$right-sidebar-width-narrow});
42
+ padding-right: $right-sidebar-width-narrow;
43
+ }
44
+
45
+ @include breakpoint($x-large) {
46
+ width: calc(100% - #{$right-sidebar-width});
47
+ padding-right: $right-sidebar-width;
48
+ }
49
+
50
+ .page__inner-wrap {
51
+ float: left;
52
+ margin-top: 1em;
53
+ margin-left: 0;
54
+ margin-right: 0;
55
+ width: 100%;
56
+ clear: both;
57
+
58
+ .page__content,
59
+ .page__meta,
60
+ .page__share {
61
+ position: relative;
62
+ float: left;
63
+ margin-left: 0;
64
+ margin-right: 0;
65
+ width: 100%;
66
+ clear: both;
67
+ }
68
+ }
69
+ }
70
+
71
+ .page__title {
72
+ margin-top: 0;
73
+ line-height: 1;
74
+
75
+ a {
76
+ color: $text-color;
77
+ text-decoration: none;
78
+ }
79
+
80
+ & + .page__meta {
81
+ margin-top: -0.5em;
82
+ }
83
+ }
84
+
85
+ .page__lead {
86
+ font-family: $global-font-family;
87
+ font-size: $type-size-4;
88
+ }
89
+
90
+ .page__content {
91
+ h2 {
92
+ padding-bottom: 0.5em;
93
+ border-bottom: 1px solid $border-color;
94
+ }
95
+
96
+ h1, h2, h3, h4, h5, h6 {
97
+ .header-link {
98
+ position: relative;
99
+ left: 0.5em;
100
+ opacity: 0;
101
+ font-size: 0.8em;
102
+ -webkit-transition: opacity 0.2s ease-in-out 0.1s;
103
+ -moz-transition: opacity 0.2s ease-in-out 0.1s;
104
+ -o-transition: opacity 0.2s ease-in-out 0.1s;
105
+ transition: opacity 0.2s ease-in-out 0.1s;
106
+ }
107
+
108
+ &:hover .header-link {
109
+ opacity: 1;
110
+ }
111
+ }
112
+
113
+ p,
114
+ li,
115
+ dl {
116
+ font-size: 1em;
117
+ }
118
+
119
+ /* paragraph indents */
120
+ p {
121
+ margin: 0 0 $indent-var;
122
+
123
+ /* sibling indentation*/
124
+ @if $paragraph-indent == true {
125
+ & + p {
126
+ text-indent: $indent-var;
127
+ margin-top: -($indent-var);
128
+ }
129
+ }
130
+ }
131
+
132
+ a:not(.btn) {
133
+ &:hover {
134
+ text-decoration: underline;
135
+
136
+ img {
137
+ box-shadow: 0 0 10px rgba(#000, 0.25);
138
+ }
139
+ }
140
+ }
141
+
142
+ :not(pre) > code {
143
+ padding-top: 0.1rem;
144
+ padding-bottom: 0.1rem;
145
+ font-size: 0.8em;
146
+ background: $code-background-color;
147
+ border-radius: $border-radius;
148
+
149
+ &::before,
150
+ &::after {
151
+ letter-spacing: -0.2em;
152
+ content: "\00a0"; /* non-breaking space*/
153
+ }
154
+ }
155
+
156
+ dt {
157
+ margin-top: 1em;
158
+ font-family: $sans-serif;
159
+ font-weight: bold;
160
+ }
161
+
162
+ dd {
163
+ margin-left: 1em;
164
+ font-family: $sans-serif;
165
+ font-size: $type-size-6;
166
+ }
167
+
168
+ .small {
169
+ font-size: $type-size-6;
170
+ }
171
+
172
+ /* blockquote citations */
173
+ blockquote + .small {
174
+ margin-top: -1.5em;
175
+ padding-left: 1.25rem;
176
+ }
177
+ }
178
+
179
+ .page__hero {
180
+ position: relative;
181
+ margin-bottom: 2em;
182
+ @include clearfix;
183
+ -webkit-animation: $intro-transition;
184
+ animation: $intro-transition;
185
+ -webkit-animation-delay: 0.25s;
186
+ animation-delay: 0.25s;
187
+
188
+ &--overlay {
189
+ position: relative;
190
+ margin-bottom: 2em;
191
+ padding: 3em 0;
192
+ @include clearfix;
193
+ background-size: cover;
194
+ background-repeat: no-repeat;
195
+ background-position: center;
196
+ -webkit-animation: $intro-transition;
197
+ animation: $intro-transition;
198
+ -webkit-animation-delay: 0.25s;
199
+ animation-delay: 0.25s;
200
+
201
+ a {
202
+ color: #fff;
203
+ }
204
+
205
+ .wrapper {
206
+ padding-left: 1em;
207
+ padding-right: 1em;
208
+
209
+ @include breakpoint($x-large) {
210
+ max-width: $x-large;
211
+ }
212
+ }
213
+
214
+ .page__title,
215
+ .page__meta,
216
+ .page__lead,
217
+ .btn {
218
+ color: #fff;
219
+ text-shadow: 1px 1px 4px rgba(#000, 0.5);
220
+ }
221
+
222
+ .page__lead {
223
+ max-width: $medium;
224
+ }
225
+
226
+ .page__title {
227
+ font-size: $type-size-2;
228
+
229
+ @include breakpoint($small) {
230
+ font-size: $type-size-1;
231
+ }
232
+ }
233
+ }
234
+ }
235
+
236
+ .page__hero-image {
237
+ width: 100%;
238
+ height: auto;
239
+ -ms-interpolation-mode: bicubic;
240
+ }
241
+
242
+ .page__hero-caption {
243
+ position: absolute;
244
+ bottom: 0;
245
+ right: 0;
246
+ margin: 0 auto;
247
+ padding: 2px 5px;
248
+ color: #fff;
249
+ font-family: $caption-font-family;
250
+ font-size: $type-size-7;
251
+ background: #000;
252
+ text-align: right;
253
+ z-index: 5;
254
+ opacity: 0.5;
255
+ border-radius: $border-radius 0 0 0;
256
+
257
+ @include breakpoint($large) {
258
+ padding: 5px 10px;
259
+ }
260
+
261
+ a {
262
+ color: #fff;
263
+ text-decoration: none;
264
+ }
265
+ }
266
+
267
+ /*
268
+ Social sharing
269
+ ========================================================================== */
270
+
271
+ .page__share {
272
+ margin-top: 2em;
273
+ padding-top: 1em;
274
+ border-top: 1px solid $border-color;
275
+
276
+ @include breakpoint(max-width $small) {
277
+ .btn span {
278
+ border: 0;
279
+ clip: rect(0 0 0 0);
280
+ height: 1px;
281
+ margin: -1px;
282
+ overflow: hidden;
283
+ padding: 0;
284
+ position: absolute;
285
+ width: 1px;
286
+ }
287
+ }
288
+ }
289
+
290
+ .page__share-title {
291
+ margin-bottom: 10px;
292
+ font-size: $type-size-6;
293
+ text-transform: uppercase;
294
+ }
295
+
296
+ /*
297
+ Page meta
298
+ ========================================================================== */
299
+
300
+ .page__meta {
301
+ margin-top: 2em;
302
+ color: $muted-text-color;
303
+ font-family: $sans-serif;
304
+ font-size: $type-size-6;
305
+
306
+ p {
307
+ margin: 0;
308
+ }
309
+
310
+ a {
311
+ color: inherit;
312
+ }
313
+ }
314
+
315
+ .page__meta-title {
316
+ margin-bottom: 10px;
317
+ font-size: $type-size-6;
318
+ text-transform: uppercase;
319
+ }
320
+
321
+ .page__meta-sep::before {
322
+ content: "\2022";
323
+ padding-left: 0.5em;
324
+ padding-right: 0.5em;
325
+ }
326
+
327
+ /*
328
+ Page taxonomy
329
+ ========================================================================== */
330
+
331
+ .page__taxonomy {
332
+ .sep {
333
+ display: none;
334
+ }
335
+
336
+ strong {
337
+ margin-right: 10px;
338
+ }
339
+ }
340
+
341
+ .page__taxonomy-item {
342
+ display: inline-block;
343
+ margin-right: 5px;
344
+ margin-bottom: 8px;
345
+ padding: 5px 10px;
346
+ text-decoration: none;
347
+ border: 1px solid mix(#000, $border-color, 25%);
348
+ border-radius: $border-radius;
349
+
350
+ &:hover {
351
+ text-decoration: none;
352
+ color: $link-color-hover;
353
+ }
354
+ }
355
+
356
+ .taxonomy__section {
357
+ margin-bottom: 2em;
358
+ padding-bottom: 1em;
359
+
360
+ &:not(:last-child) {
361
+ border-bottom: solid 1px $border-color;
362
+ }
363
+
364
+ .archive__item-title {
365
+ margin-top: 0;
366
+ }
367
+
368
+ .archive__subtitle {
369
+ clear: both;
370
+ border: 0;
371
+ }
372
+
373
+ + .taxonomy__section {
374
+ margin-top: 2em;
375
+ }
376
+ }
377
+
378
+ .taxonomy__title {
379
+ margin-bottom: 0.5em;
380
+ color: $muted-text-color;
381
+ }
382
+
383
+ .taxonomy__count {
384
+ color: $muted-text-color;
385
+ }
386
+
387
+ .taxonomy__index {
388
+ display: grid;
389
+ grid-column-gap: 2em;
390
+ grid-template-columns: repeat(2, 1fr);
391
+ margin: 1.414em 0;
392
+ padding: 0;
393
+ font-size: 0.75em;
394
+ list-style: none;
395
+
396
+ @include breakpoint($large) {
397
+ grid-template-columns: repeat(3, 1fr);
398
+ }
399
+
400
+ a {
401
+ display: -webkit-box;
402
+ display: -ms-flexbox;
403
+ display: flex;
404
+ padding: 0.25em 0;
405
+ -webkit-box-pack: justify;
406
+ -ms-flex-pack: justify;
407
+ justify-content: space-between;
408
+ color: inherit;
409
+ text-decoration: none;
410
+ border-bottom: 1px solid $border-color;
411
+ }
412
+ }
413
+
414
+ .back-to-top {
415
+ display: block;
416
+ clear: both;
417
+ color: $muted-text-color;
418
+ font-size: 0.6em;
419
+ text-transform: uppercase;
420
+ text-align: right;
421
+ text-decoration: none;
422
+ }
423
+
424
+ /*
425
+ Comments
426
+ ========================================================================== */
427
+
428
+ .page__comments {
429
+ float: left;
430
+ margin-left: 0;
431
+ margin-right: 0;
432
+ width: 100%;
433
+ clear: both;
434
+ }
435
+
436
+ .page__comments-title {
437
+ margin-top: 2rem;
438
+ margin-bottom: 10px;
439
+ padding-top: 2rem;
440
+ font-size: $type-size-6;
441
+ border-top: 1px solid $border-color;
442
+ text-transform: uppercase;
443
+ }
444
+
445
+ .page__comments-form {
446
+ -webkit-transition: $global-transition;
447
+ transition: $global-transition;
448
+
449
+ &.disabled {
450
+ input,
451
+ button,
452
+ textarea,
453
+ label {
454
+ pointer-events: none;
455
+ cursor: not-allowed;
456
+ filter: alpha(opacity=65);
457
+ box-shadow: none;
458
+ opacity: 0.65;
459
+ }
460
+ }
461
+ }
462
+
463
+ .comment {
464
+ @include clearfix();
465
+ margin: 1em 0;
466
+
467
+ &:not(:last-child) {
468
+ border-bottom: 1px solid $border-color;
469
+ }
470
+ }
471
+
472
+ .comment__avatar-wrapper {
473
+ float: left;
474
+ width: 60px;
475
+ height: 60px;
476
+
477
+ @include breakpoint($large) {
478
+ width: 100px;
479
+ height: 100px;
480
+ }
481
+ }
482
+
483
+ .comment__avatar {
484
+ width: 40px;
485
+ height: 40px;
486
+ border-radius: 50%;
487
+
488
+ @include breakpoint($large) {
489
+ width: 80px;
490
+ height: 80px;
491
+ padding: 5px;
492
+ border: 1px solid $border-color;
493
+ }
494
+ }
495
+
496
+ .comment__content-wrapper {
497
+ float: right;
498
+ width: calc(100% - 60px);
499
+
500
+ @include breakpoint($large) {
501
+ width: calc(100% - 100px);
502
+ }
503
+ }
504
+
505
+ .comment__author {
506
+ margin: 0;
507
+
508
+ a {
509
+ text-decoration: none;
510
+ }
511
+ }
512
+
513
+ .comment__date {
514
+ @extend .page__meta;
515
+ margin: 0;
516
+
517
+ a {
518
+ text-decoration: none;
519
+ }
520
+ }
521
+
522
+ /*
523
+ Related
524
+ ========================================================================== */
525
+
526
+ .page__related {
527
+ @include clearfix();
528
+ float: left;
529
+ margin-top: 2em;
530
+ padding-top: 1em;
531
+ border-top: 1px solid $border-color;
532
+
533
+ @include breakpoint($large) {
534
+ float: right;
535
+ width: calc(100% - #{$right-sidebar-width-narrow});
536
+ }
537
+
538
+ @include breakpoint($x-large) {
539
+ width: calc(100% - #{$right-sidebar-width});
540
+ }
541
+
542
+ a {
543
+ color: inherit;
544
+ text-decoration: none;
545
+ }
546
+ }
547
+
548
+ .page__related-title {
549
+ margin-bottom: 10px;
550
+ font-size: $type-size-6;
551
+ text-transform: uppercase;
552
+ }
553
+
554
+ /*
555
+ Wide Pages
556
+ ========================================================================== */
557
+
558
+ .wide {
559
+ .page {
560
+ @include breakpoint($large) {
561
+ padding-right: 0;
562
+ }
563
+
564
+ @include breakpoint($x-large) {
565
+ padding-right: 0;
566
+ }
567
+ }
568
+
569
+ .page__related {
570
+ @include breakpoint($large) {
571
+ padding-right: 0;
572
+ }
573
+
574
+ @include breakpoint($x-large) {
575
+ padding-right: 0;
576
+ }
577
+ }
578
+ }