Skip to main content

Rothko Painting

CSS Visual Practice

Source Code

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Rothko Painting</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="frame">
<div class="canvas">
<div class="one"></div>
<div class="two"></div>
<div class="three"></div>
</div>
</div>
</body>
</html>

What I Learned

  • HTML layout with nested divs to build abstract compositions
  • CSS techniques for expressive visuals:
    • filter: blur() for soft, painterly edges
    • box-shadow and border-radius for depth and shape variation
    • transform: rotate() for natural imperfection
  • Color blocking and visual hierarchy using only CSS
  • How layout, effects, and proportions come together to simulate artwork

Time 🕒 2 hours 5 minutes (while on vacation!)

Personal Note I had a lot of fun with this one more than with static forms or standard layouts. As soon as the project took a visual direction, I felt lit up inside, maybe thanks to my design background. It's surprising how motivated I was: I literally coded part of this while ferry-hopping around an island. That moment made me realize… maybe this really is passion.