some minor style improvements
Web/pipeline/head This commit looks good Details

This commit is contained in:
Ell 2021-03-24 19:54:14 +01:00
parent e23f33b85b
commit aaca91000b
4 changed files with 10 additions and 7 deletions

View File

@ -31,7 +31,7 @@ function populateBlog(json, cat) {
<div class="card bg-light blog-entry rounded-0">
<div class="card-body">
<h4 class="card-title blog-title"><a class="blog-button" href="/blog/${obj.id}">${obj.name}</a></h4>
<div class="card-text text-muted blog-summary">${obj.summary}</div>
<div class="card-text blog-summary">${obj.summary}</div>
<span class="text-muted project-status">${obj.date}</span>
<span class="text-muted blog-cat">${obj.cat}</span>
</div>

View File

@ -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'
},

View File

@ -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;
}

View File

@ -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;
}