Add political stance essay page at /post/#4
Merged
Conversation
Copilot created this pull request from a session on behalf of
spivanatalie64
July 11, 2026 10:54
View session
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Pull request overview
Adds a new standalone static essay page at /post/ with its own layout/theme styling and a scroll-reveal effect implemented via IntersectionObserver.
Changes:
- Introduces new self-contained page at
post/index.html(HTML + inline CSS + inline JS). - Implements a reveal-on-scroll animation for page sections.
- Adds a TOC and structured section layout with reusable UI patterns (callouts, stat rows, comparison grid, tags).
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+29
to
+31
| *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } | ||
| html { scroll-behavior: smooth; } | ||
|
|
Comment on lines
+271
to
+273
| /* Scroll reveal */ | ||
| .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; } | ||
| .reveal.visible { opacity: 1; transform: translateY(0); } |
Comment on lines
+937
to
+948
| <script> | ||
| const observer = new IntersectionObserver((entries) => { | ||
| entries.forEach(entry => { | ||
| if (entry.isIntersecting) { | ||
| entry.target.classList.add('visible'); | ||
| observer.unobserve(entry.target); | ||
| } | ||
| }); | ||
| }, { threshold: 0.06 }); | ||
|
|
||
| document.querySelectorAll('.reveal').forEach(el => observer.observe(el)); | ||
| </script> |
| <meta name="description" content="An honest, evidence-based examination of the structural, financial, and political challenges facing the United States in 2026." /> | ||
| <link rel="icon" type="image/x-icon" href="/favicon.ico" /> | ||
| <link rel="icon" type="image/png" sizes="192x192" href="/favicon-192.png" /> | ||
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" /> |
Comment on lines
+46
to
+54
| /* Nav */ | ||
| nav { | ||
| position: sticky; top: 0; z-index: 100; | ||
| background: rgba(10,10,15,0.92); | ||
| backdrop-filter: blur(12px); | ||
| -webkit-backdrop-filter: blur(12px); | ||
| border-bottom: 1px solid var(--border); | ||
| padding: 0 24px; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Creates a new standalone essay page at
/post/index.htmlpresenting a structured political/social commentary on systemic U.S. issues. The page was initially built with the wrong color scheme (Darren's green theme) and had a broken scroll animation, both of which are fixed here.Page & Theme
/post/index.html; no build step, self-containednatalie.acreetionos.org:#0a0a0fbg,#c084fc/#7c3aedaccent,rgba(255,255,255,0.06–0.08)cards/borders.reveal+.visibleviaIntersectionObserverinstead of the previous broken pattern that toggled.fade-inoff then back on, causing an opacity flickerContent (9 sections)