type-on-strap 2.4.7 → 2.4.8
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 +4 -4
- data/README.md +32 -23
- data/_data/language.yml +3 -1
- data/_includes/blog/post_footer.liquid +57 -0
- data/_includes/default/head.liquid +12 -12
- data/_includes/default/navbar.liquid +9 -7
- data/_includes/default/search_input.liquid +50 -0
- data/_layouts/default.html +7 -4
- data/_layouts/home.liquid +2 -4
- data/_layouts/page.liquid +24 -29
- data/_layouts/post.liquid +24 -74
- data/_sass/external/_font-awesome.scss +8 -16
- data/_sass/external/_katex.scss +5 -1146
- data/_sass/external/font-awesome/_animated.scss +142 -9
- data/_sass/external/font-awesome/_bordered-pulled.scss +13 -13
- data/_sass/external/font-awesome/_core.scss +28 -6
- data/_sass/external/font-awesome/_fixed-width.scss +2 -1
- data/_sass/external/font-awesome/_functions.scss +57 -0
- data/_sass/external/font-awesome/_icons.scss +7 -1459
- data/_sass/external/font-awesome/_list.scss +4 -4
- data/_sass/external/font-awesome/_mixins.scss +53 -34
- data/_sass/external/font-awesome/_rotated-flipped.scss +25 -18
- data/_sass/external/font-awesome/_screen-reader.scss +12 -3
- data/_sass/external/font-awesome/_shims.scss +640 -664
- data/_sass/external/font-awesome/_sizing.scss +16 -0
- data/_sass/external/font-awesome/_stacked.scss +5 -4
- data/_sass/external/font-awesome/_variables.scss +4923 -1409
- data/_sass/external/font-awesome/brands.scss +30 -0
- data/_sass/external/font-awesome/fontawesome.scss +21 -0
- data/_sass/external/font-awesome/regular.scss +26 -0
- data/_sass/external/font-awesome/solid.scss +26 -0
- data/_sass/external/font-awesome/v4-shims.scss +6 -1
- data/_sass/external/katex/katex.scss +1414 -0
- data/_sass/includes/_navbar.scss +6 -4
- data/_sass/includes/_share_buttons.scss +1 -1
- data/_sass/layouts/_posts.scss +1 -1
- data/assets/data/search.liquid +6 -27
- data/assets/fonts/font-awesome/fa-brands-400.ttf +0 -0
- data/assets/fonts/font-awesome/fa-brands-400.woff2 +0 -0
- data/assets/fonts/font-awesome/fa-regular-400.ttf +0 -0
- data/assets/fonts/font-awesome/fa-regular-400.woff2 +0 -0
- data/assets/fonts/font-awesome/fa-solid-900.ttf +0 -0
- data/assets/fonts/font-awesome/fa-solid-900.woff2 +0 -0
- data/assets/fonts/font-awesome/fa-v4compatibility.ttf +0 -0
- data/assets/fonts/font-awesome/fa-v4compatibility.woff2 +0 -0
- data/assets/js/main.min.js +3 -3
- data/assets/js/partials/cookie_consent_init.js +5 -0
- data/assets/js/partials/dark-mode.js +22 -18
- data/assets/js/vendor/katex.auto-render.min.js +1 -0
- data/assets/js/vendor/katex.min.js +1 -1
- data/assets/js/vendor/mermaid.min.js +830 -772
- metadata +14 -16
- data/_sass/external/font-awesome/_brands.scss +0 -23
- data/_sass/external/font-awesome/_larger.scss +0 -23
- data/_sass/external/font-awesome/_regular.scss +0 -23
- data/_sass/external/font-awesome/_solid.scss +0 -24
- data/assets/fonts/font-awesome/fa-brands-400.eot +0 -0
- data/assets/fonts/font-awesome/fa-brands-400.svg +0 -3717
- data/assets/fonts/font-awesome/fa-brands-400.woff +0 -0
- data/assets/fonts/font-awesome/fa-regular-400.eot +0 -0
- data/assets/fonts/font-awesome/fa-regular-400.svg +0 -801
- data/assets/fonts/font-awesome/fa-regular-400.woff +0 -0
- data/assets/fonts/font-awesome/fa-solid-900.eot +0 -0
- data/assets/fonts/font-awesome/fa-solid-900.svg +0 -5028
- data/assets/fonts/font-awesome/fa-solid-900.woff +0 -0
- data/assets/js/vendor/auto-render.min.js +0 -1
@@ -0,0 +1,30 @@
|
|
1
|
+
/*!
|
2
|
+
* Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com
|
3
|
+
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
4
|
+
* Copyright 2023 Fonticons, Inc.
|
5
|
+
*/
|
6
|
+
@import 'functions';
|
7
|
+
@import 'variables';
|
8
|
+
|
9
|
+
:root, :host {
|
10
|
+
--#{$fa-css-prefix}-style-family-brands: 'Font Awesome 6 Brands';
|
11
|
+
--#{$fa-css-prefix}-font-brands: normal 400 1em/1 'Font Awesome 6 Brands';
|
12
|
+
}
|
13
|
+
|
14
|
+
@font-face {
|
15
|
+
font-family: 'Font Awesome 6 Brands';
|
16
|
+
font-style: normal;
|
17
|
+
font-weight: 400;
|
18
|
+
font-display: $fa-font-display;
|
19
|
+
src: url('#{$fa-font-path}/fa-brands-400.woff2') format('woff2'),
|
20
|
+
url('#{$fa-font-path}/fa-brands-400.ttf') format('truetype');
|
21
|
+
}
|
22
|
+
|
23
|
+
.fab,
|
24
|
+
.#{$fa-css-prefix}-brands {
|
25
|
+
font-weight: 400;
|
26
|
+
}
|
27
|
+
|
28
|
+
@each $name, $icon in $fa-brand-icons {
|
29
|
+
.#{$fa-css-prefix}-#{$name}:before { content: unquote("\"#{ $icon }\""); }
|
30
|
+
}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
/*!
|
2
|
+
* Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com
|
3
|
+
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
4
|
+
* Copyright 2023 Fonticons, Inc.
|
5
|
+
*/
|
6
|
+
// Font Awesome core compile (Web Fonts-based)
|
7
|
+
// -------------------------
|
8
|
+
|
9
|
+
@import 'functions';
|
10
|
+
@import 'variables';
|
11
|
+
@import 'mixins';
|
12
|
+
@import 'core';
|
13
|
+
@import 'sizing';
|
14
|
+
@import 'fixed-width';
|
15
|
+
@import 'list';
|
16
|
+
@import 'bordered-pulled';
|
17
|
+
@import 'animated';
|
18
|
+
@import 'rotated-flipped';
|
19
|
+
@import 'stacked';
|
20
|
+
@import 'icons';
|
21
|
+
@import 'screen-reader';
|
@@ -0,0 +1,26 @@
|
|
1
|
+
/*!
|
2
|
+
* Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com
|
3
|
+
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
4
|
+
* Copyright 2023 Fonticons, Inc.
|
5
|
+
*/
|
6
|
+
@import 'functions';
|
7
|
+
@import 'variables';
|
8
|
+
|
9
|
+
:root, :host {
|
10
|
+
--#{$fa-css-prefix}-style-family-classic: '#{ $fa-style-family }';
|
11
|
+
--#{$fa-css-prefix}-font-regular: normal 400 1em/1 '#{ $fa-style-family }';
|
12
|
+
}
|
13
|
+
|
14
|
+
@font-face {
|
15
|
+
font-family: 'Font Awesome 6 Free';
|
16
|
+
font-style: normal;
|
17
|
+
font-weight: 400;
|
18
|
+
font-display: $fa-font-display;
|
19
|
+
src: url('#{$fa-font-path}/fa-regular-400.woff2') format('woff2'),
|
20
|
+
url('#{$fa-font-path}/fa-regular-400.ttf') format('truetype');
|
21
|
+
}
|
22
|
+
|
23
|
+
.far,
|
24
|
+
.#{$fa-css-prefix}-regular {
|
25
|
+
font-weight: 400;
|
26
|
+
}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
/*!
|
2
|
+
* Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com
|
3
|
+
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
4
|
+
* Copyright 2023 Fonticons, Inc.
|
5
|
+
*/
|
6
|
+
@import 'functions';
|
7
|
+
@import 'variables';
|
8
|
+
|
9
|
+
:root, :host {
|
10
|
+
--#{$fa-css-prefix}-style-family-classic: '#{ $fa-style-family }';
|
11
|
+
--#{$fa-css-prefix}-font-solid: normal 900 1em/1 '#{ $fa-style-family }';
|
12
|
+
}
|
13
|
+
|
14
|
+
@font-face {
|
15
|
+
font-family: 'Font Awesome 6 Free';
|
16
|
+
font-style: normal;
|
17
|
+
font-weight: 900;
|
18
|
+
font-display: $fa-font-display;
|
19
|
+
src: url('#{$fa-font-path}/fa-solid-900.woff2') format('woff2'),
|
20
|
+
url('#{$fa-font-path}/fa-solid-900.ttf') format('truetype');
|
21
|
+
}
|
22
|
+
|
23
|
+
.fas,
|
24
|
+
.#{$fa-css-prefix}-solid {
|
25
|
+
font-weight: 900;
|
26
|
+
}
|
@@ -1,6 +1,11 @@
|
|
1
1
|
/*!
|
2
|
-
* Font Awesome Free 5.
|
2
|
+
* Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com
|
3
3
|
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
4
|
+
* Copyright 2023 Fonticons, Inc.
|
4
5
|
*/
|
6
|
+
// V4 shims compile (Web Fonts-based)
|
7
|
+
// -------------------------
|
8
|
+
|
9
|
+
@import 'functions';
|
5
10
|
@import 'variables';
|
6
11
|
@import 'shims';
|