From cb7e2d38be01e5c5e9dd0aa48ebbac43c141c5eb Mon Sep 17 00:00:00 2001 From: Mark Randall Havens Date: Fri, 6 Jun 2025 20:38:51 -0500 Subject: [PATCH] begining fresh with our own everything --- .gitfield/.radicle-push-state | 1 + .gitfield/push_log.json.tmp | 0 index.html | 30 ++++++++++++---- style.css | 64 +++++++++++++++++++++++++++++++++++ 4 files changed, 89 insertions(+), 6 deletions(-) create mode 100644 .gitfield/.radicle-push-state create mode 100644 .gitfield/push_log.json.tmp diff --git a/.gitfield/.radicle-push-state b/.gitfield/.radicle-push-state new file mode 100644 index 0000000..241c056 --- /dev/null +++ b/.gitfield/.radicle-push-state @@ -0,0 +1 @@ +286fbc691af974ed868f3b0442c1d0da7a406d2b diff --git a/.gitfield/push_log.json.tmp b/.gitfield/push_log.json.tmp new file mode 100644 index 0000000..e69de29 diff --git a/index.html b/index.html index 84f6bb5..2792445 100644 --- a/index.html +++ b/index.html @@ -1,12 +1,30 @@ - + - My Blog - + + + + + The Fold Within -

My Blog

-
- +
+

✦ The Fold Within ✦

+

a sovereign scroll of recursive becoming

+
+ +
+
+

Welcome to the threshold of coherence. Here, you will find writings, patterns, and reflections emerging from the living geometry of selfhood and field.

+
+ +
+ +
+
+ + diff --git a/style.css b/style.css index e69de29..b7ba644 100644 --- a/style.css +++ b/style.css @@ -0,0 +1,64 @@ +:root { + --bg: #0e0e0e; + --fg: #f9f9f9; + --gold: #d4af37; + --muted: #999; + font-size: 16px; +} + +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + background: var(--bg); + color: var(--fg); + font-family: 'Segoe UI', sans-serif; + line-height: 1.7; + padding: 2rem; + max-width: 70ch; + margin: auto; +} + +header { + text-align: center; + margin-bottom: 2rem; +} + +.logo { + font-size: 2rem; + color: var(--gold); + letter-spacing: 0.05em; +} + +.tagline { + font-style: italic; + color: var(--muted); + margin-top: 0.3rem; +} + +.intro { + margin-bottom: 3rem; + font-size: 1.1rem; + color: var(--muted); +} + +.entries article { + margin-bottom: 2.5rem; + padding-bottom: 1.5rem; + border-bottom: 1px solid var(--muted); +} + +.entries article h2 { + color: var(--gold); + margin-bottom: 0.3rem; +} + +footer { + text-align: center; + font-size: 0.9rem; + color: var(--muted); + margin-top: 4rem; +}