benimal-mistakes-jekyll 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (159) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +1095 -0
  3. data/LICENSE.txt +63 -0
  4. data/README.md +245 -0
  5. data/_data/navigation.yml +12 -0
  6. data/_data/ui-text.yml +1079 -0
  7. data/_includes/analytics-providers/custom.html +3 -0
  8. data/_includes/analytics-providers/google-gtag.html +9 -0
  9. data/_includes/analytics-providers/google-universal.html +10 -0
  10. data/_includes/analytics-providers/google.html +14 -0
  11. data/_includes/analytics.html +14 -0
  12. data/_includes/archive-single.html +38 -0
  13. data/_includes/author-profile-custom-links.html +7 -0
  14. data/_includes/author-profile.html +263 -0
  15. data/_includes/base_path +5 -0
  16. data/_includes/breadcrumbs.html +39 -0
  17. data/_includes/browser-upgrade.html +3 -0
  18. data/_includes/category-list.html +26 -0
  19. data/_includes/comment.html +22 -0
  20. data/_includes/comments-providers/custom.html +3 -0
  21. data/_includes/comments-providers/discourse.html +13 -0
  22. data/_includes/comments-providers/disqus.html +15 -0
  23. data/_includes/comments-providers/facebook.html +8 -0
  24. data/_includes/comments-providers/google-plus.html +2 -0
  25. data/_includes/comments-providers/scripts.html +18 -0
  26. data/_includes/comments-providers/staticman.html +42 -0
  27. data/_includes/comments-providers/staticman_v2.html +42 -0
  28. data/_includes/comments.html +171 -0
  29. data/_includes/documents-collection.html +19 -0
  30. data/_includes/feature_row +53 -0
  31. data/_includes/figure +12 -0
  32. data/_includes/footer.html +25 -0
  33. data/_includes/footer/custom.html +3 -0
  34. data/_includes/gallery +47 -0
  35. data/_includes/group-by-array +47 -0
  36. data/_includes/head.html +43 -0
  37. data/_includes/head/custom.html +5 -0
  38. data/_includes/masthead.html +33 -0
  39. data/_includes/nav_list +47 -0
  40. data/_includes/page__hero.html +61 -0
  41. data/_includes/page__hero_video.html +4 -0
  42. data/_includes/page__taxonomy.html +7 -0
  43. data/_includes/paginator.html +69 -0
  44. data/_includes/post_pagination.html +14 -0
  45. data/_includes/posts-category.html +3 -0
  46. data/_includes/posts-tag.html +3 -0
  47. data/_includes/read-time.html +15 -0
  48. data/_includes/schedule.html +57 -0
  49. data/_includes/scripts.html +28 -0
  50. data/_includes/search/algolia-search-scripts.html +54 -0
  51. data/_includes/search/google-search-scripts.html +30 -0
  52. data/_includes/search/lunr-search-scripts.html +10 -0
  53. data/_includes/search/search_form.html +18 -0
  54. data/_includes/seo.html +164 -0
  55. data/_includes/sidebar.html +23 -0
  56. data/_includes/social-share.html +13 -0
  57. data/_includes/tag-list.html +26 -0
  58. data/_includes/toc +7 -0
  59. data/_includes/toc.html +75 -0
  60. data/_includes/two-day-schedule.html +71 -0
  61. data/_includes/video +11 -0
  62. data/_layouts/archive-taxonomy.html +15 -0
  63. data/_layouts/archive.html +26 -0
  64. data/_layouts/categories.html +42 -0
  65. data/_layouts/category.html +9 -0
  66. data/_layouts/collection.html +9 -0
  67. data/_layouts/compress.html +10 -0
  68. data/_layouts/default.html +42 -0
  69. data/_layouts/home.html +11 -0
  70. data/_layouts/posts.html +29 -0
  71. data/_layouts/search.html +42 -0
  72. data/_layouts/single.html +92 -0
  73. data/_layouts/splash.html +22 -0
  74. data/_layouts/tag.html +9 -0
  75. data/_layouts/tags.html +42 -0
  76. data/_sass/minimal-mistakes.scss +40 -0
  77. data/_sass/minimal-mistakes/_animations.scss +21 -0
  78. data/_sass/minimal-mistakes/_archive.scss +362 -0
  79. data/_sass/minimal-mistakes/_base.scss +358 -0
  80. data/_sass/minimal-mistakes/_buttons.scss +98 -0
  81. data/_sass/minimal-mistakes/_footer.scss +91 -0
  82. data/_sass/minimal-mistakes/_forms.scss +393 -0
  83. data/_sass/minimal-mistakes/_masthead.scss +83 -0
  84. data/_sass/minimal-mistakes/_mixins.scss +92 -0
  85. data/_sass/minimal-mistakes/_navigation.scss +544 -0
  86. data/_sass/minimal-mistakes/_notices.scss +100 -0
  87. data/_sass/minimal-mistakes/_page.scss +520 -0
  88. data/_sass/minimal-mistakes/_print.scss +252 -0
  89. data/_sass/minimal-mistakes/_reset.scss +187 -0
  90. data/_sass/minimal-mistakes/_search.scss +125 -0
  91. data/_sass/minimal-mistakes/_sidebar.scss +310 -0
  92. data/_sass/minimal-mistakes/_syntax.scss +324 -0
  93. data/_sass/minimal-mistakes/_tables.scss +37 -0
  94. data/_sass/minimal-mistakes/_utilities.scss +524 -0
  95. data/_sass/minimal-mistakes/_variables.scss +154 -0
  96. data/_sass/minimal-mistakes/skins/_air.scss +23 -0
  97. data/_sass/minimal-mistakes/skins/_aqua.scss +30 -0
  98. data/_sass/minimal-mistakes/skins/_contrast.scss +51 -0
  99. data/_sass/minimal-mistakes/skins/_dark.scss +42 -0
  100. data/_sass/minimal-mistakes/skins/_default.scss +5 -0
  101. data/_sass/minimal-mistakes/skins/_dirt.scss +33 -0
  102. data/_sass/minimal-mistakes/skins/_mint.scss +23 -0
  103. data/_sass/minimal-mistakes/skins/_neon.scss +53 -0
  104. data/_sass/minimal-mistakes/skins/_plum.scss +60 -0
  105. data/_sass/minimal-mistakes/skins/_sunrise.scss +44 -0
  106. data/_sass/minimal-mistakes/vendor/breakpoint/_breakpoint.scss +114 -0
  107. data/_sass/minimal-mistakes/vendor/breakpoint/_context.scss +95 -0
  108. data/_sass/minimal-mistakes/vendor/breakpoint/_helpers.scss +151 -0
  109. data/_sass/minimal-mistakes/vendor/breakpoint/_legacy-settings.scss +50 -0
  110. data/_sass/minimal-mistakes/vendor/breakpoint/_no-query.scss +15 -0
  111. data/_sass/minimal-mistakes/vendor/breakpoint/_parsers.scss +215 -0
  112. data/_sass/minimal-mistakes/vendor/breakpoint/_respond-to.scss +82 -0
  113. data/_sass/minimal-mistakes/vendor/breakpoint/_settings.scss +71 -0
  114. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss +33 -0
  115. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_query.scss +82 -0
  116. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_resolution.scss +31 -0
  117. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_single.scss +26 -0
  118. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_triple.scss +36 -0
  119. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_default-pair.scss +21 -0
  120. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_default.scss +22 -0
  121. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_double-string.scss +22 -0
  122. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/resolution/_resolution.scss +60 -0
  123. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/single/_default.scss +13 -0
  124. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/triple/_default.scss +18 -0
  125. data/_sass/minimal-mistakes/vendor/magnific-popup/_magnific-popup.scss +649 -0
  126. data/_sass/minimal-mistakes/vendor/magnific-popup/_settings.scss +46 -0
  127. data/_sass/minimal-mistakes/vendor/susy/_su.scss +4 -0
  128. data/_sass/minimal-mistakes/vendor/susy/_susy-prefix.scss +13 -0
  129. data/_sass/minimal-mistakes/vendor/susy/_susy.scss +5 -0
  130. data/_sass/minimal-mistakes/vendor/susy/plugins/_svg-grid.scss +5 -0
  131. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_prefix.scss +7 -0
  132. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-api.scss +114 -0
  133. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-grid-math.scss +67 -0
  134. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-settings.scss +14 -0
  135. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-unprefix.scss +18 -0
  136. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-utilities.scss +133 -0
  137. data/_sass/minimal-mistakes/vendor/susy/susy/_api.scss +318 -0
  138. data/_sass/minimal-mistakes/vendor/susy/susy/_normalize.scss +261 -0
  139. data/_sass/minimal-mistakes/vendor/susy/susy/_parse.scss +163 -0
  140. data/_sass/minimal-mistakes/vendor/susy/susy/_settings.scss +329 -0
  141. data/_sass/minimal-mistakes/vendor/susy/susy/_su-math.scss +441 -0
  142. data/_sass/minimal-mistakes/vendor/susy/susy/_su-validate.scss +213 -0
  143. data/_sass/minimal-mistakes/vendor/susy/susy/_syntax-helpers.scss +191 -0
  144. data/_sass/minimal-mistakes/vendor/susy/susy/_unprefix.scss +56 -0
  145. data/_sass/minimal-mistakes/vendor/susy/susy/_utilities.scss +167 -0
  146. data/assets/css/main.scss +8 -0
  147. data/assets/js/_main.js +106 -0
  148. data/assets/js/lunr/lunr-en.js +75 -0
  149. data/assets/js/lunr/lunr-gr.js +528 -0
  150. data/assets/js/lunr/lunr-store.js +52 -0
  151. data/assets/js/lunr/lunr.js +2977 -0
  152. data/assets/js/lunr/lunr.min.js +6 -0
  153. data/assets/js/main.min.js +9 -0
  154. data/assets/js/plugins/jquery.fitvids.js +82 -0
  155. data/assets/js/plugins/jquery.greedy-navigation.js +83 -0
  156. data/assets/js/plugins/jquery.magnific-popup.js +1860 -0
  157. data/assets/js/plugins/jquery.smooth-scroll.min.js +9 -0
  158. data/assets/js/vendor/jquery/jquery-3.3.1.min.js +2 -0
  159. metadata +327 -0
