proomt

Search

Search posts, papers, and topics

All posts

Chen Hui Jing4 min readintermediate

I still like writing websites by hand

Summary

A personal blog post describing how the author hand‑crafted a single‑page site for a consultant using Astro, a custom CSS halftone background (leveraging `background‑repeat: space`) and a subtle neon glow via stacked box‑shadows. Includes a few concrete CSS snippets and design‑system references but no deep engineering analysis.

  • Use `background-repeat: space` to evenly distribute repeated background images without clipping.
  • Create a mild neon glow by stacking three `box-shadow` values, keeping the inner shadows white and the outer one in the highlight colour.
  • Astro can be a lightweight choice for static single‑page sites, allowing future expansion (e.g., a blog) without heavy overhead.
  • Adopting a design system like Utopia can streamline visual consistency even for tiny projects.

Shows that even low‑complexity sites can benefit from thoughtful CSS tricks and a modular framework, offering quick, maintainable solutions for freelancers or hobbyists who need a professional online presence without a full CMS.

5/10

Related reading

  1. Creating a Blog in Gemini://

    A practical guide to setting up a Gemini‑based blog (gemlog), covering platform choices, folder layout, naming conventions, optional features like favicons, security.txt, and interactive primitives using TLS client certificates.

    Lobstersbrennan.day17 minlobste.rs24
  2. CSS-Tricks could be a co-op

    The author argues that CSS-Tricks, a critical web development resource, has struggled under corporate ownership because it wasn't a core strategic priority. They propose a co-op model as a more sustainable alternative to preserve such valuable knowledge infrastructure, prioritizing cultivation over profit.

    Lobstersericwbailey.website2 minHN2lobste.rs41
  3. Introducing: Dark mode for Flare

    Flare adds a dark theme. The post outlines the design steps: defining semantic color tokens, adjusting gradients and shadows, and using side‑by‑side screenshots to verify the light theme stays unchanged. Accessibility is mentioned but no code or measurable results are provided.

    Freek Van der Hertenfreek.dev1 min