🍕🔖 Checkpoint

./index.html:69682263/1217
./styles/main.css:69682263/791
This commit is contained in:
Glitch (glitch-hello-website)
2024-12-11 23:34:44 +00:00
parent eb4eece4e6
commit aadab6ad18
2 changed files with 31 additions and 23 deletions

View File

@ -51,7 +51,7 @@
When: When:
</h2> </h2>
<p> <p>
Early-mid 2025. Exact dates not yet set. Early-mid 2025. Exact dates proposed below.
</p> </p>
<h3> <h3>
@ -98,16 +98,18 @@
(deadline 3 + 4 weeks) (deadline 3 + 4 weeks)
</p> </p>
<p> <p>
Physical zines packaged and ready for shipment. Digital zines are organized and ready to share.
</p>
<h3>
Deadline 5: 4 July 2025
</h3>
<p>
(deadline 4 + 4 weeks)
</p>
<p>
Physical zines arrive at recipients. Digital zines shared.
</p> </p>
<ul>
<li><b>Deadline 0 - 17 January 2025:</b> Artist sign-up closes</li>
<li><b>Deadline 1 (deadline 0 + 2 weeks) - 31 January 2025:</b> Backer sign-up closes; artists are informed # of physical zines</li>
<li><b>11 April 2025 - deadline 2 (deadline 1 + 10 weeks):</b> Art submission deadline (digital zines submitted; physical zines in the mail)</li>
<li><b>9 May 2025 - deadline 3 (deadline 2 + 4 weeks):</b> Physical zines arrive at distributor</li>
<li><b>6 June 2025 - deadline 4 (deadline 3 + 4 weeks):</b> Physical zines packaged and ready for shipment; digital zines organized and ready to share</li>
<li><b>4 July 2025 - deadline 5 (deadline 4 + 4 weeks):</b> Physical zines to arrive at recipients; digital zines shared</li>
</ul>
</div> </div>
</div> </div>

View File

@ -1,8 +1,8 @@
/* Our default values set as CSS variables */ /* Our default values set as CSS variables */
:root { :root {
--color-bg: #69F7BE; --color-bg: #f0f0f0;
--color-text-main: #000000; --color-text-main: #185370;
--color-text-header: #2800FF; --color-text-header: #93005D;
--color-primary: #FFFF00; --color-primary: #FFFF00;
--wrapper-height: 87vh; --wrapper-height: 87vh;
--image-max-width: 300px; --image-max-width: 300px;
@ -72,6 +72,7 @@ END Glitch hello-app default styles
body { body {
font-family: HK Grotesk; font-family: HK Grotesk;
background-color: var(--color-bg); background-color: var(--color-bg);
color: var(--color-text-main);
} }
/* Page structure */ /* Page structure */
@ -84,21 +85,26 @@ body {
.content { .content {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center;
justify-content: center;
} }
.title { /* Headings */
h1, h2, h3 {
color: var(--color-text-header); color: var(--color-text-header);
font-family: HK Grotesk;
font-style: normal;
font-weight: bold; font-weight: bold;
font-size: 65px;
line-height: 105%; line-height: 105%;
margin: 0;
} }
/* Subheading */ h1 {
h2, h3 { font-size: 3rem;
color: var(--color-text-header); margin: 1rem 0;
}
h2 {
font-size: 2rem;
margin: .5rem 0 0 0;
}
h3 {
font-size 1.5rem;
margin: .5rem 0 0 0;
} }