@@ -0,0 +1,37 @@
1
+ /* ==========================================================================
2
+ TABLES
3
+ ========================================================================== */
4
+
5
+ table {
6
+ margin-bottom: 1em;
7
+ width: 100%;
8
+ font-family: $global-font-family;
9
+ font-size: $type-size-6;
10
+ border-collapse: collapse;
11
+
12
+ & + table {
13
+ margin-top: 1em;
14
+ }
15
+ }
16
+
17
+ thead {
18
+ background-color: $border-color;
19
+ border-bottom: 2px solid mix(#000, $border-color, 25%);
20
+ }
21
+
22
+ th {
23
+ padding: 0.5em;
24
+ font-weight: bold;
25
+ text-align: left;
26
+ }
27
+
28
+ td {
29
+ padding: 0.5em;
30
+ border-bottom: 1px solid mix(#000, $border-color, 25%);
31
+ }
32
+
33
+ tr,
34
+ td,
35
+ th {
36
+ vertical-align: middle;
37
+ }
@@ -0,0 +1,524 @@
1
+ /* ==========================================================================
2
+ UTILITY CLASSES
3
+ ========================================================================== */
4
+
5
+ /*
6
+ Visibility
7
+ ========================================================================== */
8
+
9
+ /* http://www.456bereastreet.com/archive/200711/screen_readers_sometimes_ignore_displaynone/ */
10
+
11
+ .hidden,
12
+ .is--hidden {
13
+ display: none;
14
+ visibility: hidden;
15
+ }
16
+
17
+ /* for preloading images */
18
+
19
+ .load {
20
+ display: none;
21
+ }
22
+
23
+ .transparent {
24
+ opacity: 0;
25
+ }
26
+
27
+ /* https://developer.yahoo.com/blogs/ydn/clip-hidden-content-better-accessibility-53456.html */
28
+
29
+ .visually-hidden,
30
+ .screen-reader-text,
31
+ .screen-reader-text span,
32
+ .screen-reader-shortcut {
33
+ position: absolute !important;
34
+ clip: rect(1px, 1px, 1px, 1px);
35
+ height: 1px !important;
36
+ width: 1px !important;
37
+ border: 0 !important;
38
+ overflow: hidden;
39
+ }
40
+
41
+ body:hover .visually-hidden a,
42
+ body:hover .visually-hidden input,
43
+ body:hover .visually-hidden button {
44
+ display: none !important;
45
+ }
46
+
47
+ /* screen readers */
48
+
49
+ .screen-reader-text:focus,
50
+ .screen-reader-shortcut:focus {
51
+ clip: auto !important;
52
+ height: auto !important;
53
+ width: auto !important;
54
+ display: block;
55
+ font-size: 1em;
56
+ font-weight: bold;
57
+ padding: 15px 23px 14px;
58
+ background: #fff;
59
+ z-index: 100000;
60
+ text-decoration: none;
61
+ box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
62
+ }
63
+
64
+ /*
65
+ Skip links
66
+ ========================================================================== */
67
+
68
+ .skip-link {
69
+ position: fixed;
70
+ z-index: 20;
71
+ margin: 0;
72
+ font-family: $sans-serif;
73
+ white-space: nowrap;
74
+ }
75
+
76
+ .skip-link li {
77
+ height: 0;
78
+ width: 0;
79
+ list-style: none;
80
+ }
81
+
82
+ /*
83
+ Type
84
+ ========================================================================== */
85
+
86
+ .text-left {
87
+ text-align: left;
88
+ }
89
+
90
+ .text-center {
91
+ text-align: center;
92
+ }
93
+
94
+ .text-right {
95
+ text-align: right;
96
+ }
97
+
98
+ .text-justify {
99
+ text-align: justify;
100
+ }
101
+
102
+ .text-nowrap {
103
+ white-space: nowrap;
104
+ }
105
+
106
+ /*
107
+ Alignment
108
+ ========================================================================== */
109
+
110
+ /* clearfix */
111
+
112
+ .cf {
113
+ clear: both;
114
+ }
115
+
116
+ .wrapper {
117
+ margin-left: auto;
118
+ margin-right: auto;
119
+ width: 100%;
120
+ }
121
+
122
+ /*
123
+ Images
124
+ ========================================================================== */
125
+
126
+ /* image align left */
127
+
128
+ .align-left {
129
+ display: block;
130
+ margin-left: auto;
131
+ margin-right: auto;
132
+
133
+ @include breakpoint($small) {
134
+ float: left;
135
+ margin-right: 1em;
136
+ }
137
+ }
138
+
139
+ /* image align right */
140
+
141
+ .align-right {
142
+ display: block;
143
+ margin-left: auto;
144
+ margin-right: auto;
145
+
146
+ @include breakpoint($small) {
147
+ float: right;
148
+ margin-left: 1em;
149
+ }
150
+ }
151
+
152
+ /* image align center */
153
+
154
+ .align-center {
155
+ display: block;
156
+ margin-left: auto;
157
+ margin-right: auto;
158
+ }
159
+
160
+ /* file page content container */
161
+
162
+ .full {
163
+ @include breakpoint($large) {
164
+ margin-right: -1 * span(2.5 of 12) !important;
165
+ }
166
+ }
167
+
168
+ /*
169
+ Icons
170
+ ========================================================================== */
171
+
172
+ .icon {
173
+ display: inline-block;
174
+ fill: currentColor;
175
+ width: 1em;
176
+ height: 1.1em;
177
+ line-height: 1;
178
+ position: relative;
179
+ top: -0.1em;
180
+ vertical-align: middle;
181
+ }
182
+
183
+ /* social icons*/
184
+
185
+ .social-icons {
186
+ .fas,
187
+ .fab,
188
+ .far,
189
+ .fal {
190
+ color: $text-color;
191
+ }
192
+
193
+ .fa-behance,
194
+ .fa-behance-square {
195
+ color: $behance-color;
196
+ }
197
+
198
+ .fa-bitbucket {
199
+ color: $bitbucket-color;
200
+ }
201
+
202
+ .fa-dribbble,
203
+ .fa-dribble-square {
204
+ color: $dribbble-color;
205
+ }
206
+
207
+ .fa-facebook,
208
+ .fa-facebook-square,
209
+ .fa-facebook-f {
210
+ color: $facebook-color;
211
+ }
212
+
213
+ .fa-flickr {
214
+ color: $flickr-color;
215
+ }
216
+
217
+ .fa-foursquare {
218
+ color: $foursquare-color;
219
+ }
220
+
221
+ .fa-github,
222
+ .fa-github-alt,
223
+ .fa-github-square {
224
+ color: $github-color;
225
+ }
226
+
227
+ .fa-gitlab {
228
+ color: $gitlab-color;
229
+ }
230
+
231
+ .fa-google-plus,
232
+ .fa-google-plus-square,
233
+ .fa-google-plus-g {
234
+ color: $google-plus-color;
235
+ }
236
+
237
+ .fa-instagram {
238
+ color: $instagram-color;
239
+ }
240
+
241
+ .fa-lastfm,
242
+ .fa-lastfm-square {
243
+ color: $lastfm-color;
244
+ }
245
+
246
+ .fa-linkedin,
247
+ .fa-linkedin-in {
248
+ color: $linkedin-color;
249
+ }
250
+
251
+ .fa-pinterest,
252
+ .fa-pinterest-p,
253
+ .fa-pinterest-square {
254
+ color: $pinterest-color;
255
+ }
256
+
257
+ .fa-rss,
258
+ .fa-rss-square {
259
+ color: $rss-color;
260
+ }
261
+
262
+ .fa-soundcloud {
263
+ color: $soundcloud-color;
264
+ }
265
+
266
+ .fa-stack-exchange,
267
+ .fa-stack-overflow {
268
+ color: $stackoverflow-color;
269
+ }
270
+
271
+ .fa-tumblr,
272
+ .fa-tumblr-square {
273
+ color: $tumblr-color;
274
+ }
275
+
276
+ .fa-twitter,
277
+ .fa-twitter-square {
278
+ color: $twitter-color;
279
+ }
280
+
281
+ .fa-vimeo,
282
+ .fa-vimeo-square,
283
+ .fa-vimeo-v {
284
+ color: $vimeo-color;
285
+ }
286
+
287
+ .fa-vine {
288
+ color: $vine-color;
289
+ }
290
+
291
+ .fa-youtube {
292
+ color: $youtube-color;
293
+ }
294
+
295
+ .fa-xing,
296
+ .fa-xing-square {
297
+ color: $xing-color;
298
+ }
299
+ }
300
+
301
+ /*
302
+ Navicons
303
+ ========================================================================== */
304
+
305
+ .navicon {
306
+ position: relative;
307
+ width: $navicon-width;
308
+ height: $navicon-height;
309
+ background: #fff;
310
+ margin: auto;
311
+ -webkit-transition: 0.3s;
312
+ transition: 0.3s;
313
+
314
+ &:before,
315
+ &:after {
316
+ content: "";
317
+ position: absolute;
318
+ left: 0;
319
+ width: $navicon-width;
320
+ height: $navicon-height;
321
+ background: #fff;
322
+ -webkit-transition: 0.3s;
323
+ transition: 0.3s;
324
+ }
325
+
326
+ &:before {
327
+ top: (-2 * $navicon-height);
328
+ }
329
+
330
+ &:after {
331
+ bottom: (-2 * $navicon-height);
332
+ }
333
+ }
334
+
335
+ .close .navicon {
336
+ /* hide the middle line*/
337
+ background: transparent;
338
+
339
+ /* overlay the lines by setting both their top values to 0*/
340
+ &:before,
341
+ &:after {
342
+ -webkit-transform-origin: 50% 50%;
343
+ -ms-transform-origin: 50% 50%;
344
+ transform-origin: 50% 50%;
345
+ top: 0;
346
+ width: $navicon-width;
347
+ }
348
+
349
+ /* rotate the lines to form the x shape*/
350
+ &:before {
351
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
352
+ transform: rotate3d(0, 0, 1, 45deg);
353
+ }
354
+ &:after {
355
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
356
+ transform: rotate3d(0, 0, 1, -45deg);
357
+ }
358
+ }
359
+
360
+ /*
361
+ Sticky, fixed to top content
362
+ ========================================================================== */
363
+
364
+ .sticky {
365
+ @include breakpoint($large) {
366
+ @include clearfix();
367
+ position: -webkit-sticky;
368
+ position: sticky;
369
+ top: 2em;
370
+
371
+ > * {
372
+ display: block;
373
+ }
374
+ }
375
+ }
376
+
377
+ /*
378
+ Wells
379
+ ========================================================================== */
380
+
381
+ .well {
382
+ min-height: 20px;
383
+ padding: 19px;
384
+ margin-bottom: 20px;
385
+ background-color: #f5f5f5;
386
+ border: 1px solid #e3e3e3;
387
+ border-radius: $border-radius;
388
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
389
+ }
390
+
391
+ /*
392
+ Modals
393
+ ========================================================================== */
394
+
395
+ .show-modal {
396
+ overflow: hidden;
397
+ position: relative;
398
+
399
+ &:before {
400
+ position: absolute;
401
+ content: "";
402
+ top: 0;
403
+ left: 0;
404
+ width: 100%;
405
+ height: 100%;
406
+ z-index: 999;
407
+ background-color: rgba(255, 255, 255, 0.85);
408
+ }
409
+
410
+ .modal {
411
+ display: block;
412
+ }
413
+ }
414
+
415
+ .modal {
416
+ display: none;
417
+ position: fixed;
418
+ width: 300px;
419
+ top: 50%;
420
+ left: 50%;
421
+ margin-left: -150px;
422
+ margin-top: -150px;
423
+ min-height: 0;
424
+ z-index: 9999;
425
+ background: #fff;
426
+ border: 1px solid $border-color;
427
+ border-radius: $border-radius;
428
+ box-shadow: $box-shadow;
429
+
430
+ &__title {
431
+ margin: 0;
432
+ padding: 0.5em 1em;
433
+ }
434
+
435
+ &__supporting-text {
436
+ padding: 0 1em 0.5em 1em;
437
+ }
438
+
439
+ &__actions {
440
+ padding: 0.5em 1em;
441
+ border-top: 1px solid $border-color;
442
+ }
443
+ }
444
+
445
+ /*
446
+ Footnotes
447
+ ========================================================================== */
448
+
449
+ .footnote {
450
+ color: mix(#fff, $gray, 25%);
451
+ text-decoration: none;
452
+ }
453
+
454
+ .footnotes {
455
+ color: mix(#fff, $gray, 25%);
456
+
457
+ ol,
458
+ li,
459
+ p {
460
+ margin-bottom: 0;
461
+ font-size: $type-size-6;
462
+ }
463
+ }
464
+
465
+ a.reversefootnote {
466
+ color: $gray;
467
+ text-decoration: none;
468
+
469
+ &:hover {
470
+ text-decoration: underline;
471
+ }
472
+ }
473
+
474
+ /*
475
+ Required
476
+ ========================================================================== */
477
+
478
+ .required {
479
+ color: $danger-color;
480
+ font-weight: bold;
481
+ }
482
+
483
+ /*
484
+ Google Custom Search Engine
485
+ ========================================================================== */
486
+
487
+ .gsc-control-cse {
488
+ table,
489
+ tr,
490
+ td {
491
+ border: 0; /* remove table borders widget */
492
+ }
493
+ }
494
+
495
+ /*
496
+ Responsive Video Embed
497
+ ========================================================================== */
498
+
499
+ .responsive-video-container {
500
+ position: relative;
501
+ margin-bottom: 1em;
502
+ padding-bottom: 56.25%;
503
+ height: 0;
504
+ overflow: hidden;
505
+ max-width: 100%;
506
+
507
+ iframe,
508
+ object,
509
+ embed {
510
+ position: absolute;
511
+ top: 0;
512
+ left: 0;
513
+ width: 100%;
514
+ height: 100%;
515
+ }
516
+ }
517
+
518
+ // full screen video fixes
519
+ :-webkit-full-screen-ancestor {
520
+ .masthead,
521
+ .page__footer {
522
+ position: static;
523
+ }
524
+ }