jekyll-oedipus-theme 2.0.0 → 2.1.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/_includes/navlist.html +2 -2
- data/_sass/main.scss +25 -22
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2a135d74c506d1aff540cda4077592df9d7edb74af2ceb00a1ce6ad413f14f38
|
|
4
|
+
data.tar.gz: 15bb7a54385486481d12ff828416298bf652f7f548aab28885bcada436de31eb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: de13fb49286552a0d74a30b6bd1235e3bed0579c90c90f9b153505a0955f8b2780933dac8f6859869187c25f9542fd25fb8ed85139b009b79de9b92a27652dd1
|
|
7
|
+
data.tar.gz: 61ab7042cae4cb0218dc963fe3d40a296322292c884027e361e5b544c34fa4acc74af961910210b07610f70fc4762243d360b6b03b02c7ca1a0fdfb74bd5bd04
|
data/README.md
CHANGED
|
@@ -129,7 +129,7 @@ I built this theme for my own use. If you find this theme useful, you are welcom
|
|
|
129
129
|
This is not a professional project, and I am not interested in collaborating with others here. I am most certainly *not* interested in fostering "community", let alone providing an "open and welcoming environment". Nevertheless, I suppose a rudimentary and informal code of conduct is necessary.
|
|
130
130
|
|
|
131
131
|
1. If you mess with me, you're banned.
|
|
132
|
-
2. If you mess with other contributors on this project, you're
|
|
132
|
+
2. If you mess with other contributors on this project, you're messing with me.
|
|
133
133
|
3. When in doubt, refer to rule 1.
|
|
134
134
|
|
|
135
135
|
(with apologies to Matthew Woodring Stover)
|
data/_includes/navlist.html
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{% if include.source %}
|
|
2
|
-
<
|
|
2
|
+
<section id="{{ include.id }}" aria-label=" {{include.label }}">
|
|
3
3
|
<ul>
|
|
4
4
|
{% for item in include.source %}
|
|
5
5
|
<li>
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
</li>
|
|
8
8
|
{% endfor %}
|
|
9
9
|
</ul>
|
|
10
|
-
</
|
|
10
|
+
</section>
|
|
11
11
|
{% endif %}
|
data/_sass/main.scss
CHANGED
|
@@ -64,30 +64,33 @@ html {
|
|
|
64
64
|
|
|
65
65
|
nav {
|
|
66
66
|
margin-top: 1.5rem;
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
67
|
+
a {
|
|
68
|
+
margin: .5rem;
|
|
69
|
+
border: $border-thickness solid $link-color;
|
|
70
|
+
border-radius: .5rem;
|
|
71
|
+
padding: .5rem;
|
|
72
|
+
text-decoration: none;
|
|
73
|
+
display: inline-block;
|
|
74
|
+
}
|
|
75
75
|
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
76
|
+
a:first-child {
|
|
77
|
+
margin-left: 0;
|
|
78
|
+
}
|
|
79
79
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
80
|
+
a:last-child {
|
|
81
|
+
margin-right: 0;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
a:hover {
|
|
85
|
+
border: $border-thickness solid $link-hover-color;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
a:active {
|
|
89
|
+
border: $border-thickness solid $link-active-color;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
a:visited {
|
|
93
|
+
border: $border-thickness solid $link-visited-color;
|
|
91
94
|
}
|
|
92
95
|
}
|
|
93
96
|
|