jekyll-theme-horizon-flow 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +11 -14
- data/_config.yml +0 -10
- data/_includes/footer.html +12 -12
- data/_layouts/archive.html +6 -10
- data/_layouts/categories.html +5 -11
- data/_layouts/home.html +3 -2
- data/_layouts/search.html +1 -1
- data/_layouts/tags.html +6 -9
- data/_posts/2022-12-12-chatgpt-testpost-all-markdown-elements.md +1 -1
- data/_sass/default/_base.scss +33 -6
- data/_sass/default/_footer.scss +77 -47
- data/_sass/default/_header.scss +6 -12
- data/_sass/external/_normalize.scss +3 -0
- data/_sass/functions/_mixins.scss +94 -7
- data/_sass/functions/_values.scss +2 -0
- data/_sass/layouts/_archive.scss +4 -6
- data/_sass/layouts/_categories.scss +5 -4
- data/_sass/layouts/_home.scss +19 -39
- data/_sass/layouts/_post.scss +52 -18
- data/_sass/layouts/_tags.scss +5 -0
- metadata +7 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fd4a3025c5c7dee3341d1b781738590518af5ec7d17438132723a39a13758e9d
|
4
|
+
data.tar.gz: 8606bb51af10a0e4e3fbd022b2ce394d9cf299e9e06ccceb52f06741af34c29d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6f296954fdad793ba6945194ce91b40e1fc71933df88d0e4b07442084fcc3a6c5beb62c0f0af2a0d9a4564c793a36e3bce0de2a9db94e7df849d7813e2412301
|
7
|
+
data.tar.gz: 32617a1c81c5d929a9e6bf5c73d59f47e6d29bbec9f0dfc774e688e986eb5771bd7d8dac0ed07df6f2c030cbe8e3f1223cac2aefde9f58f187c4c13bd4efa024
|
data/README.md
CHANGED
@@ -1,7 +1,5 @@
|
|
1
1
|
# [Horizon Flow Jekyll Theme](https://papierkorp.github.io/jekyll-theme-horizon-flow/)
|
2
2
|
|
3
|
-
<!-- MarkdownTOC -->
|
4
|
-
|
5
3
|
- [Installation](#installation)
|
6
4
|
- [Configuration](#configuration)
|
7
5
|
- [Site URL](#site-url)
|
@@ -26,8 +24,6 @@
|
|
26
24
|
- [`layout: tags`](#layout-tags)
|
27
25
|
- [whislist](#whislist)
|
28
26
|
|
29
|
-
<!-- /MarkdownTOC -->
|
30
|
-
|
31
27
|
|
32
28
|
|
33
29
|
[![LICENSE](https://img.shields.io/badge/license-MIT-lightgrey.svg?style=flat-square)](https://raw.githubusercontent.com/papierkorp/jekyll-theme-horizon-flow/main/LICENSE.txt)
|
@@ -47,13 +43,10 @@ This theme can offer:
|
|
47
43
|
* offers an archive
|
48
44
|
* Carefully designed posts for almost all Markup elements
|
49
45
|
* Activateable TOC and to the TOP Buttons for each post
|
46
|
+
* Mobile Friendly
|
47
|
+
* Highly Customizable
|
50
48
|
|
51
49
|
![Horizon Flow Screenshots](https://papierkorp.github.io/jekyll-theme-horizon-flow/screenshot.png)
|
52
|
-
![Horizon Flow Screenshots](https://papierkorp.github.io/jekyll-theme-horizon-flow/post.png)
|
53
|
-
![Horizon Flow Screenshots](https://papierkorp.github.io/jekyll-theme-horizon-flow/post_toc.png)
|
54
|
-
![Horizon Flow Screenshots](https://papierkorp.github.io/jekyll-theme-horizon-flow/categories.png)
|
55
|
-
![Horizon Flow Screenshots](https://papierkorp.github.io/jekyll-theme-horizon-flow/tags.png)
|
56
|
-
![Horizon Flow Screenshots](https://papierkorp.github.io/jekyll-theme-horizon-flow/archive.png)
|
57
50
|
|
58
51
|
|
59
52
|
## Installation
|
@@ -417,25 +410,34 @@ footer_sidebar:
|
|
417
410
|
- recentposts # will be displayed last
|
418
411
|
description:
|
419
412
|
enabled: true # default: true
|
413
|
+
coluns: 2 # default: 2 - if you include a list
|
420
414
|
categories:
|
421
415
|
enabled: true # default: false
|
422
416
|
count: 100 # default: 100
|
417
|
+
columns: 5 # default: 5
|
423
418
|
tags:
|
424
419
|
enabled: true # default: false
|
425
420
|
count: 100 # default: 100
|
421
|
+
columns: 5 # default: 5
|
426
422
|
recentposts:
|
427
423
|
enabled: true # default: true
|
428
424
|
count: 10 # default: 10
|
425
|
+
columsn: 2 # default: 2
|
429
426
|
custom_content:
|
430
427
|
enabled: true
|
431
428
|
data: >-
|
432
429
|
<h3>EXTRACONTENT</h3>
|
433
430
|
<p>not really content though...</p>
|
431
|
+
columns: 2 # default: 2 - if you include a list
|
434
432
|
custom_content2:
|
435
433
|
enabled: false
|
436
434
|
data: "<h3>mhm</h3>"
|
435
|
+
columns: 2 # default: 2 - if you include a list
|
437
436
|
```
|
438
437
|
|
438
|
+
|
439
|
+
|
440
|
+
|
439
441
|
### Table of Contents
|
440
442
|
|
441
443
|
Take a look at the [Front Matter](#front-matter) on how to disable the TOC.
|
@@ -610,9 +612,4 @@ There is no front matter for it.
|
|
610
612
|
|
611
613
|
# whislist
|
612
614
|
|
613
|
-
- footer
|
614
|
-
+ make the columns in the footer-sidebar (tags, categories, recent posts) configurable
|
615
|
-
+ fix for mobile screens
|
616
|
-
- post
|
617
|
-
+ fix TOC for mobile screens
|
618
615
|
- more colors
|
data/_config.yml
CHANGED
@@ -63,19 +63,9 @@ navigation:
|
|
63
63
|
footer_sidebar:
|
64
64
|
arrangement:
|
65
65
|
- description
|
66
|
-
- tags
|
67
|
-
- categories
|
68
66
|
- recentposts
|
69
67
|
description:
|
70
68
|
enabled: true
|
71
|
-
categories:
|
72
|
-
enabled: true
|
73
|
-
count: 100
|
74
|
-
columns: 1
|
75
|
-
tags:
|
76
|
-
enabled: true
|
77
|
-
count: 100
|
78
|
-
columns: 3
|
79
69
|
recentposts:
|
80
70
|
enabled: true
|
81
71
|
count: 10
|
data/_includes/footer.html
CHANGED
@@ -13,19 +13,19 @@
|
|
13
13
|
<aside class="footer_sidebar">
|
14
14
|
{% for section in site.footer_sidebar.arrangement %}
|
15
15
|
{% if section == 'description' and site.footer_sidebar.description.enabled %}
|
16
|
-
<section class="footer_sitedescription">
|
16
|
+
<section class="footer_sitedescription footer_sitedescription{% if site.footer_sidebar.description.columns and site.footer_sidebar.description.columns >= 1 and site.footer_sidebar.description.columns <= 5 %}{{site.footer_sidebar.description.columns}}{% else %}2{% endif %}">
|
17
17
|
{{ site.description }}
|
18
18
|
</section>
|
19
|
-
{% elsif section == '
|
20
|
-
<section class="
|
21
|
-
{{ site.footer_sidebar.
|
19
|
+
{% elsif section == 'customcontent' and site.footer_sidebar.customcontent.enabled %}
|
20
|
+
<section class="footer_customcontent footer_customcontent{% if site.footer_sidebar.customcontent.columns and site.footer_sidebar.customcontent.columns >= 1 and site.footer_sidebar.customcontent.columns <= 5 %}{{site.footer_sidebar.customcontent.columns}}{% else %}2{% endif %}">
|
21
|
+
{{ site.footer_sidebar.customcontent.data }}
|
22
22
|
</section>
|
23
|
-
{% elsif section == '
|
24
|
-
<section class="
|
25
|
-
{{ site.footer_sidebar.
|
23
|
+
{% elsif section == 'customcontent2' and site.footer_sidebar.customcontent2.enabled %}
|
24
|
+
<section class="footer_customcontent2 footer_customcontent2{% if site.footer_sidebar.customcontent2.columns and site.footer_sidebar.customcontent2.columns >= 1 and site.footer_sidebar.customcontent2.columns <= 5 %}{{site.footer_sidebar.customcontent2.columns}}{% else %}2{% endif %}">
|
25
|
+
{{ site.footer_sidebar.customcontent2.data }}
|
26
26
|
</section>
|
27
27
|
{% elsif section == 'categories' and site.footer_sidebar.categories.enabled %}
|
28
|
-
<section class="footer_categories">
|
28
|
+
<section class="footer_categories footer_categories{% if site.footer_sidebar.categories.columns and site.footer_sidebar.categories.columns >= 1 and site.footer_sidebar.categories.columns <= 5 %}{{site.footer_sidebar.categories.columns}}{% else %}5{% endif %}">
|
29
29
|
<h3>Categories</h3>
|
30
30
|
<ul>
|
31
31
|
{% assign all_categories = "" %}
|
@@ -46,7 +46,7 @@
|
|
46
46
|
</ul>
|
47
47
|
</section>
|
48
48
|
{% elsif section == 'tags' and site.footer_sidebar.tags.enabled %}
|
49
|
-
<section class="footer_tags">
|
49
|
+
<section class="footer_tags footer_tags{% if site.footer_sidebar.tags.columns and site.footer_sidebar.tags.columns >= 1 and site.footer_sidebar.tags.columns <= 5 %}{{site.footer_sidebar.tags.columns}}{% else %}5{% endif %}">
|
50
50
|
<h3>Tags</h3>
|
51
51
|
<ul>
|
52
52
|
{% assign all_tags = "" %}
|
@@ -67,7 +67,7 @@
|
|
67
67
|
</ul>
|
68
68
|
</section>
|
69
69
|
{% elsif section == 'recentposts' and site.footer_sidebar.recentposts.enabled %}
|
70
|
-
<section class="footer_recentposts">
|
70
|
+
<section class="footer_recentposts footer_recentposts{% if site.footer_sidebar.recentposts.columns and site.footer_sidebar.recentposts.columns >= 1 and site.footer_sidebar.recentposts.columns <= 5 %}{{site.footer_sidebar.recentposts.columns}}{% else %}2{% endif %}">
|
71
71
|
<h3>Recent Posts</h3>
|
72
72
|
<ul>
|
73
73
|
{% assign recentposts_count = site.footer_sidebar.recentposts.count | default: 10 %}
|
@@ -90,9 +90,9 @@
|
|
90
90
|
<div class="social-icons item3">
|
91
91
|
{% for link in site.footer_links %}
|
92
92
|
{% if link.icon %}
|
93
|
-
<a href="{{ link.url }}" class="{{ link.icon }}" target="_blank"></a>
|
93
|
+
<a href="{{ site.baseurl }}{{ link.url }}" class="{{ link.icon }}" target="_blank"></a>
|
94
94
|
{% else %}
|
95
|
-
<a href="{{ link.url }}">{{ link.title }}</a>
|
95
|
+
<a href="{{ site.baseurl }}{{ link.url }}">{{ link.title }}</a>
|
96
96
|
{% endif %}
|
97
97
|
{% unless forloop.last %}
|
98
98
|
<span class="divider"></span>
|
data/_layouts/archive.html
CHANGED
@@ -8,7 +8,7 @@ layout: default
|
|
8
8
|
|
9
9
|
{% if site.posts.size > 0 %}
|
10
10
|
<!-- show all years -->
|
11
|
-
<div class="archive_all_years{% if site.layouts.archive.columns and site.layouts.archive.columns >= 1 and site.layouts.archive.columns <= 5 %}{{site.layouts.archive.columns}}{% else %}2{% endif %}">
|
11
|
+
<div class="archive_all_years archive_all_years{% if site.layouts.archive.columns and site.layouts.archive.columns >= 1 and site.layouts.archive.columns <= 5 %}{{site.layouts.archive.columns}}{% else %}2{% endif %}">
|
12
12
|
<ul>
|
13
13
|
{% assign postsByYear = site.posts | group_by_exp: 'post', 'post.date | date: "%Y"' %}
|
14
14
|
{% for year in postsByYear %}
|
@@ -52,16 +52,12 @@ layout: default
|
|
52
52
|
|
53
53
|
<div class="archive_findresults">
|
54
54
|
|
55
|
-
|
55
|
+
|
56
56
|
|
57
|
-
|
58
|
-
|
59
|
-
</
|
60
|
-
|
61
|
-
<span>{{ post.date | date: "%b/%Y" }}</span>
|
62
|
-
</a>
|
63
|
-
|
64
|
-
</span>
|
57
|
+
<a class="archive_date" href="{{ site.baseurl }}{{ post.url }}">
|
58
|
+
<i class="archive_day">{{ post.date | date: "%d" }}</i>
|
59
|
+
<span>{{ post.date | date: "%b/%Y" }}</span>
|
60
|
+
</a>
|
65
61
|
|
66
62
|
<span class="archive_summary">
|
67
63
|
<h3>
|
data/_layouts/categories.html
CHANGED
@@ -17,7 +17,7 @@ layout: default
|
|
17
17
|
|
18
18
|
{% if sortedCategories.size > 0 %}
|
19
19
|
<!-- Show all categories sorted by count -->
|
20
|
-
<div class="categories_all{% if site.
|
20
|
+
<div class="categories_all categories_all{% if site.footer_sidebar.categories.columns and site.footer_sidebar.categories.columns >= 1 and site.footer_sidebar.categories.columns <= 5 %}{{site.footer_sidebar.categories.columns}}{% else %}3{% endif %}">
|
21
21
|
<ul>
|
22
22
|
{% for category in sortedCategories %}
|
23
23
|
{% assign categoryParts = category | split: '' %}
|
@@ -55,16 +55,10 @@ layout: default
|
|
55
55
|
|
56
56
|
{% for post in category[1] %}
|
57
57
|
<div class="categories_findresult">
|
58
|
-
<
|
59
|
-
|
60
|
-
<
|
61
|
-
|
62
|
-
</a>
|
63
|
-
<a href="{{ site.baseurl }}{{ post.url }}">
|
64
|
-
<span>{{ post.date | date: "%b/%Y" }}</span>
|
65
|
-
</a>
|
66
|
-
|
67
|
-
</span>
|
58
|
+
<a href="{{ site.baseurl }}{{ post.url }}" class="categories_date">
|
59
|
+
<i class="categories_day">{{ post.date | date: "%d" }}</i>
|
60
|
+
<span>{{ post.date | date: "%b/%Y" }}</span>
|
61
|
+
</a>
|
68
62
|
|
69
63
|
<span class="categories_summary">
|
70
64
|
<h3>
|
data/_layouts/home.html
CHANGED
@@ -42,16 +42,17 @@ layout: default
|
|
42
42
|
</p>
|
43
43
|
|
44
44
|
</article>
|
45
|
+
<hr class="article-divider">
|
45
46
|
{% endfor %}
|
46
47
|
|
47
48
|
<!-- Pagination links -->
|
48
49
|
<div class="pagination">
|
49
50
|
{% if paginator.previous_page %}
|
50
|
-
<a class="previous" href="{{ site.baseurl}}{{ paginator.previous_page_path }}"><span class="spanprevious"><i class="arrow
|
51
|
+
<a class="previous" href="{{ site.baseurl}}{{ paginator.previous_page_path }}"><span class="spanprevious"><i class="fa fa-arrow-left" title="previous page"></i></span></a>
|
51
52
|
{% endif %}
|
52
53
|
<p class="page_count">{{ paginator.page }} / {{ paginator.total_pages }}</p>
|
53
54
|
{% if paginator.next_page %}
|
54
|
-
<a class="next" href="{{ site.baseurl}}{{ paginator.next_page_path }}"><span class="spannext"><i class="arrow
|
55
|
+
<a class="next" href="{{ site.baseurl}}{{ paginator.next_page_path }}"><span class="spannext"><i class="fa fa-arrow-right" title="next page"></i></span></a>
|
55
56
|
{% endif %}
|
56
57
|
</div>
|
57
58
|
</section>
|
data/_layouts/search.html
CHANGED
@@ -9,7 +9,7 @@ layout: default
|
|
9
9
|
* Copyright 2015-2020, Christian Fei
|
10
10
|
* Licensed under the MIT License.
|
11
11
|
*/
|
12
|
-
!function(){"use strict";var f={compile:function(r){return i.template.replace(i.pattern,function(t,e){var n=i.middleware(e,r[e],i.template);return void 0!==n?n:r[e]||t})},setOptions:function(t){i.pattern=t.pattern||i.pattern,i.template=t.template||i.template,"function"==typeof t.middleware&&(i.middleware=t.middleware)}};const i={pattern:/\{(.*?)\}/g,template:"",middleware:function(){}};var n=function(t,e){var n=e.length,r=t.length;if(n<r)return!1;if(r===n)return t===e;t:for(var i=0,o=0;i<r;i++){for(var u=t.charCodeAt(i);o<n;)if(e.charCodeAt(o++)===u)continue t;return!1}return!0},e=new function(){this.matches=function(t,e){return n(e.toLowerCase(),t.toLowerCase())}},r=new function(){this.matches=function(e,t){return!!e&&(e=e.trim().toLowerCase(),(t=t.trim().toLowerCase()).split(" ").filter(function(t){return 0<=e.indexOf(t)}).length===t.split(" ").length)}},d={put:function(t){if(l(t))return a(t);if(function(t){return Boolean(t)&&"[object Array]"===Object.prototype.toString.call(t)}(t))return function(n){const r=[];s();for(let t=0,e=n.length;t<e;t++)l(n[t])&&r.push(a(n[t]));return r}(t);return undefined},clear:s,search:function(t){return t?function(e,n,r,i){const o=[];for(let t=0;t<e.length&&o.length<i.limit;t++){var u=function(t,e,n,r){for(const i in t)if(!function(n,r){for(let t=0,e=r.length;t<e;t++){var i=r[t];if(new RegExp(i).test(n))return!0}return!1}(t[i],r.exclude)&&n.matches(t[i],e))return t}(e[t],n,r,i);u&&o.push(u)}return o}(u,t,c.searchStrategy,c).sort(c.sort):[]},setOptions:function(t){c=t||{},c.fuzzy=t.fuzzy||!1,c.limit=t.limit||10,c.searchStrategy=t.fuzzy?e:r,c.sort=t.sort||o,c.exclude=t.exclude||[]}};function o(){return 0}const u=[];let c={};function s(){return u.length=0,u}function l(t){return Boolean(t)&&"[object Object]"===Object.prototype.toString.call(t)}function a(t){return u.push(t),u}c.fuzzy=!1,c.limit=10,c.searchStrategy=c.fuzzy?e:r,c.sort=o,c.exclude=[];var p={load:function(t,e){const n=window.XMLHttpRequest?new window.XMLHttpRequest:new ActiveXObject("Microsoft.XMLHTTP");n.open("GET",t,!0),n.onreadystatechange=h(n,e),n.send()}};function h(e,n){return function(){if(4===e.readyState&&200===e.status)try{n(null,JSON.parse(e.responseText))}catch(t){n(t,null)}}}var m=function y(t){if(!(e=t)||!("undefined"!=typeof e.required&&e.required instanceof Array))throw new Error("-- OptionsValidator: required options missing");var e;if(!(this instanceof y))return new y(t);const r=t.required;this.getRequiredOptions=function(){return r},this.validate=function(e){const n=[];return r.forEach(function(t){"undefined"==typeof e[t]&&n.push(t)}),n}},w={merge:function(t,e){const n={};for(const r in t)n[r]=t[r],"undefined"!=typeof e[r]&&(n[r]=e[r]);return n},isJSON:function(t){try{return t instanceof Object&&JSON.parse(JSON.stringify(t))?!0:!1}catch(e){return!1}}};!function(t){let i={searchInput:null,resultsContainer:null,json:[],success:Function.prototype,searchResultTemplate:'<div class="single_result"><div class="search_findresults"><
|
12
|
+
!function(){"use strict";var f={compile:function(r){return i.template.replace(i.pattern,function(t,e){var n=i.middleware(e,r[e],i.template);return void 0!==n?n:r[e]||t})},setOptions:function(t){i.pattern=t.pattern||i.pattern,i.template=t.template||i.template,"function"==typeof t.middleware&&(i.middleware=t.middleware)}};const i={pattern:/\{(.*?)\}/g,template:"",middleware:function(){}};var n=function(t,e){var n=e.length,r=t.length;if(n<r)return!1;if(r===n)return t===e;t:for(var i=0,o=0;i<r;i++){for(var u=t.charCodeAt(i);o<n;)if(e.charCodeAt(o++)===u)continue t;return!1}return!0},e=new function(){this.matches=function(t,e){return n(e.toLowerCase(),t.toLowerCase())}},r=new function(){this.matches=function(e,t){return!!e&&(e=e.trim().toLowerCase(),(t=t.trim().toLowerCase()).split(" ").filter(function(t){return 0<=e.indexOf(t)}).length===t.split(" ").length)}},d={put:function(t){if(l(t))return a(t);if(function(t){return Boolean(t)&&"[object Array]"===Object.prototype.toString.call(t)}(t))return function(n){const r=[];s();for(let t=0,e=n.length;t<e;t++)l(n[t])&&r.push(a(n[t]));return r}(t);return undefined},clear:s,search:function(t){return t?function(e,n,r,i){const o=[];for(let t=0;t<e.length&&o.length<i.limit;t++){var u=function(t,e,n,r){for(const i in t)if(!function(n,r){for(let t=0,e=r.length;t<e;t++){var i=r[t];if(new RegExp(i).test(n))return!0}return!1}(t[i],r.exclude)&&n.matches(t[i],e))return t}(e[t],n,r,i);u&&o.push(u)}return o}(u,t,c.searchStrategy,c).sort(c.sort):[]},setOptions:function(t){c=t||{},c.fuzzy=t.fuzzy||!1,c.limit=t.limit||10,c.searchStrategy=t.fuzzy?e:r,c.sort=t.sort||o,c.exclude=t.exclude||[]}};function o(){return 0}const u=[];let c={};function s(){return u.length=0,u}function l(t){return Boolean(t)&&"[object Object]"===Object.prototype.toString.call(t)}function a(t){return u.push(t),u}c.fuzzy=!1,c.limit=10,c.searchStrategy=c.fuzzy?e:r,c.sort=o,c.exclude=[];var p={load:function(t,e){const n=window.XMLHttpRequest?new window.XMLHttpRequest:new ActiveXObject("Microsoft.XMLHTTP");n.open("GET",t,!0),n.onreadystatechange=h(n,e),n.send()}};function h(e,n){return function(){if(4===e.readyState&&200===e.status)try{n(null,JSON.parse(e.responseText))}catch(t){n(t,null)}}}var m=function y(t){if(!(e=t)||!("undefined"!=typeof e.required&&e.required instanceof Array))throw new Error("-- OptionsValidator: required options missing");var e;if(!(this instanceof y))return new y(t);const r=t.required;this.getRequiredOptions=function(){return r},this.validate=function(e){const n=[];return r.forEach(function(t){"undefined"==typeof e[t]&&n.push(t)}),n}},w={merge:function(t,e){const n={};for(const r in t)n[r]=t[r],"undefined"!=typeof e[r]&&(n[r]=e[r]);return n},isJSON:function(t){try{return t instanceof Object&&JSON.parse(JSON.stringify(t))?!0:!1}catch(e){return!1}}};!function(t){let i={searchInput:null,resultsContainer:null,json:[],success:Function.prototype,searchResultTemplate:'<div class="single_result"><div class="search_findresults"><a href="{url}" class="search_date"><i class="search_day">{date_day}</i>{date_my}</a><span class="search_summary"><h3><a href="{url}">{title}</a></h3>{summary}</span></div></div>',templateMiddleware:Function.prototype,sortMiddleware:function(){return 0},noResultsText:"No results found",limit:10,fuzzy:!1,debounceTime:null,exclude:[]},n;const e=function(t,e){e?(clearTimeout(n),n=setTimeout(t,e)):t.call()};var r=["searchInput","resultsContainer","json"];const o=m({required:r});function u(t){d.put(t),i.searchInput.addEventListener("input",function(t){-1===[13,16,20,37,38,39,40,91].indexOf(t.which)&&(c(),e(function(){l(t.target.value)},i.debounceTime))})}function c(){i.resultsContainer.innerHTML=""}function s(t){i.resultsContainer.innerHTML+=t}function l(t){var e;(e=t)&&0<e.length&&(c(),function(e,n){var r=e.length;if(0===r)return s(i.noResultsText);for(let t=0;t<r;t++)e[t].query=n,s(f.compile(e[t]))}(d.search(t),t))}function a(t){throw new Error("SimpleJekyllSearch --- "+t)}t.SimpleJekyllSearch=function(t){var n;0<o.validate(t).length&&a("You must specify the following required options: "+r),i=w.merge(i,t),f.setOptions({template:i.searchResultTemplate,middleware:i.templateMiddleware}),d.setOptions({fuzzy:i.fuzzy,limit:i.limit,sort:i.sortMiddleware,exclude:i.exclude}),w.isJSON(i.json)?u(i.json):(n=i.json,p.load(n,function(t,e){t&&a("failed to get JSON ("+n+")"),u(e)}));t={search:l};return"function"==typeof i.success&&i.success.call(t),t}}(window)}();
|
13
13
|
</script>
|
14
14
|
|
15
15
|
|
data/_layouts/tags.html
CHANGED
@@ -17,7 +17,7 @@ layout: default
|
|
17
17
|
|
18
18
|
{% if sortedTags.size > 0 %}
|
19
19
|
<!-- Show all tags sorted by count -->
|
20
|
-
<div class="tags_all{% if site.layouts.tags.columns and site.layouts.tags.columns >= 1 and site.layouts.tags.columns <= 5 %}{{site.layouts.tags.columns}}{% else %}4{% endif %}">
|
20
|
+
<div class="tags_all tags_all{% if site.layouts.tags.columns and site.layouts.tags.columns >= 1 and site.layouts.tags.columns <= 5 %}{{site.layouts.tags.columns}}{% else %}4{% endif %}">
|
21
21
|
<ul>
|
22
22
|
{% for tag in sortedTags %}
|
23
23
|
{% assign tagParts = tag | split: '' %}
|
@@ -53,14 +53,11 @@ layout: default
|
|
53
53
|
|
54
54
|
{% for post in tag[1] %}
|
55
55
|
<div class="tags_findresult">
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
</
|
60
|
-
|
61
|
-
<span>{{ post.date | date: "%b/%Y" }}</span>
|
62
|
-
</a>
|
63
|
-
</span>
|
56
|
+
|
57
|
+
<a href="{{ site.baseurl }}{{ post.url }}" class="tags_date">
|
58
|
+
<i class="tags_day">{{ post.date | date: "%d" }}</i>
|
59
|
+
<span>{{ post.date | date: "%b/%Y" }}</span>
|
60
|
+
</a>
|
64
61
|
|
65
62
|
<span class="tags_summary">
|
66
63
|
<h3>
|
data/_sass/default/_base.scss
CHANGED
@@ -6,7 +6,6 @@
|
|
6
6
|
|
7
7
|
html {
|
8
8
|
height: 100%;
|
9
|
-
//overflow-x: hidden;
|
10
9
|
}
|
11
10
|
|
12
11
|
body {
|
@@ -14,18 +13,46 @@ body {
|
|
14
13
|
width: 100%;
|
15
14
|
position: relative;
|
16
15
|
margin: 0;
|
17
|
-
display: flex;
|
18
|
-
flex-direction: column;
|
19
16
|
background-color: $background-color;
|
20
17
|
overflow-x: hidden;
|
18
|
+
display: flex;
|
19
|
+
flex-direction: column;
|
20
|
+
word-break: break-word;
|
21
21
|
}
|
22
22
|
|
23
|
-
|
24
|
-
|
25
|
-
|
23
|
+
header {
|
24
|
+
position: fixed;
|
25
|
+
margin: auto;
|
26
|
+
top: 0;
|
27
|
+
left: 0;
|
28
|
+
right: 0;
|
29
|
+
width: 100%;
|
30
|
+
font-size: 1.1em;
|
31
|
+
z-index: 100;
|
26
32
|
}
|
27
33
|
|
28
34
|
main {
|
29
35
|
max-width: 70%;
|
30
36
|
margin: 5rem auto;
|
37
|
+
flex: 1;
|
38
|
+
}
|
39
|
+
|
40
|
+
|
41
|
+
footer {
|
42
|
+
width: 100%;
|
43
|
+
color: $background-color;
|
44
|
+
margin-top: 4em;
|
45
|
+
flex-shrink: 0;
|
46
|
+
}
|
47
|
+
|
48
|
+
|
49
|
+
// @media (width >= $small) and (max-width: $large)
|
50
|
+
@media screen and (max-width: $large) {
|
51
|
+
body {
|
52
|
+
font-size: 2.5em;
|
53
|
+
}
|
54
|
+
|
55
|
+
main {
|
56
|
+
margin-top: 8rem;
|
57
|
+
}
|
31
58
|
}
|
data/_sass/default/_footer.scss
CHANGED
@@ -1,20 +1,9 @@
|
|
1
|
-
footer {
|
2
|
-
width: 100%;
|
3
|
-
color: $background-color;
|
4
|
-
font-size: 0.8em;
|
5
|
-
margin-top: auto;
|
6
|
-
}
|
7
|
-
|
8
1
|
footer ul {
|
9
2
|
list-style-type: none;
|
10
3
|
margin: 0;
|
11
4
|
padding: 0;
|
12
5
|
}
|
13
6
|
|
14
|
-
footer ul li {
|
15
|
-
padding-bottom: 0.2em;
|
16
|
-
}
|
17
|
-
|
18
7
|
footer a {
|
19
8
|
@include links($background-color);
|
20
9
|
padding: 0;
|
@@ -53,6 +42,7 @@ footer .social-icons .divider::before {
|
|
53
42
|
font-size: 0.8em;
|
54
43
|
}
|
55
44
|
|
45
|
+
|
56
46
|
/* ---------------------------------------------------- */
|
57
47
|
/* ---------------------------------------------------- */
|
58
48
|
/* footer sidebar */
|
@@ -111,52 +101,92 @@ footer aside section:first-child {
|
|
111
101
|
padding: 0;
|
112
102
|
}
|
113
103
|
|
104
|
+
.footer_sitedescription1,
|
105
|
+
.footer_customcontent1,
|
106
|
+
.footer_customcontent21,
|
107
|
+
.footer_recentposts1,
|
108
|
+
.footer_categories1,
|
109
|
+
.footer_tags1 {
|
110
|
+
@include footer_elements(1);
|
111
|
+
}
|
114
112
|
|
113
|
+
.footer_sitedescription2,
|
114
|
+
.footer_customcontent2,
|
115
|
+
.footer_customcontent22,
|
116
|
+
.footer_recentposts2,
|
117
|
+
.footer_categories2,
|
118
|
+
.footer_tags2 {
|
119
|
+
@include footer_elements(2);
|
120
|
+
}
|
115
121
|
|
116
|
-
.
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
a {
|
125
|
-
text-decoration: none;
|
126
|
-
color: $background-color;
|
127
|
-
letter-spacing: -1px;
|
128
|
-
width: 100%;
|
129
|
-
cursor: pointer;
|
130
|
-
}
|
122
|
+
.footer_sitedescription3,
|
123
|
+
.footer_customcontent3,
|
124
|
+
.footer_customcontent23,
|
125
|
+
.footer_recentposts3,
|
126
|
+
.footer_categories3,
|
127
|
+
.footer_tags3 {
|
128
|
+
@include footer_elements(3);
|
131
129
|
}
|
132
130
|
|
133
|
-
.
|
131
|
+
.footer_sitedescription4,
|
132
|
+
.footer_customcontent4,
|
133
|
+
.footer_customcontent24,
|
134
|
+
.footer_recentposts4,
|
135
|
+
.footer_categories4,
|
136
|
+
.footer_tags4 {
|
137
|
+
@include footer_elements(4);
|
138
|
+
}
|
134
139
|
|
140
|
+
.footer_sitedescription5,
|
141
|
+
.footer_customcontent5,
|
142
|
+
.footer_customcontent25,
|
143
|
+
.footer_recentposts5,
|
144
|
+
.footer_categories5,
|
145
|
+
.footer_tags5 {
|
146
|
+
@include footer_elements(5);
|
135
147
|
}
|
136
148
|
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
columns: 2;
|
149
|
+
|
150
|
+
|
151
|
+
@media (width >= $small) and (max-width: $large) {
|
152
|
+
footer {
|
153
|
+
font-size: 1.5em;
|
143
154
|
}
|
144
155
|
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
156
|
+
footer .social-icons {
|
157
|
+
flex-wrap: wrap; /* Allow the icons to wrap to the next line */
|
158
|
+
}
|
159
|
+
|
160
|
+
footer .social-icons > * {
|
161
|
+
margin: 0.5em 0.5em; /* Adjust the margin as needed */
|
162
|
+
}
|
163
|
+
|
164
|
+
footer aside {
|
165
|
+
flex-direction: column;
|
166
|
+
}
|
167
|
+
|
168
|
+
footer li {
|
169
|
+
width: 100%;
|
170
|
+
}
|
171
|
+
|
172
|
+
.footer_sitedescription, .footer_customcontent, .footer_customcontent2, .footer_recentposts, .footer_categories, .footer_tags {
|
173
|
+
ul li {
|
174
|
+
width: 100%;
|
175
|
+
}
|
151
176
|
}
|
152
|
-
}
|
153
177
|
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
178
|
+
footer aside section:first-child:nth-last-child(1),
|
179
|
+
footer aside section:first-child:nth-last-child(2),
|
180
|
+
footer aside section:first-child:nth-last-child(2) ~ section,
|
181
|
+
footer aside section:first-child:nth-last-child(3),
|
182
|
+
footer aside section:first-child:nth-last-child(3) ~ section,
|
183
|
+
footer aside section:first-child:nth-last-child(4),
|
184
|
+
footer aside section:first-child:nth-last-child(4) ~ section,
|
185
|
+
footer aside section:first-child:nth-last-child(5),
|
186
|
+
footer aside section:first-child:nth-last-child(5) ~ section,
|
187
|
+
footer aside section:first-child {
|
188
|
+
padding: 0 0 0 1em;
|
189
|
+
flex-grow: 1;
|
190
|
+
max-width: 100%;
|
161
191
|
}
|
162
192
|
}
|
data/_sass/default/_header.scss
CHANGED
@@ -1,15 +1,3 @@
|
|
1
|
-
header {
|
2
|
-
position: fixed;
|
3
|
-
margin: auto;
|
4
|
-
top: 0;
|
5
|
-
left: 0;
|
6
|
-
right: 0;
|
7
|
-
width: 100%;
|
8
|
-
font-size: 1.1em;
|
9
|
-
z-index: 100;
|
10
|
-
}
|
11
|
-
|
12
|
-
|
13
1
|
header nav {
|
14
2
|
background-color: $primary-color;
|
15
3
|
width: fit-content;
|
@@ -60,3 +48,9 @@ nav li a {
|
|
60
48
|
margin: 0;
|
61
49
|
padding: 0;
|
62
50
|
}
|
51
|
+
|
52
|
+
@media (width >= $small) and (max-width: $large) {
|
53
|
+
header {
|
54
|
+
font-size: 1em;
|
55
|
+
}
|
56
|
+
}
|
@@ -36,7 +36,7 @@
|
|
36
36
|
text-shadow: 0px 2px 4px rgba(100,100,100,0.5);
|
37
37
|
color: $primary-color;
|
38
38
|
font-family: Inter;
|
39
|
-
font-size:
|
39
|
+
font-size: 3em;
|
40
40
|
font-weight: 700;
|
41
41
|
text-align: center;
|
42
42
|
margin-top: 0;
|
@@ -70,6 +70,13 @@
|
|
70
70
|
text-decoration: none;
|
71
71
|
font-weight: bold;
|
72
72
|
}
|
73
|
+
|
74
|
+
@media screen and (max-width: $large) {
|
75
|
+
font-size: 1em;
|
76
|
+
flex-wrap: wrap;
|
77
|
+
}
|
78
|
+
|
79
|
+
|
73
80
|
}
|
74
81
|
|
75
82
|
@mixin findresults_day() {
|
@@ -90,8 +97,17 @@
|
|
90
97
|
display: flex;
|
91
98
|
flex-direction: column;
|
92
99
|
align-items: center;
|
93
|
-
gap: -5px;
|
100
|
+
// gap: -5px;
|
94
101
|
margin: auto;
|
102
|
+
min-width: 6em;
|
103
|
+
|
104
|
+
@media screen and (max-width: $large) {
|
105
|
+
border: 1px solid black;
|
106
|
+
background-color: $secondary-color;
|
107
|
+
border-radius: 500px;
|
108
|
+
padding: 1em;
|
109
|
+
}
|
110
|
+
|
95
111
|
}
|
96
112
|
|
97
113
|
@mixin findresults_summary() {
|
@@ -101,6 +117,12 @@
|
|
101
117
|
a:hover {
|
102
118
|
@include hover();
|
103
119
|
}
|
120
|
+
|
121
|
+
@media screen and (max-width: $large) {
|
122
|
+
margin-top: 1em;
|
123
|
+
padding-bottom: 3em;
|
124
|
+
border-bottom: 1px dotted $primary-color;
|
125
|
+
}
|
104
126
|
}
|
105
127
|
|
106
128
|
@mixin showlinks($rows: 4) {
|
@@ -108,11 +130,11 @@
|
|
108
130
|
content: "";
|
109
131
|
display: block;
|
110
132
|
border-top: 1px solid $secondary-color;
|
111
|
-
|
112
|
-
|
113
|
-
margin
|
114
|
-
|
115
|
-
|
133
|
+
width: 98vw;
|
134
|
+
height: 0px;
|
135
|
+
margin: 4em 0;
|
136
|
+
position: relative;
|
137
|
+
left: -20%;
|
116
138
|
}
|
117
139
|
|
118
140
|
ul {
|
@@ -189,4 +211,69 @@
|
|
189
211
|
}
|
190
212
|
}
|
191
213
|
}
|
214
|
+
}
|
215
|
+
|
216
|
+
|
217
|
+
@mixin footer_elements($rows: 5) {
|
218
|
+
ul {
|
219
|
+
list-style: none;
|
220
|
+
padding: 0;
|
221
|
+
margin: 0;
|
222
|
+
display: flex;
|
223
|
+
flex-wrap: wrap;
|
224
|
+
row-gap: 0;
|
225
|
+
column-gap: 0;
|
226
|
+
|
227
|
+
// Each item takes half of the container width minus the gap
|
228
|
+
@if $rows == 1 {
|
229
|
+
li {
|
230
|
+
width: calc(100% - 1rem);
|
231
|
+
}
|
232
|
+
} @else if $rows == 2 {
|
233
|
+
li {
|
234
|
+
width: calc(50% - 1rem);
|
235
|
+
}
|
236
|
+
} @else if $rows == 3 {
|
237
|
+
li {
|
238
|
+
width: calc(33.33% - 1rem);
|
239
|
+
}
|
240
|
+
} @else if $rows == 4 {
|
241
|
+
li {
|
242
|
+
width: calc(25% - 1rem);
|
243
|
+
}
|
244
|
+
} @else if $rows == 5 {
|
245
|
+
li {
|
246
|
+
width: calc(20% - 1rem);
|
247
|
+
}
|
248
|
+
}
|
249
|
+
|
250
|
+
li {
|
251
|
+
display: flex;
|
252
|
+
justify-content: space-between;
|
253
|
+
align-items: left;
|
254
|
+
cursor: pointer;
|
255
|
+
overflow-wrap: break-word;
|
256
|
+
|
257
|
+
a {
|
258
|
+
text-decoration: none;
|
259
|
+
color: $background-color;
|
260
|
+
text-transform: lowercase;
|
261
|
+
letter-spacing: -1px;
|
262
|
+
width: 100%;
|
263
|
+
display: flex;
|
264
|
+
justify-content: space-between;
|
265
|
+
padding: 0.5em;
|
266
|
+
text-align: left;
|
267
|
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
268
|
+
|
269
|
+
&:hover {
|
270
|
+
@include hover();
|
271
|
+
}
|
272
|
+
}
|
273
|
+
|
274
|
+
.archive_linktitle {
|
275
|
+
flex: 1;
|
276
|
+
}
|
277
|
+
}
|
278
|
+
}
|
192
279
|
}
|
data/_sass/layouts/_archive.scss
CHANGED
@@ -13,10 +13,6 @@
|
|
13
13
|
/* ---------------------------------------------------- */
|
14
14
|
|
15
15
|
|
16
|
-
.archive_all_years {
|
17
|
-
@include showlinks(2);
|
18
|
-
}
|
19
|
-
|
20
16
|
.archive_all_years1 {
|
21
17
|
@include showlinks(1);
|
22
18
|
}
|
@@ -33,8 +29,10 @@
|
|
33
29
|
@include showlinks(4);
|
34
30
|
}
|
35
31
|
|
36
|
-
|
37
|
-
|
32
|
+
@media screen and (max-width: $large) {
|
33
|
+
.archive_all_years {
|
34
|
+
@include showlinks(1);
|
35
|
+
}
|
38
36
|
}
|
39
37
|
|
40
38
|
/* ---------------------------------------------------- */
|
@@ -13,10 +13,6 @@
|
|
13
13
|
/* ---------------------------------------------------- */
|
14
14
|
|
15
15
|
|
16
|
-
.categories_all {
|
17
|
-
@include showlinks(3);
|
18
|
-
}
|
19
|
-
|
20
16
|
.categories_all1 {
|
21
17
|
@include showlinks(1);
|
22
18
|
}
|
@@ -37,6 +33,11 @@
|
|
37
33
|
@include showlinks(5);
|
38
34
|
}
|
39
35
|
|
36
|
+
@media screen and (max-width: $large) {
|
37
|
+
.categories_all {
|
38
|
+
@include showlinks(1);
|
39
|
+
}
|
40
|
+
}
|
40
41
|
|
41
42
|
/* ---------------------------------------------------- */
|
42
43
|
/* ---------------------------------------------------- */
|
data/_sass/layouts/_home.scss
CHANGED
@@ -9,21 +9,21 @@
|
|
9
9
|
/* ---------------------------------------------------- */
|
10
10
|
// Supplements = Date + Tags
|
11
11
|
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
12
|
+
#home {
|
13
|
+
.article-divider {
|
14
|
+
width: 98vw;
|
15
|
+
height: 0px;
|
16
16
|
border-top: 1px dashed $secondary-color;
|
17
|
-
margin
|
18
|
-
|
19
|
-
|
20
|
-
width: 200vw; //only working with overflow-x: hidden; in body in _base.scss
|
17
|
+
margin: 4em 0;
|
18
|
+
position: relative;
|
19
|
+
left: -20%;
|
21
20
|
}
|
21
|
+
}
|
22
22
|
|
23
|
-
|
23
|
+
.single_article {
|
24
24
|
h3 {
|
25
25
|
//font-family: Inter;
|
26
|
-
font-size:
|
26
|
+
font-size: 2em;
|
27
27
|
font-weight: 700;
|
28
28
|
letter-spacing: 2px;
|
29
29
|
margin: 0;
|
@@ -49,7 +49,6 @@
|
|
49
49
|
|
50
50
|
.summary {
|
51
51
|
margin-top: 2em;
|
52
|
-
margin-bottom: 4em;
|
53
52
|
}
|
54
53
|
|
55
54
|
.supplements-sep::before {
|
@@ -68,6 +67,11 @@
|
|
68
67
|
.pagination {
|
69
68
|
display: flex;
|
70
69
|
justify-content: space-between;
|
70
|
+
color: $primary-color;
|
71
|
+
|
72
|
+
a {
|
73
|
+
color: $primary-color;
|
74
|
+
}
|
71
75
|
|
72
76
|
|
73
77
|
.page_count {
|
@@ -75,21 +79,14 @@
|
|
75
79
|
}
|
76
80
|
|
77
81
|
.spannext {
|
78
|
-
padding
|
79
|
-
|
80
|
-
border: 1px solid black;
|
81
|
-
padding-top: 0;
|
82
|
-
padding-bottom: 5px;
|
82
|
+
padding: 5px 15px;
|
83
|
+
border: 1px solid $primary-color;
|
83
84
|
height: 1em;
|
84
|
-
position: relative;
|
85
85
|
}
|
86
86
|
|
87
87
|
.spanprevious {
|
88
|
-
padding
|
89
|
-
|
90
|
-
border: 1px solid black;
|
91
|
-
padding-top: 0;
|
92
|
-
padding-bottom: 5px;
|
88
|
+
padding: 5px 15px;
|
89
|
+
border: 1px solid $primary-color;
|
93
90
|
height: 1em;
|
94
91
|
}
|
95
92
|
|
@@ -100,21 +97,4 @@
|
|
100
97
|
.previous {
|
101
98
|
float: left;
|
102
99
|
}
|
103
|
-
|
104
|
-
.arrow {
|
105
|
-
border: solid $primary-color;
|
106
|
-
border-width: 0 3px 3px 0;
|
107
|
-
display: inline-block;
|
108
|
-
padding: 3px;
|
109
|
-
}
|
110
|
-
|
111
|
-
.right {
|
112
|
-
transform: rotate(-45deg);
|
113
|
-
-webkit-transform: rotate(-45deg);
|
114
|
-
}
|
115
|
-
|
116
|
-
.left {
|
117
|
-
transform: rotate(135deg);
|
118
|
-
-webkit-transform: rotate(135deg);
|
119
|
-
}
|
120
100
|
}
|
data/_sass/layouts/_post.scss
CHANGED
@@ -26,6 +26,7 @@
|
|
26
26
|
margin-top: 3em;
|
27
27
|
background-color: $background-color;
|
28
28
|
margin-left: calc(-1em + 5px);; // 14px*2 padding - 5px border
|
29
|
+
overflow-wrap: break-word;
|
29
30
|
}
|
30
31
|
|
31
32
|
|
@@ -167,7 +168,6 @@
|
|
167
168
|
/* ---------------------------------------------------- */
|
168
169
|
/* ---------------------------------------------------- */
|
169
170
|
|
170
|
-
|
171
171
|
article {
|
172
172
|
position: relative;
|
173
173
|
}
|
@@ -192,7 +192,7 @@ article {
|
|
192
192
|
position: fixed;
|
193
193
|
bottom: 0;
|
194
194
|
right: 0;
|
195
|
-
padding:
|
195
|
+
padding: 1rem; /* Adjust padding as needed */
|
196
196
|
z-index: 1;
|
197
197
|
}
|
198
198
|
|
@@ -200,11 +200,10 @@ article {
|
|
200
200
|
display: block;
|
201
201
|
border: 1px solid $primary-color;
|
202
202
|
position: fixed;
|
203
|
-
top:
|
204
|
-
right:
|
205
|
-
bottom: 1em;
|
203
|
+
top: 3vw; /* Adjust top, right, bottom, and left as needed */
|
204
|
+
right: 3vw;
|
206
205
|
min-width: 10vw;
|
207
|
-
max-width:
|
206
|
+
max-width: 40vw;
|
208
207
|
background-color: $background-color;
|
209
208
|
z-index: 1;
|
210
209
|
overflow-x: hidden;
|
@@ -212,30 +211,32 @@ article {
|
|
212
211
|
max-height: 80vh;
|
213
212
|
|
214
213
|
h1 {
|
215
|
-
text-shadow: 0px
|
214
|
+
text-shadow: 0px 0.1em 0.2em rgba(100, 100, 100, 0.5); /* Adjust text-shadow as needed */
|
216
215
|
color: $primary-color;
|
217
216
|
font-size: 2em;
|
218
217
|
font-weight: bold;
|
219
|
-
letter-spacing:
|
218
|
+
letter-spacing: 1rem; /* Adjust letter-spacing as needed */
|
220
219
|
text-align: center;
|
221
220
|
}
|
222
221
|
|
223
222
|
ul {
|
224
223
|
list-style: none;
|
224
|
+
padding-left: 24px; /* Remove default list padding */
|
225
225
|
}
|
226
226
|
|
227
|
-
li a{
|
227
|
+
li a {
|
228
228
|
border-bottom: 1px dashed $secondary-color;
|
229
229
|
opacity: 0.8;
|
230
230
|
width: 80%;
|
231
231
|
display: block;
|
232
|
+
margin: 1rem auto; /* Adjust margin as needed */
|
232
233
|
}
|
233
234
|
|
234
235
|
a {
|
235
236
|
text-decoration: none;
|
236
237
|
color: $secondary-color;
|
237
238
|
font-size: 1em;
|
238
|
-
line-height: 1.
|
239
|
+
line-height: 1.5;
|
239
240
|
}
|
240
241
|
|
241
242
|
a:hover {
|
@@ -244,6 +245,38 @@ article {
|
|
244
245
|
}
|
245
246
|
|
246
247
|
|
248
|
+
@media screen and (max-width: $large) {
|
249
|
+
#tocMenuButtonLabel {
|
250
|
+
font-size: 1.5em;
|
251
|
+
padding: 0.5rem;
|
252
|
+
}
|
253
|
+
|
254
|
+
#tocMenuButton:checked ~ #tocContainer {
|
255
|
+
max-width: 80vw;
|
256
|
+
height: 80vh;
|
257
|
+
top: 10vw;
|
258
|
+
left: 10vw;
|
259
|
+
font-size: 1.5em;
|
260
|
+
|
261
|
+
h1 {
|
262
|
+
font-size: 1.5em;
|
263
|
+
letter-spacing: 0.5rem;
|
264
|
+
}
|
265
|
+
|
266
|
+
ul {
|
267
|
+
margin: 0;
|
268
|
+
}
|
269
|
+
|
270
|
+
li a {
|
271
|
+
margin: 0.5rem auto;
|
272
|
+
}
|
273
|
+
}
|
274
|
+
}
|
275
|
+
|
276
|
+
|
277
|
+
|
278
|
+
|
279
|
+
|
247
280
|
/* ---------------------------------------------------- */
|
248
281
|
/* ---------------------------------------------------- */
|
249
282
|
/* header layout */
|
@@ -252,14 +285,14 @@ article {
|
|
252
285
|
|
253
286
|
|
254
287
|
.post_header::after {
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
288
|
+
content: "";
|
289
|
+
display: block;
|
290
|
+
border-top: 1px solid $secondary-color;
|
291
|
+
width: 98vw;
|
292
|
+
height: 0px;
|
293
|
+
margin: 4em 0;
|
294
|
+
position: relative;
|
295
|
+
left: -20%;
|
263
296
|
}
|
264
297
|
|
265
298
|
#post article {
|
@@ -300,6 +333,7 @@ article {
|
|
300
333
|
.supplements a {
|
301
334
|
/* Set links to display as block-level elements so capitalize works*/
|
302
335
|
display: inline-block;
|
336
|
+
word-break: break-all;
|
303
337
|
&:hover {
|
304
338
|
@include hover();
|
305
339
|
}
|
data/_sass/layouts/_tags.scss
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-horizon-flow
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Markus Schiller
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-09-
|
11
|
+
date: 2023-09-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -175,8 +175,9 @@ requirements: []
|
|
175
175
|
rubygems_version: 3.3.5
|
176
176
|
signing_key:
|
177
177
|
specification_version: 4
|
178
|
-
summary: '"Horizon-Flow" is a
|
179
|
-
palette of blue, gray, and orange. It features a clean, sidebar-free layout,
|
180
|
-
all content in a single, flowing main container. The header remains fixed
|
181
|
-
scrolling, ensuring easy navigation.
|
178
|
+
summary: '"Horizon-Flow" is a mobile friendly Jekyll theme characterized by a serene
|
179
|
+
color palette of blue, gray, and orange. It features a clean, sidebar-free layout,
|
180
|
+
keeping all content in a single, flowing main container. The header remains fixed
|
181
|
+
even while scrolling, ensuring easy navigation. Allows Custom content to be displaye
|
182
|
+
in the footer and footer-sidebar.'
|
182
183
|
test_files: []
|