palette page
This commit is contained in:
33
assets/styles/palette.css
Normal file
33
assets/styles/palette.css
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
.color p {
|
||||||
|
width: 50%;
|
||||||
|
margin: 1rem auto;
|
||||||
|
border: .25rem solid var(--color-text);
|
||||||
|
border-radius: 1rem;
|
||||||
|
text-align: center;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
.color p {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#concrete { background-color: var(--color-concrete); }
|
||||||
|
#concrete-alt { background-color: var(--color-concrete-alt); }
|
||||||
|
#green { background-color: var(--color-green); }
|
||||||
|
#green-alt { background-color: var(--color-green-alt); }
|
||||||
|
#teal-light {background-color: var(--color-teal-light); }
|
||||||
|
#teal-dark { background-color: var(--color-teal-dark); }
|
||||||
|
|
||||||
|
#concrete,
|
||||||
|
#concrete-alt,
|
||||||
|
#teal-light {
|
||||||
|
color: var(--color-green);
|
||||||
|
}
|
||||||
|
|
||||||
|
#green,
|
||||||
|
#green-alt,
|
||||||
|
#teal-dark {
|
||||||
|
color: var(--color-concrete);
|
||||||
|
}
|
||||||
54
palette/index.html
Normal file
54
palette/index.html
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>Palette | the historic Beall Greenhouses</title>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<!-- Meta -->
|
||||||
|
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
||||||
|
<link rel="canonical" href="/palette/" />
|
||||||
|
<meta name="description" content="Palette | the historic Beall Greenhouses" />
|
||||||
|
<meta name="robots" content="index,follow" />
|
||||||
|
<meta property="og:title" content="Palette | the historic Beall Greenhouses" />
|
||||||
|
<meta property="og:type" content="article" />
|
||||||
|
<meta property="og:url" content="/palette/" />
|
||||||
|
<meta property="og:description" content="Palette | the historic Beall Greenhouses" />
|
||||||
|
<meta property="og:image" content="/assets/img/logo-light.png" />
|
||||||
|
<meta property="og:image:alt" content="Linework icon depicting a sunrise or sunset with two clouds, in a blue and orange color scheme" />
|
||||||
|
|
||||||
|
<!-- JS -->
|
||||||
|
<script src="/assets/scripts/nav.js" defer></script>
|
||||||
|
|
||||||
|
<!-- CSS -->
|
||||||
|
<link rel="stylesheet" href="/assets/styles/main.css">
|
||||||
|
<link rel="stylesheet" href="/assets/styles/nav.css">
|
||||||
|
<link rel="stylesheet" href="/assets/styles/palette.css">
|
||||||
|
|
||||||
|
<!-- Font -->
|
||||||
|
<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=Bellota:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap" rel="stylesheet">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="content">
|
||||||
|
<header>
|
||||||
|
<nav id="top-nav"><!-- auto-populated by nav.js --></nav>
|
||||||
|
|
||||||
|
<img class="dark-mode" src="/assets/img/logo-dark.png" alt="Linework icon depicting a sunrise or sunset with two clouds, in a blue and orange color scheme">
|
||||||
|
<img class="light-mode" src="/assets/img/logo-light.png" alt="Linework icon depicting a sunrise or sunset with two clouds, in a blue and orange color scheme">
|
||||||
|
</header>
|
||||||
|
<main id="main">
|
||||||
|
<h1>Site Palette</h1>
|
||||||
|
<div class="color">
|
||||||
|
<p id="concrete">#e5e0c7</p>
|
||||||
|
<p id="concrete-alt">#d1cbab</p>
|
||||||
|
<p id="green">#142b15</p>
|
||||||
|
<p id="green-alt">#1a3b1b</p>
|
||||||
|
<p id="teal-light">#4ba19e</p>
|
||||||
|
<p id="teal-dark">#0c6a74</p>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
<footer id="footer"><!-- auto-populated by nav.js --></footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user