From 16479476a843577cabf95a3798bdbc053e80910a Mon Sep 17 00:00:00 2001 From: Lee Cattarin Date: Wed, 28 Jan 2026 10:53:44 -0800 Subject: [PATCH] dummy nav --- assets/styles/nav.css | 48 +++++++++++++++++++++++++++++++++++++++++++ index.html | 16 ++++++++++++++- palette/index.html | 1 + 3 files changed, 64 insertions(+), 1 deletion(-) create mode 100644 assets/styles/nav.css diff --git a/assets/styles/nav.css b/assets/styles/nav.css new file mode 100644 index 0000000..65c026b --- /dev/null +++ b/assets/styles/nav.css @@ -0,0 +1,48 @@ +nav { + display: flex; + flex-flow: row wrap; + justify-content: space-between; + align-items: center; + margin: 1rem auto; +} + +nav a { + text-decoration: none; +} + +nav h2 { + display: inline; + margin: 0; + font-size: 1.8rem; +} + +@media (max-width: 650px) { + nav h2 { + font-size: 1.5rem; + } +} + +nav ul { + display: flex; + flex-flow: column; + justify-content: space-around; + align-items: flex-end; + align-self: flex-end; +} + +nav li { + list-style: none; +} + +nav li a { + display: block; + padding: .3rem 0; + font-family: Courier, monospace; + font-size: 1.3rem; +} + +@media (max-width: 650px) { + nav li a { + font-size: 1.2rem; + } +} diff --git a/index.html b/index.html index f2edb98..fd7b313 100644 --- a/index.html +++ b/index.html @@ -18,11 +18,25 @@ +
diff --git a/palette/index.html b/palette/index.html index 0b91bbb..2488a07 100644 --- a/palette/index.html +++ b/palette/index.html @@ -19,6 +19,7 @@ +