pushing up for hawke to see

This commit is contained in:
2025-11-18 08:23:24 -08:00
parent 2e8ff1e755
commit 3a60060f25
6 changed files with 158 additions and 24 deletions

View File

@ -14,24 +14,127 @@
}
body {
color: light-dark(var(--color-dark), var(--color-light));
background-color: light-dark(var(--color-dark), var(--color-light));
color: light-dark(var(--color-light), var(--color-dark));
display: flex;
flex-direction: column;
font-family: sans-serif;
min-height: 100vh;
}
#content {
background-color: light-dark(var(--color-light), var(--color-dark));
color: light-dark(var(--color-dark), var(--color-light));
width: 100%;
flex-grow: 1;
border-radius: 0 0 2rem 2rem;
padding: 2rem 0;
}
header,
main {
width: 65%;
margin: 0 auto;
}
@media (max-width: 650px) {
header,
main {
width: 95%;
}
}
header img {
display: block;
max-height: 25vh;
max-width: 100%;
margin: 0 auto;
}
@media (prefers-color-scheme: light) {
#dark-logo {
visibility: hidden;
display: none;
}
}
@media (prefers-color-scheme: dark) {
#light-logo {
visibility: hidden;
display: none;
}
}
a,
a:active {
color: light-dark(var(--color-orange-light), var(--color-orange-dark));
h1 {
text-align: center;
margin: 2rem 0;
}
h2 {
margin: 1rem 0 0;
}
a {
font-weight: bold;
text-decoration: solid underline .25rem;
}
#content p {
margin: .5rem 0 0 2.5rem;
}
@media (max-width: 650px) {
#content p {
margin-left: 1.25rem;
}
}
#artists {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.artist {
margin: .5rem 0 0 1.25rem;
}
@media (max-width: 650px) {
.artist {
margin-left: .625rem;
}
}
.artist img {
max-height: 35vh;
max-width: 100%;
}
@media (max-width: 650px) {
.artist img {
max-width: 100%;
}
}
footer {
width: 95%;
margin: 0 auto;
padding: 0 0 1rem;
}
footer p {
text-align: center;
margin: 1rem 0 0;
}
footer a {
color: light-dark(var(--color-light), var(--color-dark));
text-decoration-color: light-dark(var(--color-orange-light), var(--color-orange-dark));
}
#contacts {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-content: center;
gap: 1rem;
margin: 0 0 1rem;
}

BIN
img/greenhouse1.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 MiB

BIN
img/greenhouse2.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 MiB

BIN
img/greenhouse3.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 MiB

BIN
img/lee.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 MiB

View File

@ -17,6 +17,7 @@
<link rel="stylesheet" href="/css/main.css">
</head>
<body>
<div id="content">
<header>
<img id="dark-logo" src="/img/dark-logo.png" alt="Linework icon depicting a sunrise or sunset with two clouds">
<img id="light-logo" src="/img/light-logo.png" alt="Linework icon depicting a sunrise or sunset with two clouds">
@ -27,22 +28,52 @@
<p></p>
<h2>When?</h2>
<p></p>
<p><time datetime="2025-12-21 10:00">Sunday, December 21st, 10am - 5pm</time>.</p>
<h2>Where?</h2>
<p>Studios in the former cold storage facility at the old Beall Greenhouses: 18527 Beall Rd SW, Vashon, WA 98070</p>
<h2>Who?</h2>
<p>Participating artists include...</p>
<div id="artists">
<div class="artist">
<img src="/img/greenhouse1.jpg" alt="a dilapidated greenhouse">
<h3>Jennifer Hawke</h3>
</div>
<div class="artist">
<img src="/img/greenhouse3.jpg" alt="a dilapidated greenhouse">
<h3>Mary McGinnis</h3>
</div>
<div class="artist">
<img src="/img/lee.jpg" alt="a block print in black ink on white paper depicting a grinning and very fat raccoon, waving one little paw">
<h3>Lee Cattarin</h3>
</div>
<div class="artist">
<img src="/img/greenhouse2.jpg" alt="a dilapidated greenhouse">
<h3>Brooke Osment</h3>
</div>
</div>
</main>
</div>
<footer>
<ul>
<li>
<div id="contacts">
<p>
Website questions or feedback? Email
<a href="mailto:lee.cattarin@gmail.com?cc=montanahawke@gmail.com&subject=Beall%20Greenhouses%20Market">
Lee
</a>
</li>
<li>Market questions? Email
</p>
<p>|</p>
<p>Market questions? Email
<a href="montanahawke@gmail.com?subject=Beall%20Greenhouses%20Market">
Hawke
</a>
</li>
</ul>
</p>
</div>
<p>brought to you in 2025</p>
</footer>
</body>