manoverboard-alpha 0.1.0 → 0.1.1

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.
data/_sass/layout.scss ADDED
@@ -0,0 +1,125 @@
1
+ /*
2
+ # MOB 2020 Grid System
3
+ # last modified October 19, 2020
4
+ */
5
+
6
+ .wo,
7
+ .wo-stacked,
8
+ .wo-full {
9
+ max-width: 100%;
10
+ overflow: hidden;
11
+ position: relative;
12
+ text-align: center;
13
+ * {
14
+ text-align: left;
15
+ }
16
+ &.between {
17
+ align-content: space-around;
18
+ }
19
+ .left {
20
+ justify-self: start;
21
+ }
22
+ .right {
23
+ justify-self: end;
24
+ }
25
+ .bottom {
26
+ align-self: end;
27
+ }
28
+ .center {
29
+ justify-self: center;
30
+ text-align: center;
31
+ * {
32
+ text-align: center;
33
+ }
34
+ }
35
+ }
36
+
37
+ .wo,
38
+ .wo-full {
39
+ display: grid;
40
+ grid-template-columns: repeat($column-count, 1fr);
41
+ gap: $column-margin + px $column-margin + px;
42
+ justify-items: stretch;
43
+ align-items: start;
44
+ }
45
+
46
+ .wo,
47
+ .wo-stacked,
48
+ .wo-single {
49
+ margin: 20px;
50
+ }
51
+
52
+ .wo-full {
53
+ padding: 20px;
54
+ }
55
+
56
+ img[class^="col-"],
57
+ img[class*="col-"] {
58
+ place-self: start;
59
+ }
60
+
61
+ @media only screen and (min-width: 1200px) {
62
+ .l-hide {
63
+ display: none !important;
64
+ }
65
+
66
+ // 1920
67
+ @for $a from 1 through ($column-count) {
68
+ @for $b from 1 through ($column-count + 1) {
69
+ .col-#{$a}-to-#{$b} {
70
+ grid-column-start: $a;
71
+ grid-column-end: $b;
72
+ }
73
+ }
74
+ }
75
+ }
76
+
77
+ @media only screen and (min-width: 600px) and (max-width: 1200px) {
78
+ // medium
79
+ .wo,
80
+ .wo-full {
81
+ display: grid;
82
+ grid-template-columns: repeat($column-count-m, 1fr);
83
+ gap: $column-margin + px $column-margin + px;
84
+ justify-items: stretch;
85
+ align-items: start;
86
+ }
87
+
88
+ .m-hide {
89
+ display: none !important;
90
+ }
91
+
92
+ @for $a-m from 1 through ($column-count-m) {
93
+ @for $b-m from 1 through ($column-count-m + 1) {
94
+ .m-col-#{$a-m}-to-#{$b-m} {
95
+ grid-column-start: $a-m;
96
+ grid-column-end: $b-m;
97
+ }
98
+ }
99
+ }
100
+ }
101
+
102
+ @media only screen and (max-width: 600px) {
103
+ // small (mobile)
104
+ .wo,
105
+ .wo-full {
106
+ display: grid;
107
+ grid-template-columns: repeat($column-count-s, 1fr);
108
+ gap: $column-margin + px $column-margin + px;
109
+ justify-items: stretch;
110
+ align-items: start;
111
+ }
112
+
113
+ .s-hide {
114
+ display: none !important;
115
+ }
116
+
117
+ @for $a-s from 1 through ($column-count-s) {
118
+ @for $b-s from 1 through ($column-count-s + 1) {
119
+ .s-col-#{$a-s}-to-#{$b-s} {
120
+ grid-column-start: $a-s;
121
+ grid-column-end: $b-s;
122
+ }
123
+ }
124
+ }
125
+ }
@@ -0,0 +1,22 @@
1
+ @media only screen and (min-width: 1200px) {
2
+
3
+ }
4
+
5
+ @media only screen and (min-width: 600px) and (max-width: 1200px) {
6
+
7
+ }
8
+
9
+ @media only screen and (max-width: 600px) {
10
+ h1, h2, h3, h4, h5, h6, li, p,
11
+ .main-header__nav a, a.link, a,
12
+ input, button, textarea {
13
+ font-weight: 500 !important;
14
+ font-size: 180%;
15
+ line-height: 1.111;
16
+ letter-spacing: 0px;
17
+ }
18
+
19
+ // comment!!!!
20
+ // better comment
21
+
22
+ }
@@ -0,0 +1,89 @@
1
+ # Welcome to Jekyll!
2
+ #
3
+ # This config file is meant for settings that affect your whole blog, values
4
+ # which you are expected to set up once and rarely edit after that. If you find
5
+ # yourself editing this file very often, consider using Jekyll's data files
6
+ # feature for the data you need to update frequently.
7
+ #
8
+ # For technical reasons, this file is *NOT* reloaded automatically when you use
9
+ # 'bundle exec jekyll serve'. If you change this file, please restart the server process.
10
+ #
11
+ # If you need help with YAML syntax, here are some quick references for you:
12
+ # https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
13
+ # https://learnxinyminutes.com/docs/yaml/
14
+ #
15
+ # Site settings
16
+ # These are used to personalize your new site. If you look in the HTML files,
17
+ # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
18
+ # You can create any custom variable you would like, and they will be accessible
19
+ # in the templates via {{ site.myvariable }}.
20
+
21
+ title: Manoverboard Boilerplate
22
+ description: >- # this means to ignore newlines until "baseurl:"
23
+ Write an awesome description for your new site here. You can edit this
24
+ line in _config.yml. It will appear in your document head meta (for
25
+ Google search results) and in your feed.xml site description.
26
+ baseurl: "" # the subpath of your site, e.g. /blog
27
+ url: "" # the base hostname & protocol for your site, e.g. http://example.com
28
+
29
+ # Build settings
30
+ markdown: kramdown
31
+ theme: manoverboard-alpha
32
+ plugins:
33
+ - jekyll-feed
34
+ sass:
35
+ sass_dir: _sass #compressed
36
+ style: expanded
37
+ collections_dir: collections
38
+
39
+ # CloudCannon Options
40
+ _options:
41
+ image: # Front matter field
42
+ uploads_dir: "uploads/:title"
43
+ content: # Content Editor and block Editable Regions
44
+ uploads_dir: "uploads/:title"
45
+
46
+ #cloudcannon:
47
+ #data: true
48
+
49
+ # CloudCannon Field Descriptions
50
+ _comments:
51
+ name: This can get converted to the file name
52
+ title: This can get converted to the file name
53
+
54
+ # Collections (Custom Post Types)
55
+ collections:
56
+ general_pages:
57
+ output: true
58
+ _hide_content: true
59
+ permalink: /:name
60
+ # sort_by:
61
+
62
+ defaults:
63
+ - scope:
64
+ path: ""
65
+ type: "posts"
66
+ values:
67
+ layout: "post"
68
+ - scope:
69
+ path: ""
70
+ type: "general_pages"
71
+ values:
72
+ layout: "default"
73
+
74
+ # Exclude from processing.
75
+ # The following items will not be processed, by default.
76
+ # Any item listed under the `exclude:` key here will be automatically added to
77
+ # the internal "default list".
78
+ #
79
+ # exclude:
80
+ # - .sass-cache/
81
+ # - .jekyll-cache/
82
+ # - gemfiles/
83
+ # - Gemfile
84
+ # - Gemfile.lock
85
+ # - node_modules/
86
+ # - vendor/bundle/
87
+ # - vendor/cache/
88
+ # - vendor/gems/
89
+ # - vendor/ruby/
@@ -0,0 +1,374 @@
1
+ ---
2
+ # MOB 2020 Main Stylesheet
3
+ # last modified August 18, 2020
4
+ ---
5
+
6
+ // this file must start with front matter, like above, so jekyll knows to parse and do shit with it! :D
7
+
8
+ // —————————————————————————————————————————
9
+ // VARIABLES: for partials
10
+ // —————————————————————————————————————————
11
+ // for layout
12
+ $column-count: 10;
13
+ $column-count-m: 7;
14
+ $column-count-s: 4;
15
+ $grid-width: 1920;
16
+ $column-margin: 20;
17
+
18
+ // —————————————————————————————————————————
19
+ // IMPORTS
20
+ // —————————————————————————————————————————
21
+ // these are partials
22
+ // init for mob theme
23
+ @import "init";
24
+ // grid and base layout classes
25
+ @import "layout";
26
+
27
+
28
+ // —————————————————————————————————————————
29
+ // VARIABLES: for base
30
+ // —————————————————————————————————————————
31
+ $headerheight: 80px;
32
+ $fullbrowserheight: calc(100vh - 80px);
33
+
34
+ // color
35
+ $black: #000;
36
+ $white: #FBF9F2;
37
+
38
+ // easings
39
+ $easing: cubic-bezier(0.83, 0, 0.17, 1);
40
+
41
+
42
+ // —————————————————————————————————————————
43
+ // M I X I N S
44
+ // —————————————————————————————————————————
45
+ // @include background-image("image.jpg");
46
+ @mixin background-image($url) {
47
+ background: $grey url($url) no-repeat center;
48
+ background-size: cover;
49
+ }
50
+
51
+ // @include background-fill();
52
+ @mixin background-fill() {
53
+ background-repeat: no-repeat;
54
+ background-position: center;
55
+ background-size: cover;
56
+ }
57
+
58
+
59
+ // —————————————————————————————————————————
60
+ // S T A T E S
61
+ // —————————————————————————————————————————
62
+ ::selection {
63
+ background:rgba(252, 67, 54, 0.5);
64
+ }
65
+
66
+ ::-moz-selection {
67
+ background: rgba(252, 67, 54, 0.5);
68
+ }
69
+
70
+ .keyboard-focus :focus {
71
+ outline: 2px solid blue;
72
+ }
73
+
74
+ // skip link defaults
75
+ #skipLink {
76
+ padding: 20px 10px 11px 10px;
77
+ display: inline-block;
78
+ position: absolute;
79
+ z-index: 123456789;
80
+ background-color: white;
81
+ top: -200px;
82
+ left: 20px;
83
+ border-radius: 0px 0px 5px 5px;
84
+ box-shadow: 0px 0px 24px rgba(0,0,0,0.5);
85
+ transition: .4s all $easing;
86
+ &:focus {
87
+ top: 0;
88
+ }
89
+ }
90
+
91
+
92
+
93
+ // —————————————————————————————————————————
94
+ // core styles & classes
95
+ // —————————————————————————————————————————
96
+
97
+ body,
98
+ input,
99
+ textarea,
100
+ radio,
101
+ checkbox,
102
+ .strip {
103
+ background-color: transparent;
104
+ font-weight: normal;
105
+ font-style: normal;
106
+ line-height: 1;
107
+ text-align: left;
108
+ }
109
+
110
+ .pv {
111
+ padding-top: 65px;
112
+ padding-bottom: 65px;
113
+ }
114
+
115
+ .video-wrapper {
116
+ position: relative;
117
+ padding-bottom: 56.25%;
118
+ /* 16:9 */
119
+ padding-top: 25px;
120
+ height: 0;
121
+ embed,
122
+ video,
123
+ object {
124
+ position: absolute;
125
+ top: 0;
126
+ left: 0;
127
+ width: 100%;
128
+ height: 100%;
129
+ }
130
+ }
131
+
132
+ /* Fixes potential theme css conflict. */
133
+ .acf-map {
134
+ width: 100%;
135
+ height: 100vh;
136
+ img {
137
+ max-width: inherit !important;
138
+ }
139
+ }
140
+
141
+ li p,
142
+ p .button {
143
+ font-size: 100%;
144
+ }
145
+
146
+
147
+
148
+ // —————————————————————————————————————————
149
+ // header
150
+ // —————————————————————————————————————————
151
+
152
+ #header {}
153
+
154
+ // —————————————————————————————————————————
155
+ // ST Typography
156
+ // —————————————————————————————————————————
157
+
158
+ .st {
159
+ h1,
160
+ h2,
161
+ h3,
162
+ h4,
163
+ h5,
164
+ h6 {
165
+ margin: 0;
166
+ padding: 0;
167
+ }
168
+
169
+ p,
170
+ li {
171
+ margin: 0;
172
+ padding: 0;
173
+ }
174
+
175
+ b,
176
+ strong {
177
+ font-weight: 600;
178
+ }
179
+
180
+ a {
181
+ text-decoration: underline;
182
+ }
183
+
184
+ p.small {
185
+ font-size: 140%;
186
+ }
187
+
188
+ // ————————————————————————————— headings
189
+
190
+ h1,
191
+ h2 {
192
+ font-size: 360%;
193
+ font-weight: 400;
194
+ margin-top: 40px;
195
+ margin-bottom: 10px;
196
+ }
197
+
198
+ h3 {
199
+ font-size: 270%;
200
+ margin-bottom: 10px;
201
+ margin-top: 40px;
202
+ }
203
+
204
+ h4 {
205
+ font-size: 200%;
206
+ margin-top: 20px;
207
+ margin-bottom: 2px;
208
+ }
209
+
210
+ h5 {
211
+ font-size: 200%;
212
+ }
213
+
214
+ h6 {
215
+ font-size: 300%;
216
+ margin-bottom: 32px;
217
+ }
218
+
219
+ // ————————————————————————————— lists
220
+
221
+ ul {
222
+ list-style-type: disc;
223
+ }
224
+
225
+ ul ul {
226
+ margin-top: 10px;
227
+ margin-bottom: 20px;
228
+ list-style-type: circle;
229
+ }
230
+
231
+ ul ul ul {
232
+ list-style-type: square;
233
+ }
234
+
235
+ ol {
236
+ list-style-type: decimal;
237
+ }
238
+
239
+ ol ol {
240
+ margin-top: 10px;
241
+ margin-bottom: 20px;
242
+ list-style-type: lower-alpha;
243
+ }
244
+
245
+ ol ol ol {
246
+ list-style-type: lower-roman;
247
+ }
248
+
249
+ ol ol,
250
+ ul ol {
251
+ list-style-type: lower-roman;
252
+ }
253
+
254
+ li li {
255
+ font-size: 100%;
256
+ }
257
+
258
+ iframe {
259
+ width: 100%;
260
+ }
261
+ }
262
+
263
+
264
+ // —————————————————————————————————————————
265
+ // Special Typography
266
+ // —————————————————————————————————————————
267
+
268
+ // —————————————————————————————————————————
269
+ // buttons
270
+ // —————————————————————————————————————————
271
+
272
+ .button {
273
+ margin-top: 10px;
274
+ display: inline-block;
275
+ padding: 15px 30px;
276
+ text-decoration: none !important;
277
+ line-height: 1;
278
+ &:hover {}
279
+ }
280
+
281
+
282
+
283
+ // —————————————————————————————————————————
284
+ // contact form 7
285
+ // —————————————————————————————————————————
286
+
287
+ .form-layer {
288
+ padding: 0 20px 100px;
289
+ text-align: center;
290
+ background: white;
291
+
292
+ .form-layer__form {
293
+ p {
294
+ font-size: 100%;
295
+ margin-top: 25px;
296
+ display: block;
297
+ clear: both;
298
+ }
299
+
300
+ p {
301
+ font-size: 100%;
302
+ margin-top: 25px;
303
+ display: block;
304
+ clear: both;
305
+ }
306
+
307
+ p.three-field-date,
308
+ p.two-field-date {
309
+ font-size: 100%;
310
+ margin-top: 0;
311
+ }
312
+
313
+ label,
314
+ legend {
315
+ display: inline-block;
316
+ padding-bottom: 5px;
317
+ font-size: 180%;
318
+ }
319
+
320
+ legend {
321
+ margin-top: 25px;
322
+ }
323
+
324
+ input,
325
+ textarea,
326
+ checkbox,
327
+ radio {
328
+ box-sizing: border-box;
329
+ border: none;
330
+ margin: 0;
331
+ padding: 0;
332
+ width: 600px;
333
+ max-width: 100%;
334
+ font-size: 180%;
335
+ line-height: 1.2;
336
+ padding: 10px;
337
+ }
338
+
339
+ input[type="submit"] {
340
+ text-align: center;
341
+ font-size: 180%;
342
+ width: auto;
343
+ }
344
+
345
+ input:focus,
346
+ textarea:focus {
347
+ outline: 3px solid #4985a7;
348
+ color: black;
349
+ }
350
+
351
+ select {
352
+ -webkit-appearance: none;
353
+ -moz-appearance: none;
354
+ appearance: none;
355
+ box-sizing: border-box !important;
356
+ background: url('img/dropdown-arrow.png') no-repeat 96% 50% transparent;
357
+ background-size: 16px 9px;
358
+ }
359
+ }
360
+ }
361
+
362
+
363
+ // —————————————————————————————————————————
364
+ // footer
365
+ // —————————————————————————————————————————
366
+
367
+ #footer {}
368
+
369
+
370
+ // —————————————————————————————————————————
371
+ // IMPORTS
372
+ // —————————————————————————————————————————
373
+ // these are partials, must go in the _sass folder
374
+ @import "responsive.scss";