oneflow-jekyll 1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (122) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.MD +7 -0
  3. data/README.md +29 -0
  4. data/_data/navigation.yml +18 -0
  5. data/_includes/editables/editables.html +15 -0
  6. data/_includes/figure +9 -0
  7. data/_includes/footer/custom.html +3 -0
  8. data/_includes/footer.html +27 -0
  9. data/_includes/gallery +35 -0
  10. data/_includes/head/custom.html +12 -0
  11. data/_includes/head.html +23 -0
  12. data/_includes/image-text-row +61 -0
  13. data/_includes/masthead.html +35 -0
  14. data/_includes/page__hero.html +46 -0
  15. data/_includes/popup.html +43 -0
  16. data/_includes/round-images +30 -0
  17. data/_includes/scripts.html +13 -0
  18. data/_includes/seo.html +158 -0
  19. data/_includes/video +24 -0
  20. data/_layouts/default.html +78 -0
  21. data/_layouts/page.html +13 -0
  22. data/_sass/oneflow/_animations.scss +21 -0
  23. data/_sass/oneflow/_base.scss +356 -0
  24. data/_sass/oneflow/_boxes.scss +46 -0
  25. data/_sass/oneflow/_buttons.scss +95 -0
  26. data/_sass/oneflow/_fonts.scss +18 -0
  27. data/_sass/oneflow/_footer.scss +121 -0
  28. data/_sass/oneflow/_masthead.scss +97 -0
  29. data/_sass/oneflow/_mixins.scss +92 -0
  30. data/_sass/oneflow/_navigation.scss +412 -0
  31. data/_sass/oneflow/_notices.scss +109 -0
  32. data/_sass/oneflow/_page.scss +287 -0
  33. data/_sass/oneflow/_print.scss +252 -0
  34. data/_sass/oneflow/_reset.scss +187 -0
  35. data/_sass/oneflow/_sections.scss +29 -0
  36. data/_sass/oneflow/_utilities.scss +307 -0
  37. data/_sass/oneflow/_variables.scss +140 -0
  38. data/_sass/oneflow/skins/_air.scss +23 -0
  39. data/_sass/oneflow/skins/_aqua.scss +34 -0
  40. data/_sass/oneflow/skins/_contrast.scss +52 -0
  41. data/_sass/oneflow/skins/_dark.scss +30 -0
  42. data/_sass/oneflow/skins/_default.scss +5 -0
  43. data/_sass/oneflow/skins/_dirt.scss +33 -0
  44. data/_sass/oneflow/skins/_mint.scss +24 -0
  45. data/_sass/oneflow/skins/_neon.scss +63 -0
  46. data/_sass/oneflow/skins/_plum.scss +70 -0
  47. data/_sass/oneflow/skins/_sunrise.scss +49 -0
  48. data/_sass/oneflow/vendor/breakpoint/_breakpoint.scss +114 -0
  49. data/_sass/oneflow/vendor/breakpoint/_context.scss +95 -0
  50. data/_sass/oneflow/vendor/breakpoint/_helpers.scss +151 -0
  51. data/_sass/oneflow/vendor/breakpoint/_legacy-settings.scss +50 -0
  52. data/_sass/oneflow/vendor/breakpoint/_no-query.scss +15 -0
  53. data/_sass/oneflow/vendor/breakpoint/_parsers.scss +215 -0
  54. data/_sass/oneflow/vendor/breakpoint/_respond-to.scss +82 -0
  55. data/_sass/oneflow/vendor/breakpoint/_settings.scss +71 -0
  56. data/_sass/oneflow/vendor/breakpoint/parsers/_double.scss +33 -0
  57. data/_sass/oneflow/vendor/breakpoint/parsers/_query.scss +82 -0
  58. data/_sass/oneflow/vendor/breakpoint/parsers/_resolution.scss +31 -0
  59. data/_sass/oneflow/vendor/breakpoint/parsers/_single.scss +26 -0
  60. data/_sass/oneflow/vendor/breakpoint/parsers/_triple.scss +36 -0
  61. data/_sass/oneflow/vendor/breakpoint/parsers/double/_default-pair.scss +21 -0
  62. data/_sass/oneflow/vendor/breakpoint/parsers/double/_default.scss +22 -0
  63. data/_sass/oneflow/vendor/breakpoint/parsers/double/_double-string.scss +22 -0
  64. data/_sass/oneflow/vendor/breakpoint/parsers/resolution/_resolution.scss +60 -0
  65. data/_sass/oneflow/vendor/breakpoint/parsers/single/_default.scss +13 -0
  66. data/_sass/oneflow/vendor/breakpoint/parsers/triple/_default.scss +18 -0
  67. data/_sass/oneflow/vendor/magnific-popup/_magnific-popup.scss +649 -0
  68. data/_sass/oneflow/vendor/magnific-popup/_settings.scss +46 -0
  69. data/_sass/oneflow/vendor/susy/_su.scss +4 -0
  70. data/_sass/oneflow/vendor/susy/_susy-prefix.scss +13 -0
  71. data/_sass/oneflow/vendor/susy/_susy.scss +5 -0
  72. data/_sass/oneflow/vendor/susy/plugins/_svg-grid.scss +5 -0
  73. data/_sass/oneflow/vendor/susy/plugins/svg-grid/_prefix.scss +7 -0
  74. data/_sass/oneflow/vendor/susy/plugins/svg-grid/_svg-api.scss +114 -0
  75. data/_sass/oneflow/vendor/susy/plugins/svg-grid/_svg-grid-math.scss +67 -0
  76. data/_sass/oneflow/vendor/susy/plugins/svg-grid/_svg-settings.scss +14 -0
  77. data/_sass/oneflow/vendor/susy/plugins/svg-grid/_svg-unprefix.scss +18 -0
  78. data/_sass/oneflow/vendor/susy/plugins/svg-grid/_svg-utilities.scss +133 -0
  79. data/_sass/oneflow/vendor/susy/susy/_api.scss +318 -0
  80. data/_sass/oneflow/vendor/susy/susy/_normalize.scss +261 -0
  81. data/_sass/oneflow/vendor/susy/susy/_parse.scss +163 -0
  82. data/_sass/oneflow/vendor/susy/susy/_settings.scss +329 -0
  83. data/_sass/oneflow/vendor/susy/susy/_su-math.scss +441 -0
  84. data/_sass/oneflow/vendor/susy/susy/_su-validate.scss +213 -0
  85. data/_sass/oneflow/vendor/susy/susy/_syntax-helpers.scss +191 -0
  86. data/_sass/oneflow/vendor/susy/susy/_unprefix.scss +56 -0
  87. data/_sass/oneflow/vendor/susy/susy/_utilities.scss +167 -0
  88. data/_sass/oneflow.scss +33 -0
  89. data/assets/css/all.min.css +9 -0
  90. data/assets/css/custom-styles.css +1 -0
  91. data/assets/css/main.scss +13 -0
  92. data/assets/fonts/great-vibes-v18-latin-regular.woff2 +0 -0
  93. data/assets/images/header.webp +0 -0
  94. data/assets/images/logo.webp +0 -0
  95. data/assets/images/sydney-2.webp +0 -0
  96. data/assets/images/sydney-3.webp +0 -0
  97. data/assets/images/sydney-4.webp +0 -0
  98. data/assets/images/sydney-5.webp +0 -0
  99. data/assets/images/sydney-6.webp +0 -0
  100. data/assets/js/_main.js +136 -0
  101. data/assets/js/lunr/lunr-en.js +73 -0
  102. data/assets/js/lunr/lunr-gr.js +526 -0
  103. data/assets/js/lunr/lunr-store.js +84 -0
  104. data/assets/js/lunr/lunr.js +3475 -0
  105. data/assets/js/lunr/lunr.min.js +6 -0
  106. data/assets/js/main.min.js +6 -0
  107. data/assets/js/plugins/gumshoe.js +484 -0
  108. data/assets/js/plugins/jquery.ba-throttle-debounce.js +252 -0
  109. data/assets/js/plugins/jquery.fitvids.js +82 -0
  110. data/assets/js/plugins/jquery.greedy-navigation.js +127 -0
  111. data/assets/js/plugins/jquery.magnific-popup.js +1860 -0
  112. data/assets/js/plugins/smooth-scroll.js +650 -0
  113. data/assets/js/vendor/jquery/jquery-3.6.0.js +10881 -0
  114. data/assets/webfonts/fa-brands-400.ttf +0 -0
  115. data/assets/webfonts/fa-brands-400.woff2 +0 -0
  116. data/assets/webfonts/fa-regular-400.ttf +0 -0
  117. data/assets/webfonts/fa-regular-400.woff2 +0 -0
  118. data/assets/webfonts/fa-solid-900.ttf +0 -0
  119. data/assets/webfonts/fa-solid-900.woff2 +0 -0
  120. data/assets/webfonts/fa-v4compatibility.ttf +0 -0
  121. data/assets/webfonts/fa-v4compatibility.woff2 +0 -0
  122. metadata +253 -0
