creek-jekyll-theme 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- 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,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
|
+
}
|
@@ -0,0 +1,187 @@
|
|
1
|
+
/* ==========================================================================
|
2
|
+
STYLE RESETS
|
3
|
+
========================================================================== */
|
4
|
+
|
5
|
+
* { box-sizing: border-box; }
|
6
|
+
|
7
|
+
html {
|
8
|
+
/* apply a natural box layout model to all elements */
|
9
|
+
box-sizing: border-box;
|
10
|
+
background-color: $background-color;
|
11
|
+
font-size: 16px;
|
12
|
+
|
13
|
+
@include breakpoint($medium) {
|
14
|
+
font-size: 18px;
|
15
|
+
}
|
16
|
+
|
17
|
+
@include breakpoint($large) {
|
18
|
+
font-size: 20px;
|
19
|
+
}
|
20
|
+
|
21
|
+
@include breakpoint($x-large) {
|
22
|
+
font-size: 22px;
|
23
|
+
}
|
24
|
+
|
25
|
+
-webkit-text-size-adjust: 100%;
|
26
|
+
-ms-text-size-adjust: 100%;
|
27
|
+
}
|
28
|
+
|
29
|
+
/* Remove margin */
|
30
|
+
|
31
|
+
body { margin: 0; }
|
32
|
+
|
33
|
+
/* Selected elements */
|
34
|
+
|
35
|
+
::-moz-selection {
|
36
|
+
color: #fff;
|
37
|
+
background: #000;
|
38
|
+
}
|
39
|
+
|
40
|
+
::selection {
|
41
|
+
color: #fff;
|
42
|
+
background: #000;
|
43
|
+
}
|
44
|
+
|
45
|
+
/* Display HTML5 elements in IE6-9 and FF3 */
|
46
|
+
|
47
|
+
article,
|
48
|
+
aside,
|
49
|
+
details,
|
50
|
+
figcaption,
|
51
|
+
figure,
|
52
|
+
footer,
|
53
|
+
header,
|
54
|
+
hgroup,
|
55
|
+
main,
|
56
|
+
nav,
|
57
|
+
section {
|
58
|
+
display: block;
|
59
|
+
}
|
60
|
+
|
61
|
+
/* Display block in IE6-9 and FF3 */
|
62
|
+
|
63
|
+
audio,
|
64
|
+
canvas,
|
65
|
+
video {
|
66
|
+
display: inline-block;
|
67
|
+
*display: inline;
|
68
|
+
*zoom: 1;
|
69
|
+
}
|
70
|
+
|
71
|
+
/* Prevents modern browsers from displaying 'audio' without controls */
|
72
|
+
|
73
|
+
audio:not([controls]) {
|
74
|
+
display: none;
|
75
|
+
}
|
76
|
+
|
77
|
+
a {
|
78
|
+
color: $link-color;
|
79
|
+
}
|
80
|
+
|
81
|
+
/* Apply focus state */
|
82
|
+
|
83
|
+
a:focus {
|
84
|
+
@extend %tab-focus;
|
85
|
+
}
|
86
|
+
|
87
|
+
/* Remove outline from links */
|
88
|
+
|
89
|
+
a:hover,
|
90
|
+
a:active {
|
91
|
+
outline: 0;
|
92
|
+
}
|
93
|
+
|
94
|
+
/* Prevent sub and sup affecting line-height in all browsers */
|
95
|
+
|
96
|
+
sub,
|
97
|
+
sup {
|
98
|
+
position: relative;
|
99
|
+
font-size: 75%;
|
100
|
+
line-height: 0;
|
101
|
+
vertical-align: baseline;
|
102
|
+
}
|
103
|
+
|
104
|
+
sup {
|
105
|
+
top: -0.5em;
|
106
|
+
}
|
107
|
+
|
108
|
+
sub {
|
109
|
+
bottom: -0.25em;
|
110
|
+
}
|
111
|
+
|
112
|
+
/* img border in anchor's and image quality */
|
113
|
+
|
114
|
+
img {
|
115
|
+
/* Responsive images (ensure images don't scale beyond their parents) */
|
116
|
+
max-width: 100%; /* part 1: Set a maximum relative to the parent*/
|
117
|
+
width: auto\9; /* IE7-8 need help adjusting responsive images*/
|
118
|
+
height: auto; /* part 2: Scale the height according to the width, otherwise you get stretching*/
|
119
|
+
|
120
|
+
vertical-align: middle;
|
121
|
+
border: 0;
|
122
|
+
-ms-interpolation-mode: bicubic;
|
123
|
+
}
|
124
|
+
|
125
|
+
/* Prevent max-width from affecting Google Maps */
|
126
|
+
|
127
|
+
#map_canvas img,
|
128
|
+
.google-maps img {
|
129
|
+
max-width: none;
|
130
|
+
}
|
131
|
+
|
132
|
+
/* Consistent form font size in all browsers, margin changes, misc */
|
133
|
+
|
134
|
+
button,
|
135
|
+
input,
|
136
|
+
select,
|
137
|
+
textarea {
|
138
|
+
margin: 0;
|
139
|
+
font-size: 100%;
|
140
|
+
vertical-align: middle;
|
141
|
+
}
|
142
|
+
|
143
|
+
button,
|
144
|
+
input {
|
145
|
+
*overflow: visible; /* inner spacing ie IE6/7*/
|
146
|
+
line-height: normal; /* FF3/4 have !important on line-height in UA stylesheet*/
|
147
|
+
}
|
148
|
+
|
149
|
+
button::-moz-focus-inner,
|
150
|
+
input::-moz-focus-inner { /* inner padding and border oddities in FF3/4*/
|
151
|
+
padding: 0;
|
152
|
+
border: 0;
|
153
|
+
}
|
154
|
+
|
155
|
+
button,
|
156
|
+
html input[type="button"], // avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls
|
157
|
+
input[type="reset"],
|
158
|
+
input[type="submit"] {
|
159
|
+
-webkit-appearance: button; /* corrects inability to style clickable `input` types in iOS*/
|
160
|
+
cursor: pointer; /* improves usability and consistency of cursor style between image-type `input` and others*/
|
161
|
+
}
|
162
|
+
|
163
|
+
label,
|
164
|
+
select,
|
165
|
+
button,
|
166
|
+
input[type="button"],
|
167
|
+
input[type="reset"],
|
168
|
+
input[type="submit"],
|
169
|
+
input[type="radio"],
|
170
|
+
input[type="checkbox"] {
|
171
|
+
cursor: pointer; /* improves usability and consistency of cursor style between image-type `input` and others*/
|
172
|
+
}
|
173
|
+
|
174
|
+
input[type="search"] { /* Appearance in Safari/Chrome*/
|
175
|
+
box-sizing: border-box;
|
176
|
+
-webkit-appearance: textfield;
|
177
|
+
}
|
178
|
+
|
179
|
+
input[type="search"]::-webkit-search-decoration,
|
180
|
+
input[type="search"]::-webkit-search-cancel-button {
|
181
|
+
-webkit-appearance: none; /* inner-padding issues in Chrome OSX, Safari 5*/
|
182
|
+
}
|
183
|
+
|
184
|
+
textarea {
|
185
|
+
overflow: auto; /* remove vertical scrollbar in IE6-9*/
|
186
|
+
vertical-align: top; /* readability and alignment cross-browser*/
|
187
|
+
}
|
@@ -0,0 +1,132 @@
|
|
1
|
+
/* ==========================================================================
|
2
|
+
SEARCH
|
3
|
+
========================================================================== */
|
4
|
+
|
5
|
+
.layout--search {
|
6
|
+
.archive__item-teaser {
|
7
|
+
margin-bottom: 0.25em;
|
8
|
+
}
|
9
|
+
}
|
10
|
+
|
11
|
+
.search__toggle {
|
12
|
+
margin-left: 1rem;
|
13
|
+
margin-right: 1rem;
|
14
|
+
height: $nav-toggle-height;
|
15
|
+
border: 0;
|
16
|
+
outline: none;
|
17
|
+
color: $primary-color;
|
18
|
+
background-color: transparent;
|
19
|
+
cursor: pointer;
|
20
|
+
-webkit-transition: 0.2s;
|
21
|
+
transition: 0.2s;
|
22
|
+
|
23
|
+
&:hover {
|
24
|
+
color: mix(#000, $primary-color, 25%);
|
25
|
+
}
|
26
|
+
}
|
27
|
+
|
28
|
+
.search-icon {
|
29
|
+
width: 100%;
|
30
|
+
height: 100%;
|
31
|
+
}
|
32
|
+
|
33
|
+
.search-content {
|
34
|
+
display: none;
|
35
|
+
visibility: hidden;
|
36
|
+
padding-top: 1em;
|
37
|
+
padding-bottom: 1em;
|
38
|
+
|
39
|
+
&__inner-wrap {
|
40
|
+
width: 100%;
|
41
|
+
margin-left: auto;
|
42
|
+
margin-right: auto;
|
43
|
+
padding-left: 1em;
|
44
|
+
padding-right: 1em;
|
45
|
+
-webkit-animation: $intro-transition;
|
46
|
+
animation: $intro-transition;
|
47
|
+
-webkit-animation-delay: 0.15s;
|
48
|
+
animation-delay: 0.15s;
|
49
|
+
|
50
|
+
@include breakpoint($x-large) {
|
51
|
+
max-width: $max-width;
|
52
|
+
}
|
53
|
+
|
54
|
+
}
|
55
|
+
|
56
|
+
&__form {
|
57
|
+
background-color: transparent;
|
58
|
+
}
|
59
|
+
|
60
|
+
.search-input {
|
61
|
+
display: block;
|
62
|
+
margin-bottom: 0;
|
63
|
+
padding: 0;
|
64
|
+
border: none;
|
65
|
+
outline: none;
|
66
|
+
box-shadow: none;
|
67
|
+
background-color: transparent;
|
68
|
+
font-size: $type-size-3;
|
69
|
+
|
70
|
+
@include breakpoint($large) {
|
71
|
+
font-size: $type-size-2;
|
72
|
+
}
|
73
|
+
|
74
|
+
@include breakpoint($x-large) {
|
75
|
+
font-size: $type-size-1;
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
&.is--visible {
|
80
|
+
display: block;
|
81
|
+
visibility: visible;
|
82
|
+
|
83
|
+
&::after {
|
84
|
+
content: "";
|
85
|
+
display: block;
|
86
|
+
}
|
87
|
+
}
|
88
|
+
|
89
|
+
.results__found {
|
90
|
+
margin-top: 0.5em;
|
91
|
+
font-size: $type-size-6;
|
92
|
+
}
|
93
|
+
|
94
|
+
.archive__item {
|
95
|
+
margin-bottom: 2em;
|
96
|
+
|
97
|
+
@include breakpoint($large) {
|
98
|
+
width: 75%;
|
99
|
+
}
|
100
|
+
|
101
|
+
@include breakpoint($x-large) {
|
102
|
+
width: 50%;
|
103
|
+
}
|
104
|
+
}
|
105
|
+
|
106
|
+
.archive__item-title {
|
107
|
+
margin-top: 0;
|
108
|
+
}
|
109
|
+
|
110
|
+
.archive__item-excerpt {
|
111
|
+
margin-bottom: 0;
|
112
|
+
}
|
113
|
+
}
|
114
|
+
|
115
|
+
/* Algolia search */
|
116
|
+
|
117
|
+
.ais-search-box {
|
118
|
+
max-width: 100% !important;
|
119
|
+
margin-bottom: 2em;
|
120
|
+
}
|
121
|
+
|
122
|
+
.archive__item-title .ais-Highlight {
|
123
|
+
color: $primary-color;
|
124
|
+
font-style: normal;
|
125
|
+
text-decoration: underline;
|
126
|
+
}
|
127
|
+
|
128
|
+
.archive__item-excerpt .ais-Highlight {
|
129
|
+
color: $primary-color;
|
130
|
+
font-style: normal;
|
131
|
+
font-weight: bold;
|
132
|
+
}
|