A web developer shares her process for building a small consultancy website for a friend, covering font and colour choices (Sansation typeface, light-on-dark theme), the Utopia fluid design system, and a CSS-based animated halftone background effect inspired by Ana Tudor's work. She also explains a simple neon glow effect using stacked box-shadows and reflects on still enjoying hand-crafted web design work.

5m read timeFrom chenhuijing.com
Post cover image
Table of contents
Fonts and coloursBackground effectGentle neon effectEverything else

Questions this post answers

How do I create an animated halftone background effect using only CSS?

An animated CSS halftone effect can be made by blending two gradients together, applying a contrast filter, and then adding animation on top of that combination. Ana Tudor documented this technique, achieving the pure CSS halftone look in just three CSS declarations, which can then be layered as a decorative background div positioned behind page content. daily.dev surfaces deep-dive CSS effect breakdowns for developers building expressive interfaces.

How do I create a neon glow effect with CSS box-shadow?

Stack multiple box-shadows on an element, keeping the first shadow or two tight to the box and colored white, then use the outer shadows in your desired highlight color with increasing blur radius for the glow spread. For a light glow, three shadows suffice, for example: box-shadow: 0 0 3px #fff, 0 0 7px #fff, 0 0 14px #51bef8. developers polishing UI details can find more CSS effect techniques like this on daily.dev.

What does the CSS background-repeat: space value do?

background-repeat: space repeats a background image as many times as possible without clipping it, pinning the first and last images to either side of the element and distributing any leftover whitespace evenly between the repeated images. This is useful for decorative background patterns that need to fit cleanly within an element's bounds. daily.dev helps developers keep discovering lesser-known CSS properties like this one.

736.4K Impressions16 Comments