@@ -0,0 +1,109 @@
1
+ /* ==========================================================================
2
+ NOTICE TEXT BLOCKS
3
+ ========================================================================== */
4
+
5
+ /**
6
+ * Default Kramdown usage (no indents!):
7
+ * <div class="notice" markdown="1">
8
+ * #### Headline for the Notice
9
+ * Text for the notice
10
+ * </div>
11
+ */
12
+
13
+ @mixin notice($notice-color) {
14
+ margin: 2em 0 !important; /* override*/
15
+ padding: 1em;
16
+ color: $text-color;
17
+ font-family: $global-font-family;
18
+ font-size: $type-size-6 !important;
19
+ text-indent: initial; /* override*/
20
+ background-color: mix($background-color, $notice-color, $notice-background-mix);
21
+ border-radius: $border-radius;
22
+ box-shadow: 0 1px 1px rgba($notice-color, 0.25);
23
+
24
+ h4 {
25
+ margin-top: 0 !important; /* override*/
26
+ margin-bottom: 0.75em;
27
+ line-height: inherit;
28
+ }
29
+
30
+ @at-root .page__content #{&} h4 {
31
+ /* using at-root to override .page-content h4 font size*/
32
+ margin-bottom: 0;
33
+ font-size: 1em;
34
+ }
35
+
36
+ p {
37
+ &:last-child {
38
+ margin-bottom: 0 !important; /* override*/
39
+ }
40
+ }
41
+
42
+ h4 + p {
43
+ /* remove space above paragraphs that appear directly after notice headline*/
44
+ margin-top: 0;
45
+ padding-top: 0;
46
+ }
47
+
48
+ a {
49
+ color: mix(#000, $notice-color, 10%);
50
+
51
+ &:hover {
52
+ color: mix(#000, $notice-color, 50%);
53
+ }
54
+ }
55
+
56
+ @at-root #{selector-unify(&, "blockquote")} {
57
+ border-left-color: mix(#000, $notice-color, 10%);
58
+ }
59
+
60
+ code {
61
+ background-color: mix($background-color, $notice-color, $code-notice-background-mix)
62
+ }
63
+
64
+ pre code {
65
+ background-color: inherit;
66
+ }
67
+
68
+ ul {
69
+ &:last-child {
70
+ margin-bottom: 0; /* override*/
71
+ }
72
+ }
73
+ }
74
+
75
+ /* Default notice */
76
+
77
+ .notice {
78
+ @include notice($light-gray);
79
+ }
80
+
81
+ /* Primary notice */
82
+
83
+ .notice--primary {
84
+ @include notice($primary-color);
85
+ }
86
+
87
+ /* Info notice */
88
+
89
+ .notice--info {
90
+ @include notice($info-color);
91
+ }
92
+
93
+ /* Warning notice */
94
+
95
+ .notice--warning {
96
+ @include notice($warning-color);
97
+ }
98
+
99
+ /* Success notice */
100
+
101
+ .notice--success {
102
+ @include notice($success-color);
103
+ }
104
+
105
+ /* Danger notice */
106
+
107
+ .notice--danger {
108
+ @include notice($danger-color);
109
+ }
@@ -0,0 +1,287 @@
1
+ /* ==========================================================================
2
+ PAGE
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
+ .page__inner-wrap {
40
+ float: left;
41
+ margin-top: 1em;
42
+ margin-left: 0;
43
+ margin-right: 0;
44
+ width: 100%;
45
+ clear: both;
46
+
47
+ .page__content,
48
+ .page__meta,
49
+ .page__share {
50
+ position: relative;
51
+ float: left;
52
+ margin-left: 0;
53
+ margin-right: 0;
54
+ width: 100%;
55
+ clear: both;
56
+ }
57
+ }
58
+ }
59
+
60
+ .page__title {
61
+ margin-top: 0;
62
+ line-height: 1;
63
+
64
+ a {
65
+ color: $text-color;
66
+ text-decoration: none;
67
+ }
68
+
69
+ & + .page__meta {
70
+ margin-top: -0.5em;
71
+ }
72
+ }
73
+
74
+ .page__lead {
75
+ font-family: $global-font-family;
76
+ font-size: $type-size-4;
77
+ text-align: center;
78
+ }
79
+
80
+ .page__content {
81
+
82
+ text-align: center;
83
+
84
+ h2 {
85
+ padding-bottom: 0.5em;
86
+ border-bottom: 1px solid $border-color;
87
+ }
88
+
89
+ h1, h2, h3, h4, h5, h6 {
90
+ .header-link {
91
+ position: relative;
92
+ left: 0.5em;
93
+ opacity: 0;
94
+ font-size: 0.8em;
95
+ -webkit-transition: opacity 0.2s ease-in-out 0.1s;
96
+ -moz-transition: opacity 0.2s ease-in-out 0.1s;
97
+ -o-transition: opacity 0.2s ease-in-out 0.1s;
98
+ transition: opacity 0.2s ease-in-out 0.1s;
99
+ }
100
+
101
+ &:hover .header-link {
102
+ opacity: 1;
103
+ }
104
+ }
105
+
106
+ p,
107
+ li,
108
+ dl {
109
+ font-size: 1em;
110
+ }
111
+
112
+ /* paragraph indents */
113
+ p {
114
+ margin: 0 0 $indent-var;
115
+
116
+ /* sibling indentation*/
117
+ @if $paragraph-indent == true {
118
+ & + p {
119
+ text-indent: $indent-var;
120
+ margin-top: -($indent-var);
121
+ }
122
+ }
123
+ }
124
+
125
+ a:not(.btn) {
126
+ &:hover {
127
+ text-decoration: underline;
128
+
129
+ img {
130
+ box-shadow: 0 0 10px rgba(#000, 0.25);
131
+ }
132
+ }
133
+ }
134
+
135
+ :not(pre) > code {
136
+ padding-top: 0.1rem;
137
+ padding-bottom: 0.1rem;
138
+ font-size: 0.8em;
139
+ background: $code-background-color;
140
+ border-radius: $border-radius;
141
+
142
+ &::before,
143
+ &::after {
144
+ letter-spacing: -0.2em;
145
+ content: "\00a0"; /* non-breaking space*/
146
+ }
147
+ }
148
+
149
+ dt {
150
+ margin-top: 1em;
151
+ font-family: $sans-serif;
152
+ font-weight: bold;
153
+ }
154
+
155
+ dd {
156
+ margin-left: 1em;
157
+ font-family: $sans-serif;
158
+ font-size: $type-size-6;
159
+ }
160
+
161
+ .small {
162
+ font-size: $type-size-6;
163
+ }
164
+
165
+ /* blockquote citations */
166
+ blockquote + .small {
167
+ margin-top: -1.5em;
168
+ padding-left: 1.25rem;
169
+ }
170
+ }
171
+
172
+ .page__hero {
173
+
174
+ position: relative;
175
+ margin-bottom: 2em;
176
+ @include clearfix;
177
+ -webkit-animation: $intro-transition;
178
+ animation: $intro-transition;
179
+ -webkit-animation-delay: 0.25s;
180
+ animation-delay: 0.25s;
181
+
182
+ &--overlay {
183
+ position: relative;
184
+ margin-bottom: 2em;
185
+ padding: 3em 0;
186
+ @include clearfix;
187
+ background-size: cover;
188
+ background-repeat: no-repeat;
189
+ background-position: center;
190
+ -webkit-animation: $intro-transition;
191
+ animation: $intro-transition;
192
+ -webkit-animation-delay: 0.25s;
193
+ animation-delay: 0.25s;
194
+
195
+ a {
196
+ color: #fff;
197
+ }
198
+
199
+ .wrapper {
200
+ padding-left: 1em;
201
+ padding-right: 1em;
202
+
203
+ @include breakpoint($x-large) {
204
+ max-width: $x-large;
205
+ }
206
+ }
207
+
208
+ .page__title,
209
+ .page__meta,
210
+ .page__lead,
211
+ .btn {
212
+ color: #fff;
213
+ text-shadow: 1px 1px 4px rgba(#000, 0.5);
214
+ text-align: center;
215
+ }
216
+
217
+ .page__title {
218
+ font-size: $type-size-2;
219
+
220
+ @include breakpoint($small) {
221
+ font-size: $type-size-1;
222
+ }
223
+ }
224
+ }
225
+ }
226
+
227
+ .page__hero-image {
228
+ width: 100%;
229
+ height: auto;
230
+ -ms-interpolation-mode: bicubic;
231
+ }
232
+
233
+ .page__hero-caption {
234
+ position: absolute;
235
+ bottom: 0;
236
+ right: 0;
237
+ margin: 0 auto;
238
+ padding: 2px 5px;
239
+ color: #fff;
240
+ font-family: $caption-font-family;
241
+ font-size: $type-size-7;
242
+ background: #000;
243
+ text-align: right;
244
+ z-index: 5;
245
+ opacity: 0.5;
246
+ border-radius: $border-radius 0 0 0;
247
+
248
+ @include breakpoint($large) {
249
+ padding: 5px 10px;
250
+ }
251
+
252
+ a {
253
+ color: #fff;
254
+ text-decoration: none;
255
+ }
256
+ }
257
+
258
+
259
+ /*
260
+ background-image
261
+ ========================================================================== */
262
+
263
+ .bg {
264
+ background-image: url("/assets/images/header.webp");
265
+ background-repeat: no-repeat;
266
+ background-size: cover;
267
+ background-attachment: fixed;
268
+ z-index: 0;
269
+
270
+ /* Overlay */
271
+ &::after {
272
+ content: "";
273
+ position: absolute;
274
+ top: 0;
275
+ left: 0;
276
+ width: 100%;
277
+ height: 100%;
278
+ z-index: -1;
279
+ }
280
+
281
+ @media (max-width: 768px) {
282
+ background-image: url("/assets/images/header.webp");
283
+ background-size: contain;
284
+ background-repeat: repeat-y;
285
+ background-attachment: scroll;
286
+ }
287
+ }
@@ -0,0 +1,252 @@
1
+ /* ==========================================================================
2
+ PRINT STYLES
3
+ ========================================================================== */
4
+
5
+ @media print {
6
+
7
+ [hidden] {
8
+ display: none;
9
+ }
10
+
11
+ * {
12
+ -moz-box-sizing: border-box;
13
+ -webkit-box-sizing: border-box;
14
+ box-sizing: border-box;
15
+ }
16
+
17
+ html {
18
+ margin: 0;
19
+ padding: 0;
20
+ min-height: auto !important;
21
+ font-size: 16px;
22
+ }
23
+
24
+ body {
25
+ margin: 0 auto;
26
+ background: #fff !important;
27
+ color: #000 !important;
28
+ font-size: 1rem;
29
+ line-height: 1.5;
30
+ -moz-osx-font-smoothing: grayscale;
31
+ -webkit-font-smoothing: antialiased;
32
+ text-rendering: optimizeLegibility;
33
+ }
34
+
35
+ h1,
36
+ h2,
37
+ h3,
38
+ h4,
39
+ h5,
40
+ h6 {
41
+ color: #000;
42
+ line-height: 1.2;
43
+ margin-bottom: 0.75rem;
44
+ margin-top: 0;
45
+ }
46
+
47
+ h1 {
48
+ font-size: 2.5rem;
49
+ }
50
+
51
+ h2 {
52
+ font-size: 2rem;
53
+ }
54
+
55
+ h3 {
56
+ font-size: 1.75rem;
57
+ }
58
+
59
+ h4 {
60
+ font-size: 1.5rem;
61
+ }
62
+
63
+ h5 {
64
+ font-size: 1.25rem;
65
+ }
66
+
67
+ h6 {
68
+ font-size: 1rem;
69
+ }
70
+
71
+ a,
72
+ a:visited {
73
+ color: #000;
74
+ text-decoration: underline;
75
+ word-wrap: break-word;
76
+ }
77
+
78
+ table {
79
+ border-collapse: collapse;
80
+ }
81
+
82
+ thead {
83
+ display: table-header-group;
84
+ }
85
+
86
+ table,
87
+ th,
88
+ td {
89
+ border-bottom: 1px solid #000;
90
+ }
91
+
92
+ td,
93
+ th {
94
+ padding: 8px 16px;
95
+ }
96
+
97
+ img {
98
+ border: 0;
99
+ display: block;
100
+ max-width: 100% !important;
101
+ vertical-align: middle;
102
+ }
103
+
104
+ hr {
105
+ border: 0;
106
+ border-bottom: 2px solid #bbb;
107
+ height: 0;
108
+ margin: 2.25rem 0;
109
+ padding: 0;
110
+ }
111
+
112
+ dt {
113
+ font-weight: bold;
114
+ }
115
+
116
+ dd {
117
+ margin: 0;
118
+ margin-bottom: 0.75rem;
119
+ }
120
+
121
+ abbr[title],
122
+ acronym[title] {
123
+ border: 0;
124
+ text-decoration: none;
125
+ }
126
+
127
+ table,
128
+ blockquote,
129
+ pre,
130
+ code,
131
+ figure,
132
+ li,
133
+ hr,
134
+ ul,
135
+ ol,
136
+ a,
137
+ tr {
138
+ page-break-inside: avoid;
139
+ }
140
+
141
+ h2,
142
+ h3,
143
+ h4,
144
+ p,
145
+ a {
146
+ orphans: 3;
147
+ widows: 3;
148
+ }
149
+
150
+ h1,
151
+ h2,
152
+ h3,
153
+ h4,
154
+ h5,
155
+ h6 {
156
+ page-break-after: avoid;
157
+ page-break-inside: avoid;
158
+ }
159
+
160
+ h1 + p,
161
+ h2 + p,
162
+ h3 + p {
163
+ page-break-before: avoid;
164
+ }
165
+
166
+ img {
167
+ page-break-after: auto;
168
+ page-break-before: auto;
169
+ page-break-inside: avoid;
170
+ }
171
+
172
+ pre {
173
+ white-space: pre-wrap !important;
174
+ word-wrap: break-word;
175
+ }
176
+
177
+ a[href^='http://']:after,
178
+ a[href^='https://']:after,
179
+ a[href^='ftp://']:after {
180
+ content: " (" attr(href) ")";
181
+ font-size: 80%;
182
+ }
183
+
184
+ abbr[title]:after,
185
+ acronym[title]:after {
186
+ content: " (" attr(title) ")";
187
+ }
188
+
189
+ #main {
190
+ max-width: 100%;
191
+ }
192
+
193
+ .page {
194
+ margin: 0;
195
+ padding: 0;
196
+ width: 100%;
197
+ }
198
+
199
+ .page-break,
200
+ .page-break-before {
201
+ page-break-before: always;
202
+ }
203
+
204
+ .page-break-after {
205
+ page-break-after: always;
206
+ }
207
+
208
+ .no-print {
209
+ display: none;
210
+ }
211
+
212
+ a.no-reformat:after {
213
+ content: '';
214
+ }
215
+
216
+ abbr[title].no-reformat:after,
217
+ acronym[title].no-reformat:after {
218
+ content: '';
219
+ }
220
+
221
+ .page__hero-caption {
222
+ color: #000 !important;
223
+ background: #fff !important;
224
+ opacity: 1;
225
+
226
+ a {
227
+ color: #000 !important;
228
+ }
229
+ }
230
+
231
+ /*
232
+ Hide the following elements on print
233
+ ========================================================================== */
234
+
235
+ .masthead,
236
+ .toc,
237
+ .page__share,
238
+ .page__related,
239
+ .pagination,
240
+ .ads,
241
+ .page__footer,
242
+ .page__comments-form,
243
+ .author__avatar,
244
+ .author__content,
245
+ .author__urls-wrapper,
246
+ .nav__list,
247
+ .sidebar,
248
+ .adsbygoogle {
249
+ display: none !important;
250
+ height: 1px !important;
251
+ }
252
+ }