Brutalist Stamp
Hard-edged offset-shadow card with mono font and a hot-pink accent — zero radius, zero apology. Brutalist design system fixture.
Brutalist Stamp the 2nd of 19 designs in the 19 CSS Blockquote Designs collection. The design is implemented in pure CSS — no JavaScript required. Copy the HTML and CSS panels below into your project. Because the demo is pure CSS, it works in any framework or templating engine you happen to use. The design honours prefers-reduced-motion and uses real semantic markup, so it ships accessibility-ready out of the box.
Live preview
The code
<figure class="cbq-brut">
<blockquote>
<p>SHIP IT. THE DOCS CAN COME LATER.</p>
</blockquote>
<figcaption>— anonymous senior dev</figcaption>
</figure> .cbq-brut {
max-width: 320px;
padding: 22px 22px 16px;
background: #fff7ed;
border: 2px solid #0a0a0a;
box-shadow: 7px 7px 0 #ff3d6e;
font-family: "Courier New", monospace;
color: #0a0a0a;
}
.cbq-brut blockquote {
margin: 0;
}
.cbq-brut p {
margin: 0;
font-size: 14px;
font-weight: 700;
letter-spacing: 0.02em;
line-height: 1.45;
}
.cbq-brut figcaption {
margin-top: 12px;
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.12em;
color: #ff3d6e;
}