creek-jekyll-theme 0.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.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +81 -0
- data/_config.yml +306 -0
- data/_data/README.md +3 -0
- data/_data/navigation/docs.yml +56 -0
- data/_data/navigation/main.yml +12 -0
- data/_data/navigation.yml +68 -0
- data/_data/ui-text.yml +2024 -0
- data/_includes/analytics-providers/custom.html +3 -0
- data/_includes/analytics-providers/google-gtag.html +9 -0
- data/_includes/analytics-providers/google-universal.html +7 -0
- data/_includes/analytics-providers/google.html +14 -0
- data/_includes/analytics.html +14 -0
- data/_includes/archive-single.html +30 -0
- data/_includes/author-profile-custom-links.html +7 -0
- data/_includes/author-profile.html +246 -0
- data/_includes/breadcrumbs.html +40 -0
- data/_includes/browser-upgrade.html +2 -0
- data/_includes/category-list.html +19 -0
- data/_includes/comment.html +22 -0
- data/_includes/comments-providers/custom.html +3 -0
- data/_includes/comments-providers/custom_scripts.html +3 -0
- data/_includes/comments-providers/discourse.html +13 -0
- data/_includes/comments-providers/disqus.html +15 -0
- data/_includes/comments-providers/facebook.html +8 -0
- data/_includes/comments-providers/giscus.html +24 -0
- data/_includes/comments-providers/scripts.html +20 -0
- data/_includes/comments-providers/staticman.html +40 -0
- data/_includes/comments-providers/staticman_v2.html +40 -0
- data/_includes/comments-providers/utterances.html +21 -0
- data/_includes/comments.html +180 -0
- data/_includes/documents-collection.html +15 -0
- data/_includes/feature_row +41 -0
- data/_includes/figure +9 -0
- data/_includes/footer/custom.html +3 -0
- data/_includes/footer.html +21 -0
- data/_includes/gallery +35 -0
- data/_includes/group-by-array +47 -0
- data/_includes/head/custom.html +15 -0
- data/_includes/head.html +25 -0
- data/_includes/masthead.html +35 -0
- data/_includes/nav_list +26 -0
- data/_includes/page__date.html +6 -0
- data/_includes/page__hero.html +55 -0
- data/_includes/page__hero_video.html +2 -0
- data/_includes/page__meta.html +31 -0
- data/_includes/page__taxonomy.html +7 -0
- data/_includes/paginator.html +69 -0
- data/_includes/post_pagination.html +14 -0
- data/_includes/posts-category.html +5 -0
- data/_includes/posts-tag.html +5 -0
- data/_includes/scripts.html +28 -0
- data/_includes/search/algolia-search-scripts.html +62 -0
- data/_includes/search/google-search-scripts.html +30 -0
- data/_includes/search/lunr-search-scripts.html +10 -0
- data/_includes/search/search_form.html +26 -0
- data/_includes/seo.html +158 -0
- data/_includes/sidebar.html +19 -0
- data/_includes/skip-links.html +7 -0
- data/_includes/social-share.html +11 -0
- data/_includes/tag-list.html +19 -0
- data/_includes/toc +7 -0
- data/_includes/toc.html +182 -0
- data/_includes/video +24 -0
- data/_layouts/archive-taxonomy.html +29 -0
- data/_layouts/archive.html +26 -0
- data/_layouts/categories.html +43 -0
- data/_layouts/category.html +10 -0
- data/_layouts/collection.html +10 -0
- data/_layouts/compress.html +10 -0
- data/_layouts/default.html +41 -0
- data/_layouts/home.html +22 -0
- data/_layouts/posts.html +30 -0
- data/_layouts/search.html +42 -0
- data/_layouts/single.html +95 -0
- data/_layouts/splash.html +22 -0
- data/_layouts/tag.html +10 -0
- data/_layouts/tags.html +43 -0
- data/_pages/404.html +26 -0
- data/_sass/minimal-mistakes/_animations.scss +21 -0
- data/_sass/minimal-mistakes/_archive.scss +463 -0
- data/_sass/minimal-mistakes/_base.scss +339 -0
- data/_sass/minimal-mistakes/_buttons.scss +97 -0
- data/_sass/minimal-mistakes/_footer.scss +85 -0
- data/_sass/minimal-mistakes/_forms.scss +359 -0
- data/_sass/minimal-mistakes/_masthead.scss +93 -0
- data/_sass/minimal-mistakes/_mixins.scss +92 -0
- data/_sass/minimal-mistakes/_navigation.scss +573 -0
- data/_sass/minimal-mistakes/_notices.scss +109 -0
- data/_sass/minimal-mistakes/_page.scss +578 -0
- data/_sass/minimal-mistakes/_print.scss +252 -0
- data/_sass/minimal-mistakes/_reset.scss +187 -0
- data/_sass/minimal-mistakes/_search.scss +132 -0
- data/_sass/minimal-mistakes/_sidebar.scss +353 -0
- data/_sass/minimal-mistakes/_syntax.scss +324 -0
- data/_sass/minimal-mistakes/_tables.scss +39 -0
- data/_sass/minimal-mistakes/_utilities.scss +593 -0
- data/_sass/minimal-mistakes/_variables.scss +173 -0
- data/_sass/minimal-mistakes/skins/_air.scss +23 -0
- data/_sass/minimal-mistakes/skins/_aqua.scss +34 -0
- data/_sass/minimal-mistakes/skins/_contrast.scss +52 -0
- data/_sass/minimal-mistakes/skins/_dark.scss +30 -0
- data/_sass/minimal-mistakes/skins/_default.scss +5 -0
- data/_sass/minimal-mistakes/skins/_dirt.scss +33 -0
- data/_sass/minimal-mistakes/skins/_mint.scss +24 -0
- data/_sass/minimal-mistakes/skins/_neon.scss +63 -0
- data/_sass/minimal-mistakes/skins/_plum.scss +70 -0
- data/_sass/minimal-mistakes/skins/_sunrise.scss +49 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/_breakpoint.scss +114 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/_context.scss +95 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/_helpers.scss +151 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/_legacy-settings.scss +50 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/_no-query.scss +15 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/_parsers.scss +215 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/_respond-to.scss +82 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/_settings.scss +71 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss +33 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_query.scss +82 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_resolution.scss +31 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_single.scss +26 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_triple.scss +36 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_default-pair.scss +21 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_default.scss +22 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_double-string.scss +22 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/parsers/resolution/_resolution.scss +60 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/parsers/single/_default.scss +13 -0
- data/_sass/minimal-mistakes/vendor/breakpoint/parsers/triple/_default.scss +18 -0
- data/_sass/minimal-mistakes/vendor/magnific-popup/_magnific-popup.scss +649 -0
- data/_sass/minimal-mistakes/vendor/magnific-popup/_settings.scss +46 -0
- data/_sass/minimal-mistakes/vendor/susy/_su.scss +4 -0
- data/_sass/minimal-mistakes/vendor/susy/_susy-prefix.scss +13 -0
- data/_sass/minimal-mistakes/vendor/susy/_susy.scss +5 -0
- data/_sass/minimal-mistakes/vendor/susy/plugins/_svg-grid.scss +5 -0
- data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_prefix.scss +7 -0
- data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-api.scss +114 -0
- data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-grid-math.scss +67 -0
- data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-settings.scss +14 -0
- data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-unprefix.scss +18 -0
- data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-utilities.scss +133 -0
- data/_sass/minimal-mistakes/vendor/susy/susy/_api.scss +318 -0
- data/_sass/minimal-mistakes/vendor/susy/susy/_normalize.scss +261 -0
- data/_sass/minimal-mistakes/vendor/susy/susy/_parse.scss +163 -0
- data/_sass/minimal-mistakes/vendor/susy/susy/_settings.scss +329 -0
- data/_sass/minimal-mistakes/vendor/susy/susy/_su-math.scss +441 -0
- data/_sass/minimal-mistakes/vendor/susy/susy/_su-validate.scss +213 -0
- data/_sass/minimal-mistakes/vendor/susy/susy/_syntax-helpers.scss +191 -0
- data/_sass/minimal-mistakes/vendor/susy/susy/_unprefix.scss +56 -0
- data/_sass/minimal-mistakes/vendor/susy/susy/_utilities.scss +167 -0
- data/_sass/minimal-mistakes.scss +40 -0
- data/assets/css/main.scss +9 -0
- data/assets/images/android-chrome-192x192.png +0 -0
- data/assets/images/android-chrome-512x512.png +0 -0
- data/assets/images/apple-touch-icon.png +0 -0
- data/assets/images/browserconfig.xml +9 -0
- data/assets/images/creek-logo.png +0 -0
- data/assets/images/favicon-16x16.png +0 -0
- data/assets/images/favicon-32x32.png +0 -0
- data/assets/images/favicon.ico +0 -0
- data/assets/images/mstile-150x150.png +0 -0
- data/assets/images/safari-pinned-tab.svg +48 -0
- data/assets/images/site-under-construction.png +0 -0
- data/assets/images/site.webmanifest +19 -0
- data/assets/js/_main.js +136 -0
- data/assets/js/lunr/lunr-en.js +73 -0
- data/assets/js/lunr/lunr-gr.js +526 -0
- data/assets/js/lunr/lunr-store.js +84 -0
- data/assets/js/lunr/lunr.js +3475 -0
- data/assets/js/lunr/lunr.min.js +6 -0
- data/assets/js/main.min.js +6 -0
- data/assets/js/plugins/gumshoe.js +484 -0
- data/assets/js/plugins/jquery.ba-throttle-debounce.js +252 -0
- data/assets/js/plugins/jquery.fitvids.js +82 -0
- data/assets/js/plugins/jquery.greedy-navigation.js +127 -0
- data/assets/js/plugins/jquery.magnific-popup.js +1860 -0
- data/assets/js/plugins/smooth-scroll.js +650 -0
- data/assets/js/vendor/jquery/jquery-3.6.0.js +10881 -0
- metadata +233 -0
@@ -0,0 +1,593 @@
|
|
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
|
+
Task lists
|
108
|
+
========================================================================== */
|
109
|
+
|
110
|
+
.task-list {
|
111
|
+
padding:0;
|
112
|
+
|
113
|
+
li {
|
114
|
+
list-style-type: none;
|
115
|
+
}
|
116
|
+
|
117
|
+
.task-list-item-checkbox {
|
118
|
+
margin-right: 0.5em;
|
119
|
+
opacity: 1;
|
120
|
+
}
|
121
|
+
}
|
122
|
+
|
123
|
+
.task-list .task-list {
|
124
|
+
margin-left: 1em;
|
125
|
+
}
|
126
|
+
|
127
|
+
/*
|
128
|
+
Alignment
|
129
|
+
========================================================================== */
|
130
|
+
|
131
|
+
/* clearfix */
|
132
|
+
|
133
|
+
.cf {
|
134
|
+
clear: both;
|
135
|
+
}
|
136
|
+
|
137
|
+
.wrapper {
|
138
|
+
margin-left: auto;
|
139
|
+
margin-right: auto;
|
140
|
+
width: 100%;
|
141
|
+
}
|
142
|
+
|
143
|
+
/*
|
144
|
+
Images
|
145
|
+
========================================================================== */
|
146
|
+
|
147
|
+
/* image align left */
|
148
|
+
|
149
|
+
.align-left {
|
150
|
+
display: block;
|
151
|
+
margin-left: auto;
|
152
|
+
margin-right: auto;
|
153
|
+
|
154
|
+
@include breakpoint($small) {
|
155
|
+
float: left;
|
156
|
+
margin-right: 1em;
|
157
|
+
}
|
158
|
+
}
|
159
|
+
|
160
|
+
/* image align right */
|
161
|
+
|
162
|
+
.align-right {
|
163
|
+
display: block;
|
164
|
+
margin-left: auto;
|
165
|
+
margin-right: auto;
|
166
|
+
|
167
|
+
@include breakpoint($small) {
|
168
|
+
float: right;
|
169
|
+
margin-left: 1em;
|
170
|
+
}
|
171
|
+
}
|
172
|
+
|
173
|
+
/* image align center */
|
174
|
+
|
175
|
+
.align-center {
|
176
|
+
display: block;
|
177
|
+
margin-left: auto;
|
178
|
+
margin-right: auto;
|
179
|
+
}
|
180
|
+
|
181
|
+
/* file page content container */
|
182
|
+
|
183
|
+
.full {
|
184
|
+
@include breakpoint($large) {
|
185
|
+
margin-right: -1 * span(2.5 of 12) !important;
|
186
|
+
}
|
187
|
+
}
|
188
|
+
|
189
|
+
/*
|
190
|
+
Icons
|
191
|
+
========================================================================== */
|
192
|
+
|
193
|
+
.icon {
|
194
|
+
display: inline-block;
|
195
|
+
fill: currentColor;
|
196
|
+
width: 1em;
|
197
|
+
height: 1.1em;
|
198
|
+
line-height: 1;
|
199
|
+
position: relative;
|
200
|
+
top: -0.1em;
|
201
|
+
vertical-align: middle;
|
202
|
+
}
|
203
|
+
|
204
|
+
/* social icons*/
|
205
|
+
|
206
|
+
.social-icons {
|
207
|
+
.fas,
|
208
|
+
.fab,
|
209
|
+
.far,
|
210
|
+
.fal {
|
211
|
+
color: $text-color;
|
212
|
+
}
|
213
|
+
|
214
|
+
.fa-behance,
|
215
|
+
.fa-behance-square {
|
216
|
+
color: $behance-color;
|
217
|
+
}
|
218
|
+
|
219
|
+
.fa-bitbucket {
|
220
|
+
color: $bitbucket-color;
|
221
|
+
}
|
222
|
+
|
223
|
+
.fa-dribbble,
|
224
|
+
.fa-dribble-square {
|
225
|
+
color: $dribbble-color;
|
226
|
+
}
|
227
|
+
|
228
|
+
.fa-facebook,
|
229
|
+
.fa-facebook-square,
|
230
|
+
.fa-facebook-f {
|
231
|
+
color: $facebook-color;
|
232
|
+
}
|
233
|
+
|
234
|
+
.fa-flickr {
|
235
|
+
color: $flickr-color;
|
236
|
+
}
|
237
|
+
|
238
|
+
.fa-foursquare {
|
239
|
+
color: $foursquare-color;
|
240
|
+
}
|
241
|
+
|
242
|
+
.fa-github,
|
243
|
+
.fa-github-alt,
|
244
|
+
.fa-github-square {
|
245
|
+
color: $github-color;
|
246
|
+
}
|
247
|
+
|
248
|
+
.fa-gitlab {
|
249
|
+
color: $gitlab-color;
|
250
|
+
}
|
251
|
+
|
252
|
+
.fa-instagram {
|
253
|
+
color: $instagram-color;
|
254
|
+
}
|
255
|
+
|
256
|
+
.fa-keybase {
|
257
|
+
color: $keybase-color;
|
258
|
+
}
|
259
|
+
|
260
|
+
.fa-lastfm,
|
261
|
+
.fa-lastfm-square {
|
262
|
+
color: $lastfm-color;
|
263
|
+
}
|
264
|
+
|
265
|
+
.fa-linkedin,
|
266
|
+
.fa-linkedin-in {
|
267
|
+
color: $linkedin-color;
|
268
|
+
}
|
269
|
+
|
270
|
+
.fa-mastodon,
|
271
|
+
.fa-mastodon-square {
|
272
|
+
color: $mastodon-color;
|
273
|
+
}
|
274
|
+
|
275
|
+
.fa-pinterest,
|
276
|
+
.fa-pinterest-p,
|
277
|
+
.fa-pinterest-square {
|
278
|
+
color: $pinterest-color;
|
279
|
+
}
|
280
|
+
|
281
|
+
.fa-reddit {
|
282
|
+
color: $reddit-color;
|
283
|
+
}
|
284
|
+
|
285
|
+
.fa-rss,
|
286
|
+
.fa-rss-square {
|
287
|
+
color: $rss-color;
|
288
|
+
}
|
289
|
+
|
290
|
+
.fa-soundcloud {
|
291
|
+
color: $soundcloud-color;
|
292
|
+
}
|
293
|
+
|
294
|
+
.fa-stack-exchange,
|
295
|
+
.fa-stack-overflow {
|
296
|
+
color: $stackoverflow-color;
|
297
|
+
}
|
298
|
+
|
299
|
+
.fa-tumblr,
|
300
|
+
.fa-tumblr-square {
|
301
|
+
color: $tumblr-color;
|
302
|
+
}
|
303
|
+
|
304
|
+
.fa-twitter,
|
305
|
+
.fa-twitter-square {
|
306
|
+
color: $twitter-color;
|
307
|
+
}
|
308
|
+
|
309
|
+
.fa-vimeo,
|
310
|
+
.fa-vimeo-square,
|
311
|
+
.fa-vimeo-v {
|
312
|
+
color: $vimeo-color;
|
313
|
+
}
|
314
|
+
|
315
|
+
.fa-vine {
|
316
|
+
color: $vine-color;
|
317
|
+
}
|
318
|
+
|
319
|
+
.fa-youtube {
|
320
|
+
color: $youtube-color;
|
321
|
+
}
|
322
|
+
|
323
|
+
.fa-xing,
|
324
|
+
.fa-xing-square {
|
325
|
+
color: $xing-color;
|
326
|
+
}
|
327
|
+
}
|
328
|
+
|
329
|
+
/*
|
330
|
+
Navicons
|
331
|
+
========================================================================== */
|
332
|
+
|
333
|
+
.navicon {
|
334
|
+
position: relative;
|
335
|
+
width: $navicon-width;
|
336
|
+
height: $navicon-height;
|
337
|
+
background: $primary-color;
|
338
|
+
margin: auto;
|
339
|
+
-webkit-transition: 0.3s;
|
340
|
+
transition: 0.3s;
|
341
|
+
|
342
|
+
&:before,
|
343
|
+
&:after {
|
344
|
+
content: "";
|
345
|
+
position: absolute;
|
346
|
+
left: 0;
|
347
|
+
width: $navicon-width;
|
348
|
+
height: $navicon-height;
|
349
|
+
background: $primary-color;
|
350
|
+
-webkit-transition: 0.3s;
|
351
|
+
transition: 0.3s;
|
352
|
+
}
|
353
|
+
|
354
|
+
&:before {
|
355
|
+
top: (-2 * $navicon-height);
|
356
|
+
}
|
357
|
+
|
358
|
+
&:after {
|
359
|
+
bottom: (-2 * $navicon-height);
|
360
|
+
}
|
361
|
+
}
|
362
|
+
|
363
|
+
.close .navicon {
|
364
|
+
/* hide the middle line*/
|
365
|
+
background: transparent;
|
366
|
+
|
367
|
+
/* overlay the lines by setting both their top values to 0*/
|
368
|
+
&:before,
|
369
|
+
&:after {
|
370
|
+
-webkit-transform-origin: 50% 50%;
|
371
|
+
-ms-transform-origin: 50% 50%;
|
372
|
+
transform-origin: 50% 50%;
|
373
|
+
top: 0;
|
374
|
+
width: $navicon-width;
|
375
|
+
}
|
376
|
+
|
377
|
+
/* rotate the lines to form the x shape*/
|
378
|
+
&:before {
|
379
|
+
-webkit-transform: rotate3d(0, 0, 1, 45deg);
|
380
|
+
transform: rotate3d(0, 0, 1, 45deg);
|
381
|
+
}
|
382
|
+
&:after {
|
383
|
+
-webkit-transform: rotate3d(0, 0, 1, -45deg);
|
384
|
+
transform: rotate3d(0, 0, 1, -45deg);
|
385
|
+
}
|
386
|
+
}
|
387
|
+
|
388
|
+
.greedy-nav__toggle {
|
389
|
+
&:before {
|
390
|
+
@supports (pointer-events: none) {
|
391
|
+
content: '';
|
392
|
+
position: fixed;
|
393
|
+
top: 0;
|
394
|
+
left: 0;
|
395
|
+
width: 100%;
|
396
|
+
height: 100%;
|
397
|
+
opacity: 0;
|
398
|
+
background-color: $background-color;
|
399
|
+
-webkit-transition: $global-transition;
|
400
|
+
transition: $global-transition;
|
401
|
+
pointer-events: none;
|
402
|
+
}
|
403
|
+
}
|
404
|
+
|
405
|
+
&.close {
|
406
|
+
&:before {
|
407
|
+
opacity: 0.9;
|
408
|
+
-webkit-transition: $global-transition;
|
409
|
+
transition: $global-transition;
|
410
|
+
pointer-events: auto;
|
411
|
+
}
|
412
|
+
}
|
413
|
+
}
|
414
|
+
|
415
|
+
.greedy-nav__toggle:hover {
|
416
|
+
.navicon,
|
417
|
+
.navicon:before,
|
418
|
+
.navicon:after {
|
419
|
+
background: mix(#000, $primary-color, 25%);
|
420
|
+
}
|
421
|
+
|
422
|
+
&.close {
|
423
|
+
.navicon {
|
424
|
+
background: transparent;
|
425
|
+
}
|
426
|
+
}
|
427
|
+
}
|
428
|
+
|
429
|
+
/*
|
430
|
+
Sticky, fixed to top content
|
431
|
+
========================================================================== */
|
432
|
+
|
433
|
+
.sticky {
|
434
|
+
@include breakpoint($large) {
|
435
|
+
@include clearfix();
|
436
|
+
position: -webkit-sticky;
|
437
|
+
position: sticky;
|
438
|
+
top: 2em;
|
439
|
+
|
440
|
+
> * {
|
441
|
+
display: block;
|
442
|
+
}
|
443
|
+
}
|
444
|
+
}
|
445
|
+
|
446
|
+
/*
|
447
|
+
Wells
|
448
|
+
========================================================================== */
|
449
|
+
|
450
|
+
.well {
|
451
|
+
min-height: 20px;
|
452
|
+
padding: 19px;
|
453
|
+
margin-bottom: 20px;
|
454
|
+
background-color: #f5f5f5;
|
455
|
+
border: 1px solid #e3e3e3;
|
456
|
+
border-radius: $border-radius;
|
457
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
458
|
+
}
|
459
|
+
|
460
|
+
/*
|
461
|
+
Modals
|
462
|
+
========================================================================== */
|
463
|
+
|
464
|
+
.show-modal {
|
465
|
+
overflow: hidden;
|
466
|
+
position: relative;
|
467
|
+
|
468
|
+
&:before {
|
469
|
+
position: absolute;
|
470
|
+
content: "";
|
471
|
+
top: 0;
|
472
|
+
left: 0;
|
473
|
+
width: 100%;
|
474
|
+
height: 100%;
|
475
|
+
z-index: 999;
|
476
|
+
background-color: rgba(255, 255, 255, 0.85);
|
477
|
+
}
|
478
|
+
|
479
|
+
.modal {
|
480
|
+
display: block;
|
481
|
+
}
|
482
|
+
}
|
483
|
+
|
484
|
+
.modal {
|
485
|
+
display: none;
|
486
|
+
position: fixed;
|
487
|
+
width: 300px;
|
488
|
+
top: 50%;
|
489
|
+
left: 50%;
|
490
|
+
margin-left: -150px;
|
491
|
+
margin-top: -150px;
|
492
|
+
min-height: 0;
|
493
|
+
z-index: 9999;
|
494
|
+
background: #fff;
|
495
|
+
border: 1px solid $border-color;
|
496
|
+
border-radius: $border-radius;
|
497
|
+
box-shadow: $box-shadow;
|
498
|
+
|
499
|
+
&__title {
|
500
|
+
margin: 0;
|
501
|
+
padding: 0.5em 1em;
|
502
|
+
}
|
503
|
+
|
504
|
+
&__supporting-text {
|
505
|
+
padding: 0 1em 0.5em 1em;
|
506
|
+
}
|
507
|
+
|
508
|
+
&__actions {
|
509
|
+
padding: 0.5em 1em;
|
510
|
+
border-top: 1px solid $border-color;
|
511
|
+
}
|
512
|
+
}
|
513
|
+
|
514
|
+
/*
|
515
|
+
Footnotes
|
516
|
+
========================================================================== */
|
517
|
+
|
518
|
+
.footnote {
|
519
|
+
color: mix(#fff, $gray, 25%);
|
520
|
+
text-decoration: none;
|
521
|
+
}
|
522
|
+
|
523
|
+
.footnotes {
|
524
|
+
color: mix(#fff, $gray, 25%);
|
525
|
+
|
526
|
+
ol,
|
527
|
+
li,
|
528
|
+
p {
|
529
|
+
margin-bottom: 0;
|
530
|
+
font-size: $type-size-6;
|
531
|
+
}
|
532
|
+
}
|
533
|
+
|
534
|
+
a.reversefootnote {
|
535
|
+
color: $gray;
|
536
|
+
text-decoration: none;
|
537
|
+
|
538
|
+
&:hover {
|
539
|
+
text-decoration: underline;
|
540
|
+
}
|
541
|
+
}
|
542
|
+
|
543
|
+
/*
|
544
|
+
Required
|
545
|
+
========================================================================== */
|
546
|
+
|
547
|
+
.required {
|
548
|
+
color: $danger-color;
|
549
|
+
font-weight: bold;
|
550
|
+
}
|
551
|
+
|
552
|
+
/*
|
553
|
+
Google Custom Search Engine
|
554
|
+
========================================================================== */
|
555
|
+
|
556
|
+
.gsc-control-cse {
|
557
|
+
table,
|
558
|
+
tr,
|
559
|
+
td {
|
560
|
+
border: 0; /* remove table borders widget */
|
561
|
+
}
|
562
|
+
}
|
563
|
+
|
564
|
+
/*
|
565
|
+
Responsive Video Embed
|
566
|
+
========================================================================== */
|
567
|
+
|
568
|
+
.responsive-video-container {
|
569
|
+
position: relative;
|
570
|
+
margin-bottom: 1em;
|
571
|
+
padding-bottom: 56.25%;
|
572
|
+
height: 0;
|
573
|
+
overflow: hidden;
|
574
|
+
max-width: 100%;
|
575
|
+
|
576
|
+
iframe,
|
577
|
+
object,
|
578
|
+
embed {
|
579
|
+
position: absolute;
|
580
|
+
top: 0;
|
581
|
+
left: 0;
|
582
|
+
width: 100%;
|
583
|
+
height: 100%;
|
584
|
+
}
|
585
|
+
}
|
586
|
+
|
587
|
+
// full screen video fixes
|
588
|
+
:-webkit-full-screen-ancestor {
|
589
|
+
.masthead,
|
590
|
+
.page__footer {
|
591
|
+
position: static;
|
592
|
+
}
|
593
|
+
}
|