summoner-jekyll-theme 1.3.6 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/_sass/components/_nav.scss +4 -2
- data/_sass/components/_spacing.scss +3 -1
- data/_sass/components/paginator/_link.scss +3 -1
- data/_sass/components/paginator/_span.scss +3 -1
- data/_sass/config/_reset.scss +3 -1
- data/_sass/layouts/_content.scss +3 -1
- data/_sass/summoner.scss +22 -22
- data/assets/style.scss +1 -1
- metadata +4 -4
- /data/_sass/layouts/{_404.scss → _missing.scss} +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ba69f73622a2512864411f07bdc83c2e633596eaed3c26e1d7cd8cde79d3ab98
|
4
|
+
data.tar.gz: 8d308a767786fce4345d701b2b06ffb6b395088a750d370bafe3d21bce0945d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7975018a1a0ed3b303df2b5a8ae5822bd8cfbbce9bc9e5dec1caa575a389c7e0260bef4198e709948357fed0603a28509c12482778e4bcbd7d4114bcdb6f0c50
|
7
|
+
data.tar.gz: 0f7692d9bdb3ea7ce7ae9f47a044dea8d43e6da991cc9be8d36f187b693fd5222f70b513cd6655f1ea7fa8067ee337ad36fb46ce8a9f214cb5d17a592557dcf3
|
data/README.md
CHANGED
@@ -31,11 +31,11 @@ Or install it yourself as:
|
|
31
31
|
|
32
32
|
#### Layouts
|
33
33
|
|
34
|
-
- 404.html: Default 404 page
|
34
|
+
- 404.html: Default 404 page, set permalink if using pretty links
|
35
35
|
- archive.html: List tag types based on jekyll-archives tags
|
36
36
|
- blog.html: Post listings, pagination supported via jekyll-paginate-v2
|
37
37
|
- default.html: Minimum layout necessary for including CSS and JS
|
38
|
-
- index.html: Homepage
|
38
|
+
- index.html: Homepage and navigation
|
39
39
|
- page.html: Use for miscellaneous pages (about, contact, etc.)
|
40
40
|
- post.html: Use for blog posts
|
41
41
|
|
@@ -69,4 +69,4 @@ bundle
|
|
69
69
|
## License
|
70
70
|
|
71
71
|
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
72
|
-
The fonts shipped with the theme are all under the OFL, and a copy of each font's license can be found in the `_data` directory.
|
72
|
+
The fonts shipped with the theme are all under the OFL, and a copy of each font's license can be found in the `_data` directory.
|
data/_sass/components/_nav.scss
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
@use "../mixins/media";
|
2
|
+
|
1
3
|
.nav {
|
2
4
|
display: block;
|
3
5
|
|
@@ -11,7 +13,7 @@
|
|
11
13
|
display: block;
|
12
14
|
}
|
13
15
|
|
14
|
-
@include media(breakpoint) {
|
16
|
+
@include media.media(breakpoint) {
|
15
17
|
display: flex;
|
16
18
|
font-size: var(--font-size-m);
|
17
19
|
}
|
@@ -23,7 +25,7 @@
|
|
23
25
|
justify-content: space-between;
|
24
26
|
margin-bottom: var(--space-i);
|
25
27
|
|
26
|
-
@include media(breakpoint) {
|
28
|
+
@include media.media(breakpoint) {
|
27
29
|
display: flex;
|
28
30
|
}
|
29
31
|
}
|
@@ -1,3 +1,5 @@
|
|
1
|
+
@use "../../mixins/media";
|
2
|
+
|
1
3
|
.paginator a {
|
2
4
|
text-decoration: none;
|
3
5
|
color: var(--color-black);
|
@@ -5,7 +7,7 @@
|
|
5
7
|
font-family: var(--font-family-syne);
|
6
8
|
font-size: var(--font-size-xxl);
|
7
9
|
|
8
|
-
@include media(breakpoint) {
|
10
|
+
@include media.media(breakpoint) {
|
9
11
|
font-size: var(--font-size-m);
|
10
12
|
}
|
11
13
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
@use "../../mixins/media";
|
2
|
+
|
1
3
|
.paginator span {
|
2
4
|
text-decoration: none;
|
3
5
|
color: var(--color-text-muted);
|
@@ -5,7 +7,7 @@
|
|
5
7
|
font-family: var(--font-family-syne);
|
6
8
|
font-size: var(--font-size-xxl);
|
7
9
|
|
8
|
-
@include media(breakpoint) {
|
10
|
+
@include media.media(breakpoint) {
|
9
11
|
font-size: var(--font-size-m);
|
10
12
|
}
|
11
13
|
}
|
data/_sass/config/_reset.scss
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
@use "../mixins/media";
|
2
|
+
|
1
3
|
*,
|
2
4
|
*::before,
|
3
5
|
*::after {
|
@@ -92,7 +94,7 @@ li {
|
|
92
94
|
margin-left: 20px;
|
93
95
|
font-size: var(--font-size-xxl);
|
94
96
|
|
95
|
-
@include media(breakpoint) {
|
97
|
+
@include media.media(breakpoint) {
|
96
98
|
font-size: var(--font-size-m);
|
97
99
|
}
|
98
100
|
}
|
data/_sass/layouts/_content.scss
CHANGED
data/_sass/summoner.scss
CHANGED
@@ -1,29 +1,29 @@
|
|
1
1
|
// Mixins
|
2
|
-
@
|
3
|
-
@
|
2
|
+
@use "mixins/media";
|
3
|
+
@use "mixins/highlight";
|
4
4
|
|
5
5
|
// Configurations
|
6
|
-
@
|
7
|
-
@
|
8
|
-
@
|
6
|
+
@use "config/fonts";
|
7
|
+
@use "config/variables";
|
8
|
+
@use "config/reset";
|
9
9
|
|
10
10
|
// Components
|
11
|
-
@
|
12
|
-
@
|
13
|
-
@
|
14
|
-
@
|
15
|
-
@
|
16
|
-
@
|
17
|
-
@
|
18
|
-
@
|
19
|
-
@
|
20
|
-
@
|
21
|
-
@
|
22
|
-
@
|
23
|
-
@
|
24
|
-
@
|
11
|
+
@use "components/date";
|
12
|
+
@use "components/listing";
|
13
|
+
@use "components/nav/img";
|
14
|
+
@use "components/nav/link";
|
15
|
+
@use "components/nav";
|
16
|
+
@use "components/paginator/link" as link2;
|
17
|
+
@use "components/paginator/span";
|
18
|
+
@use "components/paginator";
|
19
|
+
@use "components/post/code";
|
20
|
+
@use "components/post/img" as img2;
|
21
|
+
@use "components/post/paragraph";
|
22
|
+
@use "components/motif";
|
23
|
+
@use "components/spacing";
|
24
|
+
@use "components/tag";
|
25
25
|
|
26
26
|
// Layouts
|
27
|
-
@
|
28
|
-
@
|
29
|
-
@
|
27
|
+
@use "layouts/missing";
|
28
|
+
@use "layouts/content";
|
29
|
+
@use "layouts/landing";
|
data/assets/style.scss
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: summoner-jekyll-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rory Dudley
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-11-27 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|
@@ -53,9 +53,9 @@ files:
|
|
53
53
|
- _sass/config/_fonts.scss
|
54
54
|
- _sass/config/_reset.scss
|
55
55
|
- _sass/config/_variables.scss
|
56
|
-
- _sass/layouts/_404.scss
|
57
56
|
- _sass/layouts/_content.scss
|
58
57
|
- _sass/layouts/_landing.scss
|
58
|
+
- _sass/layouts/_missing.scss
|
59
59
|
- _sass/mixins/_highlight.scss
|
60
60
|
- _sass/mixins/_media.scss
|
61
61
|
- _sass/summoner.scss
|
@@ -87,7 +87,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
87
|
- !ruby/object:Gem::Version
|
88
88
|
version: '0'
|
89
89
|
requirements: []
|
90
|
-
rubygems_version: 3.
|
90
|
+
rubygems_version: 3.5.23
|
91
91
|
signing_key:
|
92
92
|
specification_version: 4
|
93
93
|
summary: My custom jekyll theme for https://summoning.net/.
|
File without changes
|