From 1c5f8d1928e205a1cf78d152ac64470b0b978e5f Mon Sep 17 00:00:00 2001 From: "Glitch (glitch-hello-website)" Date: Fri, 13 Dec 2024 01:26:43 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9D=F0=9F=91=9C=20Checkpoint=20./scrip?= =?UTF-8?q?ts/zines.js:69682263/593=20./scripts/footer.js:69682263/9=20./s?= =?UTF-8?q?tyles/main.css:69682263/12?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/footer.js | 2 +- scripts/zines.js | 13 ++++++++++--- styles/main.css | 2 +- 3 files changed, 12 insertions(+), 5 deletions(-) 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;