This commit is contained in:
2025-11-17 13:06:20 -08:00
commit ac1132bb9a
2 changed files with 71 additions and 0 deletions

25
css/main.css Normal file
View File

@ -0,0 +1,25 @@
:root {
color-scheme: light dark;
--color-light: #d5e9ff;
--color-dark: #001a33;
--color-orange-light: #ff764f;
--color-orange-dark: #f55e33;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
color: light-dark(var(--color-dark), var(--color-light));
background-color: light-dark(var(--color-light), var(--color-dark));
}
a,
a:active {
color: light-dark(var(--color-orange-light), var(--color-orange-dark));
}

46
index.html Normal file
View File

@ -0,0 +1,46 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Solstice Market at the Beall Greenhouses</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<!-- Meta -->
<link rel="canonical" href="/" />
<meta name="description" content="Solstice Market at the Beall Greenhouses" />
<meta name="robots" content="index,follow" />
<meta property="og:title" content="Solstice Market at the Beall Greenhouses" />
<meta property="og:type" content="article" />
<meta property="og:url" content="/" />
<meta property="og:description" content="Solstice Market at the Beall Greenhouses" />
<!-- CSS -->
<link rel="stylesheet" href="/css/main.css">
</head>
<body>
<header>
<h1>Solstice Market at the Beall Greenhouses</h1>
</header>
<main>
<h2>What?</h2>
<p></p>
<h2>When?</h2>
<p></p>
</main>
<footer>
<ul>
<li>
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
<a href="montanahawke@gmail.com?subject=Beall%20Greenhouses%20Market">
Hawke
</a>
</li>
</ul>
<p>brought to you in 2025</p>
</footer>
</body>
</html>