Thumbnail-Zeile

Thumbnail-Zeile: CSS-Card. Kopiere die Regeln oder den Prompt, der das Ergebnis nachbaut.

horizontalmedia-leftcompactlist-itemlight

CSS
.card-007 {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 360px;
  padding: 10px;
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  color: #111;
  font-family: system-ui,sans-serif;
  transition: background .15s
}
.card-007:hover {
  background: #f4f4f5
}
.card-007__thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: linear-gradient(135deg,#99f6e4,#14b8a6);
  flex: none
}
.card-007__text {
  display: flex;
  flex-direction: column;
  flex: 1
}
.card-007 strong {
  font-size: 15px
}
.card-007__text span {
  font-size: 13px;
  color: #71717a
}
.card-007__arrow {
  color: #a1a1aa;
  transition: transform .2s
}
.card-007:hover .card-007__arrow {
  transform: translateX(4px);
  color: #111
}
.card-007 :is(a,button,input,select,textarea):focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }
HTML
<a class="card-007" href="#">
  <span class="card-007__thumb"></span>
  <span class="card-007__text"><strong>Spacing tokens</strong><span>4 / 8 / 12 / 16 / 24 / 32</span></span>
  <span class="card-007__arrow"><svg viewBox="0 0 24 24" width="16" height="16" fill="none" stroke="currentColor" stroke-width="2"><path d="M9 6l6 6-6 6"/></svg></span>
</a>
Prompt

Erstelle eine 360px breite klickbare Zeilen-Card: flex, 14px Gap, 10px Padding, weißer Hintergrund, 12px Radius. Links ein 56px quadratisches Thumbnail mit 10px Radius und 135deg Gradient #99f6e4 zu #14b8a6. In der Mitte ein 15px fetter Titel über einem 13px #71717a Untertitel. Rechts ein 16px Chevron-SVG in #a1a1aa. Beim Hover wird der Hintergrund #f4f4f5, der Pfeil gleitet 4px nach rechts und wird #111.