From aaca91000b4b5084b7d7fd2bc1f86fad121d85c7 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Wed, 24 Mar 2021 19:54:14 +0100 Subject: [PATCH] some minor style improvements --- scripts/blog.js | 2 +- scripts/projects.js | 7 +++++-- style/dark.css | 4 ++-- style/style.css | 4 ++-- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/scripts/blog.js b/scripts/blog.js index 49b55eb..11e35ea 100644 --- a/scripts/blog.js +++ b/scripts/blog.js @@ -31,7 +31,7 @@ function populateBlog(json, cat) {

${obj.name}

-
${obj.summary}
+
${obj.summary}
${obj.date} ${obj.cat}
diff --git a/scripts/projects.js b/scripts/projects.js index 8eb2f86..0649749 100644 --- a/scripts/projects.js +++ b/scripts/projects.js @@ -3,6 +3,7 @@ const projects = [{ desc: 'Actually Additions is a rather popular Minecraft mod that I used to work on. It\'s become widely known in the modding community and has reached over 30 million downloads by now, which is crazy. I don\'t work on it anymore myself, but it\'s being maintained for current versions by someone else.', links: { 'CurseForge page': 'https://www.ellpeck.de/actadd', + "Report an issue": "https://github.com/Ellpeck/ActuallyAdditions/issues", 'Online manual': 'https://www.ellpeck.de/actaddmanual/' }, status: 'Maintained', @@ -13,7 +14,8 @@ const projects = [{ desc: "Nature's Aura is a Minecraft mod about collecting, using and replenishing the Aura naturally present in the world to create useful devices and unique mechanics.", status: 'In development', links: { - 'CurseForge page': 'https://minecraft.curseforge.com/projects/natures-aura' + 'CurseForge page': 'https://minecraft.curseforge.com/projects/natures-aura', + "Report an issue": "https://github.com/Ellpeck/NaturesAura/issues" }, icon: 'na' }, @@ -22,7 +24,8 @@ const projects = [{ desc: "Pretty Pipes is a simple to use, all-inclusive item transport mod for Minecraft. It features simple pipes that can be upgraded using modules to accomplish much more advanced tasks.", status: 'In development', links: { - 'CurseForge page': 'https://www.curseforge.com/minecraft/mc-mods/pretty-pipes' + 'CurseForge page': 'https://www.curseforge.com/minecraft/mc-mods/pretty-pipes', + "Report an issue": "https://github.com/Ellpeck/PrettyPipes/issues" }, icon: 'pp' }, diff --git a/style/dark.css b/style/dark.css index 8a6f2bf..1099d54 100644 --- a/style/dark.css +++ b/style/dark.css @@ -33,10 +33,10 @@ body { .blog-button:link, .blog-button:visited { - color: #d8d8d8 !important; + color: white !important; } .blog-button:hover, .blog-button:active { - color: white !important; + color: rgb(182, 182, 182) !important; } \ No newline at end of file diff --git a/style/style.css b/style/style.css index 0bc04e3..3bb2d68 100644 --- a/style/style.css +++ b/style/style.css @@ -117,13 +117,13 @@ body { .blog-button:link, .blog-button:visited { - color: rgb(73, 73, 73); + color: black; text-decoration: none; } .blog-button:hover, .blog-button:active { - color: black; + color: rgb(73, 73, 73); text-decoration: none; }