Sticker tag poster
Sticker tag poster: a CSS card. Copy the rules, or the prompt that rebuilds it.
Hot
Poster workshop
Sat 14:00 · Studio B
CSS
.card-033 {
width: 260px;
background: #fff;
border: 3px solid #111;
box-shadow: 6px 6px 0 #111;
font-family: system-ui,sans-serif;
color: #111;
transition: box-shadow .15s,transform .15s
}
.card-033:hover {
transform: translate(-2px,-2px);
box-shadow: 10px 10px 0 #111
}
.card-033__img {
position: relative;
height: 160px;
border-bottom: 3px solid #111;
background: repeating-linear-gradient(-45deg,#ff90e8 0 12px,#fff 12px 24px)
}
.card-033__img span {
position: absolute;
right: -10px;
top: 12px;
padding: 5px 12px;
background: #111;
color: #fff;
font-size: 12px;
font-weight: 900;
text-transform: uppercase;
transform: rotate(6deg)
}
.card-033 h3 {
margin: 14px 16px 4px;
font-size: 19px;
font-weight: 900;
text-transform: uppercase
}
.card-033 p {
margin: 0 16px 16px;
font-size: 13px;
font-weight: 600
}
HTML
<article class="card-033">
<div class="card-033__img"><span>Hot</span></div>
<h3>Poster workshop</h3>
<p>Sat 14:00 · Studio B</p>
</article>Prompt
Make a neo-brutalist 260px image card: white, 3px solid #111 border, 6px 6px 0 #111 hard shadow that grows to 10px 10px while the card nudges 2px up-left on hover. Top: 160px image area with a 3px bottom border and a -45deg repeating stripe pattern in pink #ff90e8 and white (12px bands), with a black sticker tag "HOT" rotated 6deg hanging off the right edge. Below: uppercase 19px 900-weight title and a 13px semibold detail line.