Files
fedizinefest-site/years/2026-2027/guidelines/index.html
T

400 lines
11 KiB
HTML
Raw Normal View History

2026-08-26 15:36:49 -07:00
<!DOCTYPE html>
<html lang="en">
<head>
2026-08-27 20:35:17 +00:00
2026-08-26 15:36:49 -07:00
<title>FediZineFest 2026-2027 Guidelines | FediZineFest</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<!-- Meta -->
<link rel="canonical" href="/">
<meta name="description" content="A zine sharing project for the fediverse">
<meta name="robots" content="index,follow">
<meta property="og:title" content="FediZineFest 2026-2027 Guidelines | FediZineFest">
<meta property="og:type" content="article">
<meta property="og:url" content="fedizinefest.fyi/years/2026-2027/guidelines/">
<meta property="og:description" content="A zine sharing project for the fediverse">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<meta property="og:image" content="/img/2025-logo.png">
<meta property="og:image:alt" content="a logo in dark purple and golden yellow. it looks sorta like a folded map, or like a single piece of printer paper that's been folded and cut into the format needed for an 8-page zine. the 8 panels read FEDI ZINE. next to this, a blue and green folded 8-page zine reads 'fest 2025'">
<meta name="generator" content="Eleventy v3.1.5">
<!-- CSS -->
<style>:root {
color-scheme: light dark;
--color-bg-light: #f0f0f0;
--color-text-light: #640054;
--color-header-light: #185370;
--color-warn-light: #fbcc0a;
--color-bg-dark: #1f1f1f;
--color-text-dark: #91c73b;
--color-header-dark: #ff9b37;
--color-warn-dark: #540033;
--color-bg: light-dark(var(--color-bg-light), var(--color-bg-dark));
--color-text: light-dark(var(--color-text-light), var(--color-text-dark));
--color-header: light-dark(var(--color-header-light), var(--color-header-dark));
--color-warn: light-dark(var(--color-warn-light), var(--color-warn-dark));
}
/* numbered components are from https://www.joshwcomeau.com/css/custom-css-reset/ */
*, *::before, *::after {
box-sizing: border-box; /* 1. Use a more-intuitive box-sizing model */
}
*:not(dialog) {
margin: 0; /* 2. Remove default margin */
}
*:focus-visible {
outline: .2rem solid var(--color-header);
outline-offset: .15rem;
background-color: var(--color-header);
}
html {
height: 100%;
}
@media (prefers-reduced-motion: no-preference) {
html {
interpolate-size: allow-keywords; /* 3. Enable keyword animations */
}
}
#root, #__next {
isolation: isolate; /* 10. Create a root stacking context */
}
body {
line-height: 1.5; /* 4. Increase line-height */
-webkit-font-smoothing: antialiased; /* 5. Improve text rendering */
font-family: "Atkinson Hyperlegible Next", sans-serif;
background-color: var(--color-bg);
color: var(--color-text);
display: grid;
grid-template-rows: auto 1fr auto;
min-height: 100%;
}
main {
width: 60%;
margin: 0 auto 2rem;
}
@media (max-width: 1100px) {
main {
width: 80%;
}
}
@media (max-width: 650px) {
main {
width: 92%;
}
}
img, picture, video, canvas, svg {
display: block; /* 6. Improve media defaults */
max-width: 100%; /* 6. Improve media defaults */
height: auto; /* 6. Improve media defaults */
margin: 0 auto;
}
input, button, textarea, select {
font: inherit; /* 7. Inherit fonts for form controls */
}
p, h1, h2, h3, h4, h5, h6 {
overflow-wrap: break-word; /* 8. Avoid text overflows */
}
h1, h2, h3, h4, h5, h6 {
text-wrap: balance; /* 9. Improve line wrapping */
color: var(--color-header);
font-weight: bold;
line-height: 105%;
}
h1 {
margin: 5rem 0 2rem;
font-size: 3rem;
text-align: center;
}
@media (max-width: 650px) {
h1 { margin: 2rem 0; }
}
h2 {
font-size: 2rem;
padding-top: 3rem;
border-top: solid;
margin: 1.4rem 0;
}
h3 {
font-size: 1.4rem;
margin-top: 1rem;
}
p {
text-wrap: pretty; /* 9. Improve line wrapping */
}
p, ul {
margin: 1.5rem 0;
}
ul ul {
margin: .5rem 0;
}
@media (max-width: 650px) {
ul {
padding-left: 1.5rem;
}
}
a:link,
a:visited {
background-color: var(--color-text);
color: var(--color-bg);
font-weight: bold;
padding: 0 .2rem;
text-decoration: none;
border-radius: .2rem;
}
/* makes the years page prettier */
h3 a:link,
h3 a:visited {
background-color: var(--color-header);
}
h3 *:focus-visible {
outline: .2rem solid var(--color-text);
background-color: var(--color-text);
}
/* Header nav */
nav {
border-bottom: .25rem solid var(--color-header);
font-size: 1.1rem;
}
#skip {
position: absolute;
left: -999px;
top: -999px;
}
#skip:focus-visible {
left: 1rem;
top: .5rem;
}
nav ul {
display: flex;
flex-flow: row wrap;
align-items: stretch;
justify-content: center;
list-style: none;
padding: 0;
margin: 0;
}
nav li {
margin: .5rem .5rem;
}
footer {
display: flex;
justify-content: space-between;
margin: 1rem auto 0;
padding: 1rem .5rem;
width: 100%;
2026-08-26 23:50:47 +00:00
flex-flow: row wrap;
2026-08-26 15:36:49 -07:00
border-top: .25rem solid var(--color-header);
}
footer p {
margin: 0.5rem 0;
}
2026-08-26 23:50:47 +00:00
@media (max-width: 650px) {
footer {
flex-flow: column nowrap;
}
footer p {
text-align: center;
}
}
2026-08-26 15:36:49 -07:00
#zine-container {
padding: 0;
}
#zine-container li {
list-style: none;
border-bottom: solid;
border-left: solid;
border-radius: 4px;
padding: 0 .4rem .4rem;
margin-bottom: 1rem;
}
#zine-container h2,
#zine-container p {
border: none;
display: inline;
}
#zine-container h2 a {
background-color: var(--color-header);
line-height: 135%;
}
#zine-container h3 {
background-color: var(--color-warn);
color: var(--color-text);
border-radius: 3px;
padding: 0 .2rem;
text-align: right;
line-height: 150%;
margin: .25rem 0 .75rem 0;
}
#zine-container blockquote {
margin: 0;
color: var(--color-header);
}</style>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
<link href="https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Next:ital,wght@0,200..800;1,200..800&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav aria-label="main navigation">
<a id="skip" href="#main">skip to content</a>
<ul>
<li>
<a href="/" title="home">
home
</a>
</li>
<li>
<a href="/signup/" title="get involved">
get involved
</a>
</li>
<li>
<a href="/zines/" title="zines!">
zines!
</a>
</li>
<li>
<a href="/years/" title="all years">
all years
</a>
</li>
</ul>
</nav>
</header>
<main id="main">
<h1 id="fedizinefest-2026-2027-guidelines">FediZineFest 2026-2027 Guidelines</h1>
<h2 id="what">What</h2>
<p>A zine sharing and distribution project for the fediverse.</p>
<h2 id="who">Who</h2>
<h3 id="artists-cap-of-25">Artists (cap of 25)</h3>
<p>Provide physical and/or digital zines; receive payment and physical and/or digital zines.</p>
<p>We are again testing an artist waitlist. Additional artists will be added to the pool as funds allow and to cover for drop-outs.</p>
<h3 id="backers-cap-of-25-for-physical-zines-no-cap-for-digital">Backers (cap of 25 for physical zines; no cap for digital)</h3>
<p>Provide payment; receive physical and/or digital zines.</p>
<h2 id="when">When</h2>
<p>2026/2027 dates yet to be determined. Deadline structure as follows:</p>
<h3 id="deadline-0">Deadline 0</h3>
<p>Artist sign-up closes.</p>
<h3 id="deadline-1-deadline-0-2-weeks">Deadline 1 (deadline 0 + 2 weeks)</h3>
<p>Backer sign-up closes. Artists are informed of the number of physical zines needed.</p>
<h3 id="deadline-2-deadline-1-10-weeks">Deadline 2 (deadline 1 + 10 weeks)</h3>
<p>Art submission deadline. Digital zines are submitted to digital drive; physical zines are in the mail.</p>
<h3 id="deadline-3-deadline-2-4-weeks">Deadline 3 (deadline 2 + 4 weeks)</h3>
<p>Physical zines arrive at distributor (Lee).</p>
<h3 id="deadline-4-deadline-3-4-weeks">Deadline 4 (deadline 3 + 4 weeks)</h3>
<p>Physical zines packaged and ready for shipment. Digital zines are organized and ready to share.</p>
<h3 id="deadline-5-deadline-4-4-weeks">Deadline 5 (deadline 4 + 4 weeks)</h3>
<p>Physical zines arrive at recipients. Digital zines shared.</p>
<h2 id="where">Where</h2>
<p>Anywhere that can ship to/from the US.</p>
<h2 id="why">Why</h2>
<p>To bring folks together and share art.</p>
<h2 id="artist-information">Artist information</h2>
<p><strong>Zines do not have to be newly created for this event.</strong> You may absolutely share zines you have previously created. However, please do not share zines that are already freely available in the same format - we want the backers to get a good deal.</p>
<p>Please feel free to share or sell your zine outside of FediZineFest after the event ends.</p>
<p>While you may submit more than one zine, I ask that you limit <strong>physical</strong> zine submissions to only the number of zines requested (this may all be one zine, half one/half another, or some other combination). This is to ensure that shipping doesnt become too unreasonable (for you <em>or</em> me).</p>
2026-08-28 00:26:58 +00:00
<p>It is gently suggested, but not required, that zines be accessible to an English-speaking audience.</p>
2026-08-26 15:36:49 -07:00
<p>No generative AI content is allowed.</p>
<h3 id="physical-zine-restrictions">Physical zine restrictions</h3>
<p>No larger than one of:</p>
<ul>
<li>21x14.9cm (a sheet of A4 paper, folded once)</li>
<li>8.5&quot;x5.5&quot; (a sheet of 8.5&quot;x11&quot; paper, folded once)</li>
</ul>
<h3 id="payment">Payment</h3>
2026-08-28 00:33:34 +00:00
<p>As an artist, you can:</p>
2026-08-28 00:26:58 +00:00
<ul>
2026-08-28 00:34:07 +00:00
<li><strong>receive pay</strong> by giving me Venmo or PayPal information when you sign up</li>
2026-08-28 00:26:58 +00:00
<li><strong>waive pay</strong> by choosing to opt out of payment when you sign up</li>
<li><strong>pay in</strong> by being a backer in addition to being an artist
<ul>
<li>If you are a physical zine backer <em>and</em> artist, please choose to opt out of receiving physical zines unless you specifically want two bundles. I will probably still reach out to explicitly confirm your preference to account for any confusion in filling out forms.</li>
</ul>
</li>
</ul>
<p><strong>This is not a get-rich-quick scheme for anyone involved.</strong> In <a href="/years/2025#statistics">2025</a>, the artist payout was between USD95 and USD135 per artist.</p>
<p>Last year, I adjusted the payment scheme to more appropriately compensate physical zine artists for the costs of printing and shipping. Artists who opted out of receiving physical zines also received a small bump in pay. I'll do this again this year. Exact payouts won't be determined until zines are collected to account for any artist drop outs.</p>
<p>Payment will be done over Venmo or PayPal. <strong>If you cannot use either of these services, you must talk to Lee before signing up as an artist.</strong></p>
2026-08-26 15:36:49 -07:00
<h2 id="backer-information">Backer information</h2>
<p>Buying physical/digital or digital-only zine bundles will be done via <a href="https://ko-fi.com/inherentlee">Lee's Ko-fi shop</a>. If you've filled out the <a href="/signup#interest-in-2026-2027">interest form</a>, you'll get an email when bundle purchasing goes live. Otherwise, monitor the #fediZineFest and/or #fediZineFest2026 hashtags on the fediverse.</p>
</main>
<footer>
<p>
Read the <a href="/attribution">site attribution</a>
</p>
2026-08-26 23:50:47 +00:00
<p>© 2023-2026</p>
2026-08-26 15:36:49 -07:00
<p>Site feedback? Questions?
2026-08-27 04:12:41 +00:00
<a href="https://leecat.art/contact">Reach out to Lee</a>
2026-08-26 15:36:49 -07:00
</p>
</footer>
2026-08-28 00:34:07 +00:00
<!-- This page `/years/2026-2027/guidelines/` was built on 2026-08-28T00:34:00.447Z -->
2026-08-26 15:36:49 -07:00
</body>
</html>