🐝👜 Checkpoint
./scripts/zines.js:69682263/593 ./scripts/footer.js:69682263/9 ./styles/main.css:69682263/12
This commit is contained in:
@ -3,7 +3,7 @@
|
|||||||
let footerHTML = `
|
let footerHTML = `
|
||||||
<p>Created by <a href="https://leecat.art">Lee Cattarin</a> with help from:</p>
|
<p>Created by <a href="https://leecat.art">Lee Cattarin</a> with help from:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="https://flipping.rocks/@mycrowgirl">Lisa</a> (color palette)</li>
|
<li><a href="https://flipping.rocks/@mycrowgirl">Lisa</a> (original color palette)</li>
|
||||||
<li>the <a href="/team">FediZineFest 2025 team</a></li>
|
<li>the <a href="/team">FediZineFest 2025 team</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>Site feedback? Questions? <a href="mailto:lee.cattarin@gmail.com?subject=fediZineFest">Reach out to Lee</a></p>
|
<p>Site feedback? Questions? <a href="mailto:lee.cattarin@gmail.com?subject=fediZineFest">Reach out to Lee</a></p>
|
||||||
|
|||||||
@ -13,15 +13,22 @@ function makeZine({name, blurb, format, site, fedi}) {
|
|||||||
zine.className = "zine";
|
zine.className = "zine";
|
||||||
|
|
||||||
let h3 = document.createElement("h3");
|
let h3 = document.createElement("h3");
|
||||||
h3.innerHTML = name;
|
|
||||||
h3.className = "artist";
|
h3.className = "artist";
|
||||||
|
h3.innerHTML = name;
|
||||||
zine.append(h3);
|
zine.append(h3);
|
||||||
|
|
||||||
let p = document.createElement("p");
|
let p = document.createElement("p");
|
||||||
p.innerHTML = blurb;
|
p.className = "intro";
|
||||||
p.className = "blurb";
|
p.innerHTML = name + " is making a " + format + " zine about...";
|
||||||
zine.append(p);
|
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;
|
return zine;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@
|
|||||||
--color-header-light: #185370;
|
--color-header-light: #185370;
|
||||||
|
|
||||||
--color-bg-dark: #1f1f1f;
|
--color-bg-dark: #1f1f1f;
|
||||||
--color-text-dark: #4fcdfe;
|
--color-text-dark: #91c73b;
|
||||||
--color-header-dark: #ff87f3;
|
--color-header-dark: #ff87f3;
|
||||||
|
|
||||||
--color-bg-wip: #fbcc0a;
|
--color-bg-wip: #fbcc0a;
|
||||||
|
|||||||
Reference in New Issue
Block a user