diff options
| author | Danilo M. <danix@danix.xyz> | 2026-04-05 09:52:36 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-04-05 09:52:36 +0200 |
| commit | 25b879bd290528adfb47b0042749305a6a408800 (patch) | |
| tree | 22048174696683141c5eaf00a6a4aee34ce8a244 /public/posts/post-2 | |
| parent | 123b15e442a5a2bd2d73fb9d32cdded69a28f109 (diff) | |
| download | danixxyz-theme-25b879bd290528adfb47b0042749305a6a408800.tar.gz danixxyz-theme-25b879bd290528adfb47b0042749305a6a408800.zip | |
fix: resolve matrix rain opacity, menu styling, and featured articles
Issues fixed:
1. Added missing header.css and footer.css imports to main.css (fixes unstyled menu)
2. Increased matrix rain canvas opacity (0.13→0.25, 0.18→0.35) for better visibility
3. Updated home.html to display featured articles first, then latest 3
4. Removed invalid pseudo-element CSS rule on canvas element
The form on /is/here should now be visible, menu properly styled, and matrix rain more prominent.
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
Diffstat (limited to 'public/posts/post-2')
| -rw-r--r-- | public/posts/post-2/index.html | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/public/posts/post-2/index.html b/public/posts/post-2/index.html new file mode 100644 index 0000000..9a56e90 --- /dev/null +++ b/public/posts/post-2/index.html @@ -0,0 +1,89 @@ +<!DOCTYPE html> +<html lang="en-US" dir="ltr"> +<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script> + <meta charset="utf-8"> +<meta name="viewport" content="width=device-width, initial-scale=1"> +<meta name="description" content="Writing about IT, life, and the things that matter."> +<meta name="theme-color" content="#060b10"> +<title>Post 2 | danilo m.</title> + + + <link rel="stylesheet" href="/css/main.css"> + + + <script src="/js/main.js"></script> + + +</head> +<body> + <div class="reading-progress"></div> + <header><div class="header-container"> + <a href="/" class="site-title">Danilo M.</a> + <div class="header-controls"> + <nav> + <ul> + + <li> + <a href="/articles/" > + articles + </a> + </li> + + <li> + <a href="/is/" > + about + </a> + </li> + + <li> + <a href="/is/here/" > + contact + </a> + </li> + + </ul> + </nav> + <button id="theme-toggle-btn" class="theme-toggle" aria-label="Toggle theme">🌙 dark</button> + </div> +</div> +</header> + <main> + <article class="page-page"> + <div class="container-narrow"> + <h1>Post 2</h1> + <div class="post-card-meta" style="margin-bottom: 2rem;"> + <span>Feb 15, 2023</span> + + </div> + + <div class="post-content"> + <p>Anim eiusmod irure incididunt sint cupidatat. Incididunt irure irure irure nisi ipsum do ut quis fugiat consectetur proident cupidatat incididunt cillum. Dolore voluptate occaecat qui mollit laborum ullamco et. Ipsum laboris officia anim laboris culpa eiusmod ex magna ex cupidatat anim ipsum aute. Mollit aliquip occaecat qui sunt velit ut cupidatat reprehenderit enim sunt laborum. Velit veniam in officia nulla adipisicing ut duis officia.</p> +<p>Exercitation voluptate irure in irure tempor mollit Lorem nostrud ad officia. Velit id fugiat occaecat do tempor. Sit officia Lorem aliquip eu deserunt consectetur. Aute proident deserunt in nulla aliquip dolore ipsum Lorem ut cupidatat consectetur sit sint laborum. Esse cupidatat sit sint sunt tempor exercitation deserunt. Labore dolor duis laborum est do nisi ut veniam dolor et nostrud nostrud.</p> + + </div> + </div> + </article> + + +</main> + <footer><div class="footer-container"> + <div class="footer-content"> + <div class="footer-copyright"> + © 2026 Danilo M.. All rights reserved. + </div> + <nav> + <ul class="footer-nav"> + + <li><a href="/articles/">articles</a></li> + + <li><a href="/is/">about</a></li> + + <li><a href="/is/here/">contact</a></li> + + </ul> + </nav> + </div> +</div> +</footer> +</body> +</html> |
