jekyll-bonsai 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +674 -0
- data/README.md +11 -0
- data/_config.yml +155 -0
- data/_entries/digital-garden.bonsai.md +36 -0
- data/_entries/digital-garden.field-logs.md +10 -0
- data/_entries/digital-garden.fork.md +10 -0
- data/_entries/digital-garden.md +17 -0
- data/_entries/digital-garden.path.md +11 -0
- data/_entries/digital-garden.plants.md +12 -0
- data/_entries/digital-garden.pollinate.md +10 -0
- data/_entries/digital-garden.steps.md +10 -0
- data/_entries/digital-garden.stream.md +12 -0
- data/_entries/digital-garden.sweep.md +12 -0
- data/_entries/digital-garden.weather.md +12 -0
- data/_entries/features.md +10 -0
- data/_entries/features.notes.hover-preview.md +10 -0
- data/_entries/features.notes.md +12 -0
- data/_entries/features.notes.note-body.md +12 -0
- data/_entries/features.notes.note-body.share.md +10 -0
- data/_entries/features.notes.note-body.sidenotes.md +52 -0
- data/_entries/features.notes.note-foot.links.md +10 -0
- data/_entries/features.notes.note-foot.md +11 -0
- data/_entries/features.notes.note-foot.posts.md +10 -0
- data/_entries/features.notes.note-foot.webmentions.md +10 -0
- data/_entries/features.notes.note-head.md +10 -0
- data/_entries/features.pages.field-blogs.md +10 -0
- data/_entries/features.pages.md +12 -0
- data/_entries/features.pages.recent.md +10 -0
- data/_entries/features.pages.status-tags.md +10 -0
- data/_entries/features.site-nav.graph.links.md +10 -0
- data/_entries/features.site-nav.graph.links.namespacing.md +14 -0
- data/_entries/features.site-nav.graph.links.wikilinks.md +25 -0
- data/_entries/features.site-nav.graph.md +12 -0
- data/_entries/features.site-nav.graph.nodes.current-note.md +10 -0
- data/_entries/features.site-nav.graph.nodes.md +12 -0
- data/_entries/features.site-nav.graph.nodes.mia.missing-note.md +20 -0
- data/_entries/features.site-nav.graph.nodes.visited-status.md +10 -0
- data/_entries/features.site-nav.graph.toggle-graph.md +13 -0
- data/_entries/features.site-nav.graph.type.md +16 -0
- data/_entries/features.site-nav.graph.type.net-web.md +10 -0
- data/_entries/features.site-nav.graph.type.tree.md +12 -0
- data/_entries/features.site-nav.md +10 -0
- data/_entries/features.site-nav.visited.md +14 -0
- data/_entries/features.tags.md +13 -0
- data/_entries/features.themes.dark.md +12 -0
- data/_entries/features.themes.light.md +10 -0
- data/_entries/features.themes.md +12 -0
- data/_entries/features.visited.delete-data.md +10 -0
- data/_entries/features.visited.md +12 -0
- data/_entries/features.visitor-preferences.md +27 -0
- data/_entries/feedback.md +10 -0
- data/_entries/people.creator.md +12 -0
- data/_entries/people.md +13 -0
- data/_entries/people.visitors.md +12 -0
- data/_entries/plugins.jekyll-wikilinks.md +10 -0
- data/_entries/plugins.md +10 -0
- data/_entries/root.md +26 -0
- data/_includes/anchor-headings.html +152 -0
- data/_includes/connect.html +44 -0
- data/_includes/entry-attrs.html +27 -0
- data/_includes/head.html +23 -0
- data/_includes/hover-preview.html +84 -0
- data/_includes/img/bullet-ancestor.svg +5 -0
- data/_includes/img/bullet-net-web.svg +9 -0
- data/_includes/img/bullet-tree.svg +9 -0
- data/_includes/metrics.html +10 -0
- data/_includes/share.html +45 -0
- data/_includes/site-nav.html +48 -0
- data/_includes/styles.scss.liquid +3 -0
- data/_layouts/default.html +39 -0
- data/_layouts/entry.html +124 -0
- data/_layouts/post.html +29 -0
- data/_layouts/state.html +59 -0
- data/_layouts/table-wrappers.html +7 -0
- data/_layouts/vendor/compress.html +10 -0
- data/_pages/about.md +7 -0
- data/_pages/posts.html +19 -0
- data/_pages/recent.html +48 -0
- data/_plugins/doc_filters.rb +44 -0
- data/_plugins/prep_entry.rb +43 -0
- data/_plugins/sidenote.rb +123 -0
- data/_plugins/tags.rb +52 -0
- data/_sass/base/_layout.scss +54 -0
- data/_sass/base/_main.scss +203 -0
- data/_sass/base/_typography.scss +75 -0
- data/_sass/base/base.scss +3 -0
- data/_sass/color/dark.scss +58 -0
- data/_sass/color/light.scss +58 -0
- data/_sass/includes/_btn.scss +106 -0
- data/_sass/includes/_graph.scss +69 -0
- data/_sass/includes/_nav.scss +89 -0
- data/_sass/includes/_site_nav.scss +221 -0
- data/_sass/includes/_tooltip.scss +29 -0
- data/_sass/includes/includes.scss +9 -0
- data/_sass/markdown/_code.scss +340 -0
- data/_sass/markdown/_content.scss +400 -0
- data/_sass/markdown/_tables.scss +60 -0
- data/_sass/markdown/markdown.scss +7 -0
- data/_sass/modules.scss +14 -0
- data/_sass/pages/_index.scss +72 -0
- data/_sass/pages/_posts.scss +17 -0
- data/_sass/pages/_recent.scss +26 -0
- data/_sass/pages/_state.scss +72 -0
- data/_sass/pages/pages.scss +4 -0
- data/_sass/support/_functions.scss +9 -0
- data/_sass/support/_variables.scss +179 -0
- data/_sass/support/mixins/_buttons.scss +27 -0
- data/_sass/support/mixins/_layout.scss +56 -0
- data/_sass/support/mixins/_typography.scss +84 -0
- data/_sass/support/mixins/mixins.scss +3 -0
- data/_sass/support/support.scss +3 -0
- data/_sass/vendor/normalize.scss/README.md +7 -0
- data/_sass/vendor/normalize.scss/normalize.scss +349 -0
- data/_states/bamboo.md +8 -0
- data/_states/berry.md +8 -0
- data/_states/bloom.md +8 -0
- data/_states/bud.md +6 -0
- data/_states/fruit.md +8 -0
- data/_states/melon.md +8 -0
- data/_states/pot-bamboo.md +8 -0
- data/_states/seed.md +8 -0
- data/_states/sprout.md +8 -0
- data/_states/tags.md +8 -0
- data/_states/tea.md +8 -0
- data/assets/css/styles-dark.scss +3 -0
- data/assets/css/styles-light.scss +3 -0
- data/assets/css/styles.scss +8 -0
- data/assets/font/Cutive_Mono/CutiveMono-Regular.ttf +0 -0
- data/assets/font/Cutive_Mono/OFL.txt +93 -0
- data/assets/font/Old_Standard_TT/OFL.txt +93 -0
- data/assets/font/Old_Standard_TT/OldStandardTT-Bold.ttf +0 -0
- data/assets/font/Old_Standard_TT/OldStandardTT-Italic.ttf +0 -0
- data/assets/font/Old_Standard_TT/OldStandardTT-Regular.ttf +0 -0
- data/assets/font/exo2/Exo2-Italic-VariableFont_wght.ttf +0 -0
- data/assets/font/exo2/Exo2-VariableFont_wght.ttf +0 -0
- data/assets/font/exo2/OFL.txt +93 -0
- data/assets/font/exo2/README.txt +81 -0
- data/assets/font/exo2/static/Exo2-Black.ttf +0 -0
- data/assets/font/exo2/static/Exo2-BlackItalic.ttf +0 -0
- data/assets/font/exo2/static/Exo2-Bold.ttf +0 -0
- data/assets/font/exo2/static/Exo2-BoldItalic.ttf +0 -0
- data/assets/font/exo2/static/Exo2-ExtraBold.ttf +0 -0
- data/assets/font/exo2/static/Exo2-ExtraBoldItalic.ttf +0 -0
- data/assets/font/exo2/static/Exo2-ExtraLight.ttf +0 -0
- data/assets/font/exo2/static/Exo2-ExtraLightItalic.ttf +0 -0
- data/assets/font/exo2/static/Exo2-Italic.ttf +0 -0
- data/assets/font/exo2/static/Exo2-Light.ttf +0 -0
- data/assets/font/exo2/static/Exo2-LightItalic.ttf +0 -0
- data/assets/font/exo2/static/Exo2-Medium.ttf +0 -0
- data/assets/font/exo2/static/Exo2-MediumItalic.ttf +0 -0
- data/assets/font/exo2/static/Exo2-Regular.ttf +0 -0
- data/assets/font/exo2/static/Exo2-SemiBold.ttf +0 -0
- data/assets/font/exo2/static/Exo2-SemiBoldItalic.ttf +0 -0
- data/assets/font/exo2/static/Exo2-Thin.ttf +0 -0
- data/assets/font/exo2/static/Exo2-ThinItalic.ttf +0 -0
- data/assets/img/bonsai-dark.png +0 -0
- data/assets/img/bonsai-dark.svg +106 -0
- data/assets/img/bonsai-light.png +0 -0
- data/assets/img/bonsai-light.svg +81 -0
- data/assets/img/favicon-dark.png +0 -0
- data/assets/img/favicon-light.png +0 -0
- data/assets/img/nav-base-dark.svg +1 -0
- data/assets/img/nav-base-light.svg +1 -0
- data/assets/img/nav-bonsai-dark.svg +1 -0
- data/assets/img/nav-bonsai-light.svg +1 -0
- data/assets/img/nav-dot-dark.svg +1 -0
- data/assets/img/nav-dot-light.svg +1 -0
- data/assets/img/nav-wiki-links-dark.svg +1 -0
- data/assets/img/nav-wiki-links-light.svg +1 -0
- data/assets/js/entry.js +102 -0
- data/assets/js/graph.js +552 -0
- data/assets/js/scripts.js +80 -0
- data/assets/js/site-nav.js +132 -0
- data/assets/js/theme-colors.js +71 -0
- data/index.html +82 -0
- metadata +360 -0
@@ -0,0 +1,75 @@
|
|
1
|
+
// //
|
2
|
+
// // Typography
|
3
|
+
// //
|
4
|
+
// // stylelint-disable primer/selector-no-utility, primer/no-override, selector-no-type, selector-max-type
|
5
|
+
|
6
|
+
// h1,
|
7
|
+
// .text-alpha {
|
8
|
+
// @include fs-8;
|
9
|
+
// font-weight: 300;
|
10
|
+
// }
|
11
|
+
|
12
|
+
// h2,
|
13
|
+
// .text-beta {
|
14
|
+
// @include fs-6;
|
15
|
+
// }
|
16
|
+
|
17
|
+
// h3,
|
18
|
+
// .text-gamma {
|
19
|
+
// @include fs-5;
|
20
|
+
// }
|
21
|
+
|
22
|
+
// h4,
|
23
|
+
// .text-delta {
|
24
|
+
// @include fs-2;
|
25
|
+
// font-weight: 400;
|
26
|
+
// text-transform: uppercase;
|
27
|
+
// letter-spacing: 0.1em;
|
28
|
+
// }
|
29
|
+
|
30
|
+
// h4 code {
|
31
|
+
// text-transform: none;
|
32
|
+
// }
|
33
|
+
|
34
|
+
// h5,
|
35
|
+
// .text-epsilon {
|
36
|
+
// @include fs-3;
|
37
|
+
// color: $grey-dk-200;
|
38
|
+
// }
|
39
|
+
|
40
|
+
// h6,
|
41
|
+
// .text-zeta {
|
42
|
+
// @include fs-2;
|
43
|
+
// color: $grey-dk-200;
|
44
|
+
// }
|
45
|
+
|
46
|
+
.missing-entry-txt {
|
47
|
+
@include fs-2;
|
48
|
+
color: $grey-dk-000 !important;
|
49
|
+
pointer-events: none;
|
50
|
+
}
|
51
|
+
|
52
|
+
.small-descr {
|
53
|
+
@include fs-2;
|
54
|
+
color: $grey-dk-000;
|
55
|
+
}
|
56
|
+
|
57
|
+
// .text-small {
|
58
|
+
// @include fs-2;
|
59
|
+
// }
|
60
|
+
|
61
|
+
// .text-mono {
|
62
|
+
// font-family: $mono-font-family !important;
|
63
|
+
// }
|
64
|
+
|
65
|
+
// .text-left {
|
66
|
+
// text-align: left !important;
|
67
|
+
// }
|
68
|
+
|
69
|
+
// .text-center {
|
70
|
+
// text-align: center !important;
|
71
|
+
// }
|
72
|
+
|
73
|
+
// .text-right {
|
74
|
+
// text-align: right !important;
|
75
|
+
// }
|
@@ -0,0 +1,58 @@
|
|
1
|
+
$body-background-color: $grey-dk-300;
|
2
|
+
$sidebar-color: $grey-dk-300;
|
3
|
+
$border-color: $grey-dk-200;
|
4
|
+
|
5
|
+
$body-text-color: $grey-lt-300;
|
6
|
+
// $body-text-color-highlighted: $grey-dk-100;
|
7
|
+
$body-heading-color: $grey-lt-000;
|
8
|
+
$nav-child-link-color: $grey-dk-000;
|
9
|
+
$search-result-preview-color: $grey-dk-000;
|
10
|
+
|
11
|
+
$separator-color: $grey-dk-200;
|
12
|
+
|
13
|
+
$btn-primary-color: $blue-200;
|
14
|
+
$base-button-color: $grey-dk-250;
|
15
|
+
|
16
|
+
$code-background-color: $grey-dk-250;
|
17
|
+
$search-background-color: $grey-dk-250;
|
18
|
+
$table-background-color: $grey-dk-250;
|
19
|
+
$box-shadow-color: $white;
|
20
|
+
$feedback-color: darken($sidebar-color, 3%);
|
21
|
+
|
22
|
+
$entry-foot-background-color: $grey-dk-250;
|
23
|
+
$entry-foot-text-color: $grey-dk-000;
|
24
|
+
$visited-color: $grey-dk-200;
|
25
|
+
|
26
|
+
$infobox-color: $grey-dk-000;
|
27
|
+
|
28
|
+
// link variables
|
29
|
+
|
30
|
+
$link-color: $blue-000;
|
31
|
+
$wiki-link-color: $green-07;
|
32
|
+
$invalid-wiki-link-color: $grey-dk-200;
|
33
|
+
|
34
|
+
// graph variables
|
35
|
+
// (graph attributes had to be set in scripts.js because of poor svg 2.0 support)
|
36
|
+
|
37
|
+
$link-line-stroke-color: $grey-dk-200;
|
38
|
+
$link-line-stroke-width: 0.5;
|
39
|
+
$link-line-dash-val: 0;
|
40
|
+
|
41
|
+
$node-stroke-color: $grey-dk-200;
|
42
|
+
$node-stroke-width: 1;
|
43
|
+
|
44
|
+
$node-unvisited-color: $green-400;
|
45
|
+
$node-visited-color: $green-05;
|
46
|
+
$node-missing-color: $transparent;
|
47
|
+
|
48
|
+
$node-active-color: $yellow-200;
|
49
|
+
$node-tagged-color: $orange-300;
|
50
|
+
|
51
|
+
$hover-active-brightness: 100%;
|
52
|
+
$hover-inactive-brightness: 50%;
|
53
|
+
$hover-active-alpha: 100%;
|
54
|
+
$hover-inactive-alpha: 90%;
|
55
|
+
|
56
|
+
// blockquote decoration
|
57
|
+
$blockquote-border-color: rgba($link-line-stroke-color, 0.33);
|
58
|
+
$blockquote-quote-color: rgba($link-line-stroke-color, .75);
|
@@ -0,0 +1,58 @@
|
|
1
|
+
$body-background-color: $green-01 !default;
|
2
|
+
$sidebar-color: $grey-lt-000 !default;
|
3
|
+
$border-color: $grey-lt-100 !default;
|
4
|
+
|
5
|
+
$body-text-color: $grey-dk-100 !default;
|
6
|
+
// $body-text-color-highlighted: $grey-lt-300 !default;
|
7
|
+
$body-heading-color: $grey-dk-300 !default;
|
8
|
+
$nav-child-link-color: $grey-dk-100 !default;
|
9
|
+
$search-background-color: $white !default;
|
10
|
+
|
11
|
+
$separator-color: $green-02 !default;
|
12
|
+
|
13
|
+
$btn-primary-color: $green-200 !default;
|
14
|
+
$base-button-color: $green-02 !default;
|
15
|
+
|
16
|
+
$code-background-color: $green-02 !default;
|
17
|
+
$search-result-preview-color: $grey-dk-000 !default;
|
18
|
+
$table-background-color: $white !default;
|
19
|
+
$box-shadow-color: $black !default;
|
20
|
+
$feedback-color: darken($sidebar-color, 3%) !default;
|
21
|
+
|
22
|
+
$entry-foot-background-color: $green-01-03 !default;
|
23
|
+
$entry-foot-text-color: $brown-02;
|
24
|
+
$visited-color: $green-yellow-05 !default;
|
25
|
+
|
26
|
+
$infobox-color: $brown-02 !default;
|
27
|
+
|
28
|
+
// link variables
|
29
|
+
|
30
|
+
$link-color: $blue-200 !default;
|
31
|
+
$wiki-link-color: $green-200 !default;
|
32
|
+
$invalid-wiki-link-color: $grey-lt-300;
|
33
|
+
|
34
|
+
// graph variables
|
35
|
+
// (graph attributes had to be set in scripts.js because of poor svg 2.0 support)
|
36
|
+
|
37
|
+
$link-line-stroke-color: $brown-02;
|
38
|
+
$link-line-stroke-width: 0.5;
|
39
|
+
$link-line-dash-val: 0;
|
40
|
+
|
41
|
+
$node-stroke-color: $transparent;
|
42
|
+
$node-stroke-width: 0;
|
43
|
+
|
44
|
+
$node-unvisited-color: $green-03;
|
45
|
+
$node-visited-color: $green-05;
|
46
|
+
$node-missing-color: $brown-02;
|
47
|
+
|
48
|
+
$node-active-color: $yellow-300;
|
49
|
+
$node-tagged-color: $orange-300;
|
50
|
+
|
51
|
+
$hover-active-brightness: 100%;
|
52
|
+
$hover-inactive-brightness: 100%;
|
53
|
+
$hover-active-alpha: 100%;
|
54
|
+
$hover-inactive-alpha: 25%;
|
55
|
+
|
56
|
+
// blockquote
|
57
|
+
$blockquote-border-color: rgba($link-line-stroke-color, 0.33) !default;
|
58
|
+
$blockquote-quote-color: rgba($link-line-stroke-color, .5) !default;
|
@@ -0,0 +1,106 @@
|
|
1
|
+
//
|
2
|
+
// Buttons and things that look like buttons
|
3
|
+
//
|
4
|
+
|
5
|
+
.btn-selector {
|
6
|
+
@include fs-6;
|
7
|
+
display: flex; // transform animation breaks without this on theme-colors and graph-type...
|
8
|
+
cursor: pointer;
|
9
|
+
user-select: none;
|
10
|
+
padding: $sp-2;
|
11
|
+
transition: all .2s ease-in-out;
|
12
|
+
|
13
|
+
&:hover {
|
14
|
+
transform: scale(1.5);
|
15
|
+
}
|
16
|
+
|
17
|
+
/* Hide the browser's default checkbox */
|
18
|
+
input {
|
19
|
+
opacity: 0;
|
20
|
+
height: 0;
|
21
|
+
width: 0;
|
22
|
+
}
|
23
|
+
|
24
|
+
#graph-type-emoji-span {
|
25
|
+
filter: drop-shadow(0 0 0.7mm $drop-shadow-green);
|
26
|
+
}
|
27
|
+
|
28
|
+
#nav-type-emoji-span {
|
29
|
+
filter: drop-shadow(0 0 0.7mm $drop-shadow-orange);
|
30
|
+
}
|
31
|
+
|
32
|
+
#entry-head-emoji-span {
|
33
|
+
filter: drop-shadow(0 0 0.7mm $drop-shadow-brown);
|
34
|
+
}
|
35
|
+
|
36
|
+
#theme-colors-emoji-span {
|
37
|
+
filter: drop-shadow(0 0 0.7mm $drop-shadow-yellow);
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
.entry-foot-selector {
|
42
|
+
@include fs-6;
|
43
|
+
display: flex;
|
44
|
+
cursor: pointer;
|
45
|
+
user-select: none;
|
46
|
+
padding-right: $sp-3;
|
47
|
+
padding-top: $sp-3;
|
48
|
+
transition: all .2s ease-in-out;
|
49
|
+
|
50
|
+
&:hover {
|
51
|
+
transform: scale(1.5);
|
52
|
+
}
|
53
|
+
|
54
|
+
/* Hide the browser's default checkbox */
|
55
|
+
input {
|
56
|
+
opacity: 0;
|
57
|
+
height: 0;
|
58
|
+
width: 0;
|
59
|
+
}
|
60
|
+
|
61
|
+
#entry-foot-posts-emoji-span {
|
62
|
+
filter: drop-shadow(0 0 0.7mm $drop-shadow-purple);
|
63
|
+
}
|
64
|
+
|
65
|
+
#entry-foot-link-emoji-span {
|
66
|
+
filter: drop-shadow(0 0 0.7mm $drop-shadow-brown);
|
67
|
+
}
|
68
|
+
}
|
69
|
+
|
70
|
+
.bonsai-burger {
|
71
|
+
display: flex;
|
72
|
+
flex-direction: column;
|
73
|
+
position: fixed;
|
74
|
+
right: $sp-2;
|
75
|
+
bottom: $sp-4;
|
76
|
+
cursor: pointer;
|
77
|
+
user-select: none;
|
78
|
+
filter: drop-shadow(0 0 0.7mm $drop-shadow-green);
|
79
|
+
z-index: 5;
|
80
|
+
|
81
|
+
/* Hide the browser's default checkbox */
|
82
|
+
input {
|
83
|
+
opacity: 0;
|
84
|
+
height: 0;
|
85
|
+
width: 0;
|
86
|
+
}
|
87
|
+
|
88
|
+
#nav-base {
|
89
|
+
margin-left: 10px;
|
90
|
+
margin-right: 10px;
|
91
|
+
}
|
92
|
+
|
93
|
+
#nav-bonsai {
|
94
|
+
margin-left: 5px;
|
95
|
+
}
|
96
|
+
}
|
97
|
+
|
98
|
+
.connect {
|
99
|
+
// 'sticky footer' from: https://css-tricks.com/couple-takes-sticky-footer/#there-is-flexbox
|
100
|
+
// ex = local
|
101
|
+
// footer = connect
|
102
|
+
// content = main-content
|
103
|
+
// body = main-content-wrap
|
104
|
+
// html, body = main
|
105
|
+
flex-shrink: 0;
|
106
|
+
}
|
@@ -0,0 +1,69 @@
|
|
1
|
+
//
|
2
|
+
// Graph attributes (garden/site-nav)
|
3
|
+
//
|
4
|
+
|
5
|
+
svg {
|
6
|
+
.links line {
|
7
|
+
stroke: $link-line-stroke-color;
|
8
|
+
stroke-width: $link-line-stroke-width;
|
9
|
+
stroke-dasharray: $link-line-dash-val;
|
10
|
+
}
|
11
|
+
|
12
|
+
.nodes circle {
|
13
|
+
pointer-events: all;
|
14
|
+
stroke: $node-stroke-color;
|
15
|
+
stroke-width: $node-stroke-width;
|
16
|
+
fill: $node-unvisited-color;
|
17
|
+
|
18
|
+
&:hover {
|
19
|
+
cursor: pointer;
|
20
|
+
}
|
21
|
+
|
22
|
+
&.pulse {
|
23
|
+
fill: $node-active-color;
|
24
|
+
animation: pulse 2s linear infinite;
|
25
|
+
}
|
26
|
+
|
27
|
+
&.pulse-sem-tag {
|
28
|
+
fill: $node-tagged-color;
|
29
|
+
animation: pulse 2s linear infinite;
|
30
|
+
}
|
31
|
+
|
32
|
+
&.missing {
|
33
|
+
fill: $node-missing-color !important;
|
34
|
+
cursor: help;
|
35
|
+
}
|
36
|
+
|
37
|
+
// &.unvisited {
|
38
|
+
// fill: $node-unvisited-color;
|
39
|
+
// }
|
40
|
+
|
41
|
+
&.visited {
|
42
|
+
fill: $node-visited-color;
|
43
|
+
}
|
44
|
+
}
|
45
|
+
|
46
|
+
.text text {
|
47
|
+
fill: $body-text-color;
|
48
|
+
}
|
49
|
+
|
50
|
+
.active {
|
51
|
+
opacity: $hover-active-alpha;
|
52
|
+
filter: brightness($hover-active-brightness);
|
53
|
+
font-size: 50%;
|
54
|
+
z-index: 10;
|
55
|
+
transition: all 0.1s ease-in-out;
|
56
|
+
}
|
57
|
+
|
58
|
+
.inactive {
|
59
|
+
opacity: $hover-inactive-alpha;
|
60
|
+
filter: brightness($hover-inactive-brightness);
|
61
|
+
z-index: 0;
|
62
|
+
transition: all 0.1s ease-in-out;
|
63
|
+
}
|
64
|
+
|
65
|
+
@keyframes pulse {
|
66
|
+
0% {transform: scale(1.0); opacity: 1;}
|
67
|
+
100% {transform: scale(2); opacity: 0;}
|
68
|
+
}
|
69
|
+
}
|
@@ -0,0 +1,89 @@
|
|
1
|
+
//
|
2
|
+
// navigation
|
3
|
+
//
|
4
|
+
// stylelint-disable selector-no-type, max-nesting-depth, selector-max-compound-selectors, selector-max-type, selector-max-specificity
|
5
|
+
|
6
|
+
// entry-breadcrumb nav
|
7
|
+
|
8
|
+
.entry-head-nav {
|
9
|
+
@include mq(md) {
|
10
|
+
margin-top: -$sp-4;
|
11
|
+
}
|
12
|
+
display: flex;
|
13
|
+
overflow-x: scroll;
|
14
|
+
white-space: nowrap;
|
15
|
+
|
16
|
+
.entry-head-breadcrumbs {
|
17
|
+
padding-left: 0;
|
18
|
+
padding-top: $sp-2;
|
19
|
+
margin-bottom: 0;
|
20
|
+
margin-top: 0;
|
21
|
+
align-self: center;
|
22
|
+
list-style: none;
|
23
|
+
|
24
|
+
.entry-head-breadcrumb {
|
25
|
+
@include fs-2;
|
26
|
+
display: flex;
|
27
|
+
flex-direction: row;
|
28
|
+
padding-left: $sp-2;
|
29
|
+
|
30
|
+
&::before {
|
31
|
+
display: none;
|
32
|
+
}
|
33
|
+
}
|
34
|
+
}
|
35
|
+
}
|
36
|
+
|
37
|
+
// entry-foot nav
|
38
|
+
|
39
|
+
.entry-foot-wrapper {
|
40
|
+
margin-top: $sp-6;
|
41
|
+
margin-bottom: $sp-6;
|
42
|
+
display: flex;
|
43
|
+
|
44
|
+
.entry-foot-nav-title {
|
45
|
+
@include fs-4;
|
46
|
+
color: $entry-foot-text-color;
|
47
|
+
}
|
48
|
+
|
49
|
+
.entry-foot-nav-subtitle {
|
50
|
+
@include fs-2;
|
51
|
+
color: $entry-foot-text-color;
|
52
|
+
}
|
53
|
+
|
54
|
+
.entry-foot-nav {
|
55
|
+
display: flex;
|
56
|
+
flex-direction: column;
|
57
|
+
border-radius: 16px;
|
58
|
+
|
59
|
+
.entry-foot-nav-sections {
|
60
|
+
display: flex;
|
61
|
+
}
|
62
|
+
|
63
|
+
.entry-foot-nav-section {
|
64
|
+
padding-left: $sp-2;
|
65
|
+
padding-right: $sp-2;
|
66
|
+
}
|
67
|
+
|
68
|
+
.entry-foot-nav-list {
|
69
|
+
display: block; // columns require block
|
70
|
+
column-count: 2;
|
71
|
+
column-width: $content-width / 6;
|
72
|
+
padding-left: 0;
|
73
|
+
list-style: none;
|
74
|
+
|
75
|
+
.entry-foot-nav-list-item {
|
76
|
+
border-radius: 16px;
|
77
|
+
padding: $sp-1;
|
78
|
+
max-width: $content-width / 4;
|
79
|
+
overflow: hidden;
|
80
|
+
white-space: nowrap;
|
81
|
+
text-overflow: ellipsis;
|
82
|
+
|
83
|
+
&::before {
|
84
|
+
display: none;
|
85
|
+
}
|
86
|
+
}
|
87
|
+
}
|
88
|
+
}
|
89
|
+
}
|