diff --git a/scripts/footer.js b/scripts/footer.js index 726ccf5..57d074f 100644 --- a/scripts/footer.js +++ b/scripts/footer.js @@ -3,7 +3,7 @@ let footerHTML = `

Created by Lee Cattarin with help from:

Site feedback? Questions? Reach out to Lee

diff --git a/scripts/zines.js b/scripts/zines.js index 37140dd..edee298 100644 --- a/scripts/zines.js +++ b/scripts/zines.js @@ -13,15 +13,22 @@ function makeZine({name, blurb, format, site, fedi}) { zine.className = "zine"; let h3 = document.createElement("h3"); - h3.innerHTML = name; h3.className = "artist"; + h3.innerHTML = name; zine.append(h3); let p = document.createElement("p"); - p.innerHTML = blurb; - p.className = "blurb"; + p.className = "intro"; + p.innerHTML = name + " is making a " + format + " zine about..."; zine.append(p); + let bq = document.createElement("blockquote"); + let bqP = document.createElement("p"); + bq.className = "blurb" + bqP.innerHTML = blurb; + bq.append(bqP); + zine.append(bq); + return zine; } diff --git a/styles/main.css b/styles/main.css index 0465aff..f4cc382 100644 --- a/styles/main.css +++ b/styles/main.css @@ -7,7 +7,7 @@ --color-header-light: #185370; --color-bg-dark: #1f1f1f; - --color-text-dark: #4fcdfe; + --color-text-dark: #91c73b; --color-header-dark: #ff87f3; --color-bg-wip: #fbcc0a;