jekyll-theme-white-xmas 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 0d6817e3e9bf53ab3757820174a239f0f73814195cbf0b5c4b636457822e608c
4
+ data.tar.gz: 2efebfaecc4f082b6f14c96e39951b5a3c12b0730c7c6d40c798e942b3fbf5dd
5
+ SHA512:
6
+ metadata.gz: 01bd8c05d3d641b244c9e70e8a4c44351a3ab83def53a6bff5fe65d88e6b8b6dacfe0352bd5a555ca3399f1e6460dfe241febe66b23b32c06b993600877b8f42
7
+ data.tar.gz: dbbd8fdee05e0ad21b4e70223e52df7251b5efafd18ed5d7ba142882ed86ab72196a8bbec2da41609d6e23c963075ba51b75e96c5e89ddff2e17bb147bce47c7
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Mick Staugaard
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,52 @@
1
+ # jekyll-theme-white-xmas
2
+
3
+ Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
4
+
5
+ To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
6
+
7
+ TODO: Delete this and the text above, and describe your gem
8
+
9
+
10
+ ## Installation
11
+
12
+ Add this line to your Jekyll site's `Gemfile`:
13
+
14
+ ```ruby
15
+ gem "jekyll-theme-white-xmas"
16
+ ```
17
+
18
+ And add this line to your Jekyll site's `_config.yml`:
19
+
20
+ ```yaml
21
+ theme: jekyll-theme-white-xmas
22
+ ```
23
+
24
+ And then execute:
25
+
26
+ $ bundle
27
+
28
+ Or install it yourself as:
29
+
30
+ $ gem install jekyll-theme-white-xmas
31
+
32
+ ## Usage
33
+
34
+ TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
35
+
36
+ ## Contributing
37
+
38
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
39
+
40
+ ## Development
41
+
42
+ To set up your environment to develop this theme, run `bundle install`.
43
+
44
+ Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
45
+
46
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
47
+ To add a custom directory to your theme-gem, please edit the regexp in `jekyll-theme-white-xmas.gemspec` accordingly.
48
+
49
+ ## License
50
+
51
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
52
+
@@ -0,0 +1,2 @@
1
+ </div><!-- #content -->
2
+ </div><!-- #page -->
@@ -0,0 +1,11 @@
1
+ <head>
2
+ <meta charset="utf-8">
3
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
4
+ <meta name="viewport" content="width=device-width, initial-scale=1">
5
+ {%- seo -%}
6
+ <link rel="stylesheet" href="{{ "/assets/css/style.css" | relative_url }}">
7
+ {%- feed_meta -%}
8
+ {%- if jekyll.environment == 'production' and site.google_analytics -%}
9
+ {%- include google-analytics.html -%}
10
+ {%- endif -%}
11
+ </head>
@@ -0,0 +1,9 @@
1
+ <a class="skip-link screen-reader-text" href="#content">Skip to content</a>
2
+ <div id="page" class="hfeed site">
3
+ <header id="masthead" class="site-header" role="banner">
4
+ <div class="site-branding">
5
+ <h1 class="site-title"><a href="{{ "/" | relative_url }}" rel="home">{{ site.title | escape }}</a></h1>
6
+ <p class="site-description">{{- site.description | escape -}}</p>
7
+ </div>
8
+ </header><!-- #masthead -->
9
+ <div id="content" class="site-content">
@@ -0,0 +1,20 @@
1
+ <!DOCTYPE html>
2
+ <html lang="{{ page.lang | default: site.lang | default: "en" }}">
3
+
4
+ {%- include head.html -%}
5
+
6
+ <body>
7
+
8
+ {%- include header.html -%}
9
+
10
+ <main class="page-content" aria-label="Content">
11
+ <div class="wrapper">
12
+ {{ content }}
13
+ </div>
14
+ </main>
15
+
16
+ {%- include footer.html -%}
17
+
18
+ </body>
19
+
20
+ </html>
@@ -0,0 +1,43 @@
1
+ ---
2
+ layout: page
3
+ ---
4
+
5
+ <article>
6
+ {%- if page.title -%}
7
+ <header class="entry-header">
8
+ <h2 class="entry-title">{{ page.title | escape }}</h2>
9
+ </header><!-- .entry-header -->
10
+ {%- endif -%}
11
+
12
+ <div class="entry-content">
13
+ {{ content }}
14
+
15
+ {%- if site.posts.size > 0 -%}
16
+ <h2 class="post-list-heading">{{ page.list_title | default: "Posts" }}</h2>
17
+ <ul class="post-list">
18
+ {%- for post in site.posts -%}
19
+ <li>
20
+ {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
21
+ <h3>
22
+ <a class="post-link" href="{{ post.url | relative_url }}">
23
+ {{ post.title | escape }}
24
+ </a>
25
+ </h3>
26
+ <span class="post-meta">{{ post.date | date: date_format }}</span>
27
+ {%- if site.show_excerpts -%}
28
+ {{ post.excerpt }}
29
+ {%- endif -%}
30
+ </li>
31
+ {%- endfor -%}
32
+ </ul>
33
+
34
+ <p class="feed-subscribe">
35
+ <a href="{{ 'feed.xml' | relative_url }}">
36
+ <svg class="svg-icon orange"><use xlink:href="{{ 'assets/minima-social-icons.svg#rss' | relative_url }}"></use></svg><span>Subscribe</span>
37
+ </a>
38
+ </p>
39
+ {%- endif -%}
40
+ </div><!-- .entry-content -->
41
+ <footer class="entry-meta">
42
+ </footer><!-- .entry-meta -->
43
+ </article><!-- #post-## -->
@@ -0,0 +1,11 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div id="primary" class="content-area">
6
+ <main id="main" class="site-main" role="main">
7
+ {{ content }}
8
+ </main>
9
+ </div>
10
+
11
+
@@ -0,0 +1,21 @@
1
+ ---
2
+ layout: page
3
+ ---
4
+
5
+ <article>
6
+ <header class="entry-header">
7
+ <h2 class="entry-title">{{ page.title | escape }}</h2>
8
+ <div class="entry-meta">
9
+ <time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
10
+ {%- assign date_format = site.white-xmas.date_format | default: "%b %-d, %Y" -%}
11
+ {{ page.date | date: date_format }}
12
+ </time>
13
+ </div><!-- .entry-meta -->
14
+ </header><!-- .entry-header -->
15
+
16
+ <div class="entry-content">
17
+ {{ content }}
18
+ </div><!-- .entry-content -->
19
+ <footer class="entry-meta">
20
+ </footer><!-- .entry-meta -->
21
+ </article><!-- #post-## -->
@@ -0,0 +1,1157 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ ---
4
+ /*
5
+ Theme Name: White Xmas
6
+ Theme URI:
7
+ Author: Carolina Nymark
8
+ Author URI: https://themesbycarolina.com
9
+ Description: A responsive, accessible seasonal Christmas blog theme in blue and white. -Hide the images in the customizer and it's suitable all year round.
10
+ Version: 1.8
11
+ License: GNU General Public License (GPL), v2
12
+ License URI: https://www.gnu.org/licenses/gpl-2.0.html
13
+ Text Domain: white-xmas
14
+ Domain Path: /languages/
15
+ Tags: threaded-comments, custom-menu, sticky-post, custom-background, two-columns, right-sidebar, translation-ready, holiday, editor-style, custom-header, featured-images, accessibility-ready
16
+
17
+ This theme, like WordPress, is licensed under the GPL.
18
+ Use it to make something cool, have fun, and share what you've learned with others.
19
+
20
+ White Xmas is based on Underscores httsp://underscores.me/, (C) 2012-2019 Automattic, Inc.
21
+
22
+ Resetting and rebuilding styles have been helped along thanks to the fine work of
23
+ Eric Meyer https://meyerweb.com/eric/tools/css/reset/index.html
24
+ along with Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/ and Blueprint.
25
+
26
+ /* =Reset
27
+ -------------------------------------------------------------- */
28
+
29
+ html, body, div, span, applet, object, iframe,
30
+ p, blockquote, pre,
31
+ a, abbr, acronym, address, big, cite, code,
32
+ del, dfn, em, font, ins, kbd, q, s, samp,
33
+ small, strike, strong, sub, sup, tt, var,
34
+ dl, dt, dd, ol, ul, li,
35
+ fieldset, form, label, legend,
36
+ table, caption, tbody, tfoot, thead, tr, th, td {
37
+ border: 0;
38
+ font-family: inherit;
39
+ font-size: 100%;
40
+ font-style: inherit;
41
+ font-weight: inherit;
42
+ margin: 0;
43
+ outline: 0;
44
+ padding: 0;
45
+ /*vertical-align: baseline;*/
46
+ }
47
+
48
+ html {
49
+ font-size: 62.5%;
50
+ overflow-y: scroll;
51
+ -webkit-text-size-adjust: 100%;
52
+ -ms-text-size-adjust: 100%;
53
+ }
54
+
55
+ body {
56
+ background: #efefef;
57
+ }
58
+
59
+ article,
60
+ aside,
61
+ details,
62
+ figcaption,
63
+ figure,
64
+ footer,
65
+ header,
66
+ main,
67
+ nav,
68
+ section {
69
+ display: block;
70
+ }
71
+
72
+ ol, ul {
73
+ list-style: none;
74
+ }
75
+
76
+ table { /* tables still need 'cellspacing="0"' in the markup */
77
+ border-collapse: separate;
78
+ border-spacing: 0;
79
+ }
80
+
81
+ caption, th, td {
82
+ font-weight: normal;
83
+ text-align: left;
84
+ }
85
+
86
+ blockquote:before, blockquote:after,
87
+ q:before, q:after {
88
+ content: "";
89
+ }
90
+
91
+ blockquote, q {
92
+ quotes: "" "";
93
+ }
94
+
95
+ a:focus {
96
+ outline: thin dotted;
97
+ }
98
+
99
+ a:hover,
100
+ a:active {
101
+ outline: 0;
102
+ }
103
+
104
+ a img {
105
+ border: 0;
106
+ }
107
+
108
+ /* =Global
109
+ ----------------------------------------------- */
110
+ *,
111
+ *:before,
112
+ *:after {
113
+ -webkit-box-sizing: border-box;
114
+ -moz-box-sizing: border-box;
115
+ box-sizing: border-box;
116
+ -ms-word-wrap: break-word;
117
+ word-wrap: break-word;
118
+ }
119
+
120
+ body,
121
+ button,
122
+ input,
123
+ select,
124
+ textarea {
125
+ color: #000;
126
+ font-family: sans-serif;
127
+ font-size: 16px;
128
+ font-size: 1.6rem;
129
+ line-height: 1.5;
130
+ }
131
+
132
+ h1 {
133
+ font-size: 2.44em;
134
+ }
135
+
136
+ h2 {
137
+ font-size: 1.95em;
138
+ }
139
+
140
+ h3 {
141
+ font-size: 1.56em;
142
+ }
143
+
144
+ h4 {
145
+ font-size: 1.25em;
146
+ }
147
+
148
+ h5 {
149
+ font-size: 1em;
150
+ }
151
+
152
+ h6 {
153
+ font-size: .8em;
154
+ }
155
+
156
+ p {
157
+ margin-bottom: 1.5em;
158
+ }
159
+
160
+ hr {
161
+ background-color: #ccc;
162
+ border: 0;
163
+ height: 1px;
164
+ margin-bottom: 1.5em;
165
+ }
166
+
167
+ ul, ol {
168
+ margin: 0 0 1.5em 3em;
169
+ line-height: 1.8;
170
+ }
171
+
172
+ ul {
173
+ list-style: disc;
174
+ }
175
+
176
+ ol {
177
+ list-style: decimal;
178
+ }
179
+
180
+ li > ul,
181
+ li > ol {
182
+ margin-bottom: 0;
183
+ margin-left: 1.5em;
184
+ }
185
+
186
+ dt {
187
+ font-weight: 700;
188
+ }
189
+
190
+ dd {
191
+ margin: 0 1.5em 1.5em;
192
+ }
193
+
194
+ b, strong {
195
+ font-weight: 700;
196
+ }
197
+
198
+ dfn, cite, em, i {
199
+ font-style: italic;
200
+ }
201
+
202
+ blockquote {
203
+ margin: 0 1.5em;
204
+ }
205
+
206
+ address {
207
+ margin: 0 0 1.5em;
208
+ }
209
+
210
+ pre {
211
+ background: #eee;
212
+ font-family: "Courier 10 Pitch", Courier, monospace;
213
+ font-size: 1em;
214
+ font-size: 1.5rem;
215
+ line-height: 1.6;
216
+ margin-bottom: 1.6em;
217
+ max-width: 100%;
218
+ overflow: hidden;
219
+ padding: 1.6em;
220
+ word-wrap: break-word;
221
+ white-space: pre-wrap;
222
+ }
223
+
224
+ code, kbd, tt, var {
225
+ font: 1em Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
226
+ }
227
+
228
+ abbr, acronym {
229
+ border-bottom: 1px dotted #666;
230
+ cursor: help;
231
+ }
232
+
233
+ mark, ins {
234
+ background: #fff9c0;
235
+ text-decoration: none;
236
+ }
237
+
238
+ sup,
239
+ sub {
240
+ font-size: 75%;
241
+ height: 0;
242
+ line-height: 0;
243
+ position: relative;
244
+ vertical-align: baseline;
245
+ }
246
+
247
+ sup {
248
+ bottom: 1ex;
249
+ }
250
+
251
+ sub {
252
+ top: .5ex;
253
+ }
254
+
255
+ figure {
256
+ margin: 0;
257
+ }
258
+
259
+ /*table {
260
+ margin: 4px 4px 10px 4px;
261
+ border-collapse: collapse;
262
+ margin: 0 0 1.5em;
263
+ width: 100%;
264
+ }
265
+
266
+ th {
267
+ font-weight: 700;
268
+ }
269
+
270
+ td,
271
+ th {
272
+ border: 1px solid #000;
273
+ padding:6px;
274
+ }
275
+ */
276
+ img {
277
+ height: auto;
278
+ max-width: 100%;
279
+ }
280
+
281
+ button,
282
+ input,
283
+ select,
284
+ textarea {
285
+ font-size: 100%;
286
+ vertical-align: middle;
287
+ }
288
+
289
+ select {
290
+ padding: 6px;
291
+ margin-bottom: 1.5em;
292
+ }
293
+
294
+ button,
295
+ input {
296
+ line-height: normal;
297
+ }
298
+
299
+ button,
300
+ input[type="button"],
301
+ input[type="reset"],
302
+ input[type="submit"] {
303
+ border: 1px solid;
304
+ border-color: #ccc #ccc #bbb #ccc;
305
+ border-radius: 3px;
306
+ background: #e6e6e6;
307
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
308
+ color: rgba(0, 0, 0, .8);
309
+ cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
310
+ -webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
311
+ font-size: 1.4rem;
312
+ line-height: 1;
313
+ padding: .6em 1em .4em;
314
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
315
+ }
316
+
317
+ button:hover,
318
+ input[type="button"]:hover,
319
+ input[type="reset"]:hover,
320
+ input[type="submit"]:hover {
321
+ border-color: #ccc #bbb #aaa #bbb;
322
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
323
+ }
324
+
325
+ button:focus,
326
+ input[type="button"]:focus,
327
+ input[type="reset"]:focus,
328
+ input[type="submit"]:focus,
329
+ button:active,
330
+ input[type="button"]:active,
331
+ input[type="reset"]:active,
332
+ input[type="submit"]:active {
333
+ border-color: #aaa #bbb #bbb #bbb;
334
+ box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
335
+ }
336
+
337
+ input[type="checkbox"],
338
+ input[type="radio"] {
339
+ box-sizing: border-box; /* Addresses box sizing set to content-box in IE8/9 */
340
+ padding: 0; /* Addresses excess padding in IE8/9 */
341
+ }
342
+
343
+ input[type="search"] {
344
+ -webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
345
+ -webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
346
+ -moz-box-sizing: content-box;
347
+ box-sizing: content-box;
348
+ }
349
+
350
+ input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
351
+ -webkit-appearance: none;
352
+ }
353
+
354
+ button::-moz-focus-inner,
355
+ input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
356
+ border: 0;
357
+ padding: 0;
358
+ }
359
+
360
+ input[type="text"],
361
+ input[type="email"],
362
+ input[type="url"],
363
+ input[type="password"],
364
+ input[type="search"],
365
+ textarea {
366
+ color: #666;
367
+ border: 1px solid #ccc;
368
+ border-radius: 3px;
369
+ line-height: 1.5;
370
+ }
371
+
372
+ input[type="text"]:focus,
373
+ input[type="email"]:focus,
374
+ input[type="url"]:focus,
375
+ input[type="password"]:focus,
376
+ input[type="search"]:focus,
377
+ textarea:focus {
378
+ color: #111;
379
+ }
380
+
381
+ input[type="text"],
382
+ input[type="email"],
383
+ input[type="url"],
384
+ input[type="password"],
385
+ input[type="search"] {
386
+ padding: 3px;
387
+ }
388
+
389
+ textarea {
390
+ overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
391
+ padding-left: 3px;
392
+ vertical-align: top; /* Improves readability and alignment in all browsers */
393
+ width: 98%;
394
+ }
395
+
396
+ /* Links */
397
+ a {
398
+ color: #2a78a8;
399
+ }
400
+
401
+ a:visited {
402
+ color: #2a78a8;
403
+ }
404
+
405
+ a:hover,
406
+ a:focus,
407
+ a:active {
408
+ color: #000;
409
+ }
410
+
411
+ /* Alignment */
412
+ .alignleft {
413
+ display: inline;
414
+ float: left;
415
+ margin-right: 1.5em;
416
+ }
417
+
418
+ .alignright {
419
+ display: inline;
420
+ float: right;
421
+ margin-left: 1.5em;
422
+ }
423
+
424
+ .aligncenter {
425
+ clear: both;
426
+ display: block;
427
+ margin: 0 auto;
428
+ }
429
+
430
+ .wp-block-cover.aligncenter {
431
+ display: flex;
432
+ margin: 0 0 2em;
433
+ }
434
+
435
+ .wp-block-cover.alignright,
436
+ .wp-block-cover.alignleft {
437
+ display: flex;
438
+ }
439
+
440
+ .wp-block-image .alignleft {
441
+ margin: 0 2em 2em 0;
442
+ }
443
+
444
+ .wp-block-cover.alignleft {
445
+ margin-right: 2em;
446
+ }
447
+
448
+ .wp-block-image .alignright {
449
+ margin: 0 0 2em 2em;
450
+ }
451
+
452
+ .wp-block-cover.alignright {
453
+ margin-left: 2em;
454
+ }
455
+
456
+ .wp-block-audio.aligncenter {
457
+ margin: 0;
458
+ }
459
+
460
+ .wp-block-categories.aligncenter {
461
+ padding-left: 2.5em;
462
+ }
463
+
464
+ /* Text meant only for screen readers */
465
+ .screen-reader-text {
466
+ clip: rect(1px, 1px, 1px, 1px);
467
+ position: absolute !important;
468
+ }
469
+
470
+ .screen-reader-text:hover,
471
+ .screen-reader-text:active,
472
+ .screen-reader-text:focus {
473
+ background-color: #f1f1f1;
474
+ border-radius: 3px;
475
+ box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
476
+ clip: auto !important;
477
+ color: #21759b;
478
+ display: block;
479
+ font-size: 1em;
480
+ font-weight: 700;
481
+ height: auto;
482
+ left: 5px;
483
+ line-height: normal;
484
+ padding: 15px 23px 14px;
485
+ text-decoration: none;
486
+ top: 5px;
487
+ width: auto;
488
+ z-index: 100000; /* Above WP toolbar */
489
+ }
490
+
491
+ /* Clearing */
492
+ .clear:before,
493
+ .clear:after,
494
+ .entry-content:before,
495
+ .entry-content:after,
496
+ .comment-content:before,
497
+ .comment-content:after,
498
+ .site-header:before,
499
+ .site-header:after,
500
+ .site-content:before,
501
+ .site-content:after,
502
+ .site-footer:before,
503
+ .site-footer:after {
504
+ content: '';
505
+ display: table;
506
+ }
507
+
508
+ .clear:after,
509
+ .entry-content:after,
510
+ .comment-content:after,
511
+ .site-header:after,
512
+ .site-content:after,
513
+ .site-footer:after {
514
+ clear: both;
515
+ }
516
+
517
+ /* Header
518
+ ----------------------------------------------- */
519
+ .site-header {
520
+ background:#fff;
521
+ margin:0 auto;
522
+ }
523
+
524
+ #masthead {
525
+ margin-bottom: 20px;
526
+ }
527
+
528
+ .site-branding {
529
+ width: 70%;
530
+ margin: 0 auto;
531
+ background: url('../img/deer2.png') right top no-repeat;
532
+ min-height: 215px;
533
+ }
534
+
535
+ .site-description {
536
+ font-family: 'Tangerine', cursive;
537
+ font-size: 2.8em;
538
+ padding: 30px 0 0 0;
539
+ font-weight: normal;
540
+ margin: 0;
541
+ }
542
+
543
+ .site-title a {
544
+ color:#000;
545
+ text-decoration:none;
546
+ font-size: 1.8em;
547
+ font-family: 'Sofia', cursive;
548
+ font-weight: normal;
549
+ margin: 0;
550
+ padding: 0;
551
+ }
552
+
553
+ .site-title a:hover {
554
+ text-decoration: underline;
555
+ }
556
+
557
+ .custom-logo {
558
+ margin-top: 3em;
559
+ }
560
+
561
+ /* =Menu
562
+ ----------------------------------------------- */
563
+ .main-navigation {
564
+ clear: both;
565
+ display: block;
566
+ margin: 6px auto 7px auto;
567
+ position: relative;
568
+ float: left;
569
+ }
570
+
571
+ .main-navigation ul {
572
+ list-style: none;
573
+ margin: 0;
574
+ padding-left: 0;
575
+
576
+ }
577
+
578
+ .main-navigation li {
579
+ float: left;
580
+ position: relative;
581
+ padding: 2px 9px;
582
+ margin-right: 10px;
583
+ margin-bottom: 8px;
584
+ background:#1d415a;
585
+ border-radius: 3px;
586
+ }
587
+
588
+ .main-navigation a {
589
+ display: block;
590
+ text-decoration: none;
591
+ color:#fff;
592
+ }
593
+
594
+ .main-navigation a:hover {
595
+ text-decoration: underline;
596
+ }
597
+
598
+ /* =Content
599
+ ----------------------------------------------- */
600
+ .site-content {
601
+ margin: 0 auto;
602
+ width: 70%;
603
+ padding: 20px 0 50px 0;
604
+ }
605
+
606
+ .entry-title {
607
+ font-family: 'Tangerine', cursive;
608
+ font-size: 3.1em;
609
+ margin: 0;
610
+ padding: 0;
611
+ color:#000;
612
+ letter-spacing: 1px;
613
+ }
614
+
615
+ .entry-title a {
616
+ color:#000;
617
+ text-decoration: none;
618
+ border-bottom: 2px dotted #ccc;
619
+ }
620
+
621
+ .entry-title a:hover {
622
+ border-bottom: 2px dotted #2a78a8;
623
+ }
624
+
625
+ .page-title {
626
+ text-decoration: none;
627
+ font-size: 3.3em;
628
+ font-family: 'Tangerine', cursive;
629
+ font-weight: 700;
630
+ margin: 0 0 20px 0;
631
+ padding: 0;
632
+ }
633
+
634
+ .post{
635
+ border-bottom: 2px dotted #ccc;
636
+ margin: 0 0 1.5em;
637
+ }
638
+
639
+ .sticky {}
640
+
641
+ .posted-on a,
642
+ .byline,
643
+ .byline a,
644
+ a.post-edit-link {
645
+ text-decoration: none;
646
+ border-bottom: 2px dotted #ccc;
647
+ color:#2a78a8;
648
+ }
649
+
650
+ a.post-edit-link:focus,
651
+ a.post-edit-link:hover,
652
+ a.post-edit-link:active,
653
+ .comment-edit-link a:focus,
654
+ .comment-edit-link a:hover,
655
+ .comemnt-edit-link a:active,
656
+ .byline a:focus,
657
+ .byline a:hover,
658
+ .byline a:active,
659
+ .posted-on a:focus,
660
+ .posted-on a:hover,
661
+ .posted-on a:active {
662
+ color: #000;
663
+ }
664
+
665
+ a.post-edit-link {
666
+ margin-left: 20px;
667
+ }
668
+
669
+ .updated {
670
+ display: none;
671
+ }
672
+
673
+ .single .byline,
674
+ .group-blog .byline {
675
+ display: inline;
676
+ }
677
+
678
+ .page-content,
679
+ .entry-content,
680
+ .entry-summary {
681
+ margin: 1.5em 0 0;
682
+ }
683
+
684
+ .page-links {
685
+ clear: both;
686
+ margin: 0 0 1.5em;
687
+ }
688
+
689
+ .entry-meta {
690
+ margin-bottom: 15px;
691
+ // margin-top: 15px;
692
+ color: #2a78a8;
693
+ }
694
+
695
+ footer.entry-meta {
696
+ margin-top: 35px;
697
+ }
698
+
699
+ .post-list {
700
+ list-style: none;
701
+
702
+ li {
703
+ margin-bottom: 14px;
704
+
705
+ h3 {
706
+ margin: 0;
707
+ }
708
+
709
+ }
710
+ }
711
+
712
+
713
+ /* =blocks
714
+ ----------------------------------------------- */
715
+
716
+ .wp-block-media-text,
717
+ .wp-block-button {
718
+ margin-bottom: 1.5em;
719
+ }
720
+
721
+ .wp-block-button__link {
722
+ text-decoration: underline;
723
+ }
724
+
725
+ .wp-block-button__link:hover,
726
+ .wp-block-button__link:focus {
727
+ text-decoration: none;
728
+ }
729
+
730
+ .wp-block-column {
731
+ padding: 0.5em;
732
+ }
733
+
734
+ .wp-block-media-text .wp-block-media-text__content {
735
+ padding: 8%;
736
+ }
737
+
738
+ /* Increase text color contrast */
739
+ .wp-block-latest-posts__post-date,
740
+ .wp-block-latest-comments__comment-date {
741
+ color: #333;
742
+ }
743
+
744
+ .wp-block-audio figcaption {
745
+ margin-bottom: 1.5em;
746
+ color: #333;
747
+ }
748
+
749
+ .wp-block-quote cite {
750
+ display: block;
751
+ font-size: 13px;
752
+ color: #333;
753
+ }
754
+
755
+ blockquote .wp-block-quote.is-style-large p {
756
+ font-size: 24px;
757
+ line-height: 1.6;
758
+ }
759
+
760
+ blockquote.wp-block-quote.is-style-large {
761
+ border: none;
762
+ }
763
+
764
+ blockquote.wp-block-quote.is-style-large cite {
765
+ font-size: 13px;
766
+ text-align: left;
767
+ }
768
+
769
+ .wp-block-pullquote blockquote {
770
+ border-left: none;
771
+ }
772
+
773
+ .wp-block-pullquote {
774
+ margin: 1em 40px;
775
+ }
776
+
777
+ .wp-block-image {
778
+ margin-bottom: 1em;
779
+ }
780
+
781
+ /* =Asides
782
+ ----------------------------------------------- */
783
+
784
+ .blog .format-aside .entry-title,
785
+ .archive .format-aside .entry-title {
786
+ display: none;
787
+ }
788
+
789
+ /* =Media
790
+ ----------------------------------------------- */
791
+
792
+ .page-content img.wp-smiley,
793
+ .entry-content img.wp-smiley,
794
+ .comment-content img.wp-smiley {
795
+ border: none;
796
+ margin-bottom: 0;
797
+ margin-top: 0;
798
+ padding: 0;
799
+ }
800
+
801
+ .wp-caption {
802
+ border: 1px solid #ccc;
803
+ margin-bottom: 1.5em;
804
+ max-width: 100%;
805
+ }
806
+
807
+ .wp-caption img[class*="wp-image-"] {
808
+ display: block;
809
+ margin: 1.2% auto 0;
810
+ max-width: 98%;
811
+ }
812
+
813
+ .wp-caption-text {
814
+ text-align: center;
815
+ }
816
+
817
+ .wp-caption .wp-caption-text {
818
+ margin: 0.8075em 0;
819
+ }
820
+
821
+ .gallery-caption {}
822
+
823
+ .site-main .gallery {
824
+ margin-bottom: 1.5em;
825
+ }
826
+
827
+ .site-main .gallery a img {
828
+ border: none;
829
+ height: auto;
830
+ max-width: 90%;
831
+ }
832
+
833
+ .site-main .gallery dd {
834
+ margin: 0;
835
+ }
836
+
837
+ /* Make sure embeds and iframes fit their containers */
838
+ embed,
839
+ iframe,
840
+ object {
841
+ max-width: 100%;
842
+ }
843
+
844
+ a img {
845
+ padding: 2px;
846
+ }
847
+
848
+ a:focus img {
849
+ padding: 0;
850
+ border: 2px solid #1d415a;
851
+ }
852
+
853
+ /* =Navigation
854
+ ----------------------------------------------- */
855
+
856
+ .site-main [class*="navigation"] {
857
+ margin: 30px 0 1.5em;
858
+ overflow: hidden;
859
+ font-size: 2.8em;
860
+ font-family: 'Tangerine', cursive;
861
+ font-weight: 700;
862
+ letter-spacing: 1px;
863
+ }
864
+
865
+ a.more-link,
866
+ .page-links,
867
+ .page-links a {
868
+ text-decoration:none;
869
+ font-size: 1.8em;
870
+ font-family: 'Tangerine', cursive;
871
+ font-weight: 700;
872
+ }
873
+
874
+ a.more-link:hover,
875
+ .page-links a:hover {
876
+ text-decoration: underline;
877
+ }
878
+
879
+ .site-main [class*="navigation"] a {
880
+ text-decoration: none;
881
+ color:#000;
882
+ }
883
+
884
+ .site-main [class*="navigation"] a:hover {
885
+ text-decoration: underline;
886
+ color:#2a78a8;
887
+ }
888
+
889
+ [class*="navigation"] .nav-previous {
890
+ float: left;
891
+ width: 50%;
892
+ }
893
+
894
+ [class*="navigation"] .nav-next {
895
+ float: right;
896
+ text-align: right;
897
+ width: 50%;
898
+ }
899
+
900
+ .crumbs {
901
+ margin: 10px 0;
902
+ color: #2a78a8;
903
+ }
904
+
905
+ /* =Comments
906
+ ----------------------------------------------- */
907
+ .comments-area {
908
+ border-top: 2px dotted #ccc;
909
+ margin-top: 30px;
910
+ padding-top: 20px;
911
+ }
912
+
913
+ .comments-title,
914
+ .comment-reply-title {
915
+ font-family: 'Tangerine', cursive;
916
+ font-size: 2.8em;
917
+ text-decoration: none;
918
+ font-weight: 700;
919
+ margin-bottom: 20px;
920
+ letter-spacing: 1px;
921
+ }
922
+
923
+ .comment-list,
924
+ .children {
925
+ list-style-type: none;
926
+ }
927
+
928
+ .says {
929
+ display: none;
930
+ }
931
+
932
+ .comment-content a {
933
+ word-wrap: break-word;
934
+ }
935
+
936
+ .bypostauthor{}
937
+
938
+ .url {
939
+ font-style: normal;
940
+ text-decoration: none;
941
+ }
942
+
943
+ .comment-body {
944
+ margin-bottom:20px;
945
+ border-bottom: 2px dotted #ccc;
946
+ padding-bottom:10px;
947
+ }
948
+
949
+ .children .comment-body {
950
+ background:#f7f7f7;
951
+ padding: 8px;
952
+ border: none;
953
+ }
954
+
955
+ .reply {
956
+ display: inline-block;
957
+ background:#2a78a8;
958
+ border-radius:3px;
959
+ padding: 2px 9px;
960
+ margin-right: 10px;
961
+ text-align: center;
962
+ }
963
+
964
+ .reply a {
965
+ display: block;
966
+ text-decoration: none;
967
+ color:#fff;
968
+ }
969
+
970
+ .commentmetadata a:hover,
971
+ .reply a:hover {
972
+ text-decoration: underline;
973
+ }
974
+
975
+ .commentmetadata a {
976
+ font-size: 0.9em;
977
+ text-decoration: none;
978
+ font-style: italic;
979
+ color:#000;
980
+ margin-bottom: 10px;
981
+ }
982
+
983
+ .no-comments{
984
+ font-family: 'Tangerine', cursive;
985
+ text-decoration: none;
986
+ font-weight: 700;
987
+ margin-bottom: 20px;
988
+ }
989
+
990
+ /* =Widgets
991
+ ----------------------------------------------- */
992
+
993
+ .widget {
994
+ margin: 0 0 1.5em;
995
+ color: #2a78a8;
996
+ }
997
+
998
+ .widget a {
999
+ color: #2a78a8;
1000
+ }
1001
+
1002
+ .widget a:focus,
1003
+ .widget a:hover,
1004
+ .widget a:active {
1005
+ color: #000;
1006
+ }
1007
+
1008
+ .widgettitle {
1009
+ font-family: 'Tangerine', cursive;
1010
+ font-size: 2.5em;
1011
+ text-decoration: none;
1012
+ font-weight: 700;
1013
+ color:#000;
1014
+ margin: 0;
1015
+ padding: 0;
1016
+ letter-spacing: 1px;
1017
+ }
1018
+
1019
+ /* Make sure select elements fit in widgets */
1020
+ .widget select {
1021
+ max-width: 100%;
1022
+ }
1023
+
1024
+ .widget ul {
1025
+ margin: 5px;
1026
+ }
1027
+
1028
+ .widget ul li {
1029
+ margin: 5px;
1030
+ }
1031
+
1032
+ #today {
1033
+ color:#000;
1034
+ }
1035
+
1036
+ .widget_search label {
1037
+ display: block;
1038
+ margin-bottom: 6px;
1039
+ }
1040
+
1041
+ /*
1042
+ Layout: Content-Sidebar
1043
+ */
1044
+ .content-area {
1045
+ float: left;
1046
+ margin: 0 -20% 0 0;
1047
+ width: 95%;
1048
+ }
1049
+
1050
+ .site-main {
1051
+ /*margin: 0 25% 0 0;*/
1052
+ background:#fff;
1053
+ border-radius: 8px;
1054
+ padding: 18px;
1055
+ }
1056
+
1057
+ .site-content .widget-area {
1058
+ float: right;
1059
+ overflow: hidden;
1060
+ width: 25%;
1061
+ background:#fff;
1062
+ border-radius:8px;
1063
+ padding: 18px;
1064
+ }
1065
+
1066
+ .site-footer {
1067
+ clear: both;
1068
+ width: 100%;
1069
+ margin: 0 auto;
1070
+ background: #1d415a;
1071
+ }
1072
+
1073
+ .site-info {
1074
+ width: 70%;
1075
+ margin: 0 auto;
1076
+ font-family: 'Tangerine', cursive;
1077
+ font-size: 1.6em;
1078
+ letter-spacing: 1px;
1079
+ margin-top: 3px;
1080
+ margin-bottom: 3px;
1081
+ color:#fff;
1082
+ background: url('../img/snow.png') left center no-repeat;
1083
+ }
1084
+
1085
+ .credits {
1086
+ margin-left: 60px;
1087
+ }
1088
+
1089
+ .site-info a {
1090
+ color:#fff;
1091
+ }
1092
+
1093
+ .site-info a:hover {
1094
+ text-decoration: none;
1095
+ }
1096
+
1097
+
1098
+ /*Responsive*/
1099
+ /* Small menu */
1100
+ a.menu-toggle {
1101
+ cursor: pointer;
1102
+ display: none;
1103
+ font-size: 2em;
1104
+ font-family: 'Tangerine', cursive;
1105
+ font-weight: normal;
1106
+ margin: 0;
1107
+ padding: 0;
1108
+ color:#2a78a8;
1109
+ text-decoration: underline;
1110
+ }
1111
+
1112
+ a.menu-toggle:hover {
1113
+ color:#000;
1114
+ }
1115
+
1116
+ @media screen and (max-width: 600px) {
1117
+ a.menu-toggle,
1118
+ .main-navigation.toggled .nav-menu {
1119
+ display: block;
1120
+ }
1121
+
1122
+ .site-description {
1123
+ font-size: 2em;
1124
+ }
1125
+
1126
+ .main-navigation ul {
1127
+ display: none;
1128
+ }
1129
+ }
1130
+
1131
+ @media screen and (max-width: 1280px) {
1132
+ .site-content {
1133
+ width: 90%;
1134
+ }
1135
+ }
1136
+
1137
+ @media screen and (max-width: 1024px) {
1138
+ .site-info,
1139
+ .site-content {
1140
+ width: 90%;
1141
+ }
1142
+
1143
+ .site-main,
1144
+ .content-area {
1145
+ width: 100%;
1146
+ }
1147
+
1148
+ .site-content .widget-area {
1149
+ width: 100%;
1150
+ margin-top:25px;
1151
+ }
1152
+
1153
+ .site-branding {
1154
+ background: none;
1155
+ }
1156
+
1157
+ }