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/index.html | |
| 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/index.html')
| -rw-r--r-- | public/posts/index.html | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/public/posts/index.html b/public/posts/index.html new file mode 100644 index 0000000..47d0691 --- /dev/null +++ b/public/posts/index.html @@ -0,0 +1,82 @@ +<!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>Posts | 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> + <div class="container"> + <h1>Posts</h1> + + + <p>Tempor est exercitation ad qui pariatur quis adipisicing aliquip nisi ea consequat ipsum occaecat. Nostrud consequat ullamco laboris fugiat esse esse adipisicing velit laborum ipsum incididunt ut enim. Dolor pariatur nulla quis fugiat dolore excepteur. Aliquip ad quis aliqua enim do consequat.</p> + + + </div> + + +</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> |
