summoner-jekyll-theme 2.2.1 → 2.3.0
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 +1 -1
- data/_layouts/archive.html +1 -1
- data/_layouts/page.html +1 -1
- data/_layouts/post.html +1 -1
- data/_sass/components/post/_link.scss +56 -0
- data/_sass/components/post/_table.scss +14 -0
- data/_sass/summoner.scss +2 -0
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ffc089135508c761a8603160db1cc51c11a8c4f6c4cdef7cde9041b413f03cf4
|
|
4
|
+
data.tar.gz: 7cc52d9a34d03708a6b5721d199f5c30dd74ccd80c485889d0c5a6d834cd13a6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5510a83c8091d60c6a763ac29035d01eb8df5242b929d617a86b96dc375de24e605767c17543e03a591053dfaf23d0f718359ee534353144c480dd4ea20a6aa2
|
|
7
|
+
data.tar.gz: be200c8caed6efe55c1c88af8ed3df0e550f16c486c751044d082d7a172666c0b4a625a76199e834d7809ac9733a51fbf2c913412e9e0ae61cdd45d0b7b9450e
|
data/README.md
CHANGED
data/_layouts/archive.html
CHANGED
data/_layouts/page.html
CHANGED
data/_layouts/post.html
CHANGED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
.content p a {
|
|
2
|
+
color: #6db9c6;
|
|
3
|
+
font-weight: bold;
|
|
4
|
+
text-decoration: none;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.content p a:hover {
|
|
8
|
+
color: #90e2dd;
|
|
9
|
+
text-decoration: none;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.content p a:visited {
|
|
13
|
+
color: #c792eb;
|
|
14
|
+
text-decoration: none;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.content ul a {
|
|
18
|
+
color: #6db9c6;
|
|
19
|
+
font-weight: bold;
|
|
20
|
+
text-decoration: none;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.content ul a:hover {
|
|
24
|
+
color: #90e2dd;
|
|
25
|
+
text-decoration: none;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.content ul a:visited {
|
|
29
|
+
color: #c792eb;
|
|
30
|
+
text-decoration: none;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
a.citation {
|
|
34
|
+
color: var(--color-text-body) !important;
|
|
35
|
+
font-weight: normal !important;
|
|
36
|
+
text-decoration: none !important;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
a.citation:hover {
|
|
40
|
+
text-decoration: underline !important;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.citation {
|
|
44
|
+
font-size: 12px;
|
|
45
|
+
vertical-align: super;
|
|
46
|
+
text-decoration: none !important;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.missing a {
|
|
50
|
+
text-decoration: underline;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.missing a:hover {
|
|
54
|
+
color: #76c8d7;
|
|
55
|
+
text-decoration: underline;
|
|
56
|
+
}
|
data/_sass/summoner.scss
CHANGED
|
@@ -18,7 +18,9 @@
|
|
|
18
18
|
@use "components/paginator";
|
|
19
19
|
@use "components/post/code";
|
|
20
20
|
@use "components/post/img" as img2;
|
|
21
|
+
@use "components/post/link" as link3;
|
|
21
22
|
@use "components/post/paragraph";
|
|
23
|
+
@use "components/post/table";
|
|
22
24
|
@use "components/motif";
|
|
23
25
|
@use "components/spacing";
|
|
24
26
|
@use "components/tag";
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: summoner-jekyll-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rory Dudley
|
|
@@ -48,7 +48,9 @@ files:
|
|
|
48
48
|
- _sass/components/paginator/_span.scss
|
|
49
49
|
- _sass/components/post/_code.scss
|
|
50
50
|
- _sass/components/post/_img.scss
|
|
51
|
+
- _sass/components/post/_link.scss
|
|
51
52
|
- _sass/components/post/_paragraph.scss
|
|
53
|
+
- _sass/components/post/_table.scss
|
|
52
54
|
- _sass/config/_fonts.scss
|
|
53
55
|
- _sass/config/_reset.scss
|
|
54
56
|
- _sass/config/_variables.scss
|
|
@@ -85,7 +87,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
85
87
|
- !ruby/object:Gem::Version
|
|
86
88
|
version: '0'
|
|
87
89
|
requirements: []
|
|
88
|
-
rubygems_version: 4.0.
|
|
90
|
+
rubygems_version: 4.0.14
|
|
89
91
|
specification_version: 4
|
|
90
92
|
summary: My custom jekyll theme for https://summoning.net/.
|
|
91
93
|
test_files: []
|