Zitat mit Akzentleiste
Zitat mit Akzentleiste: CSS-Card. Kopiere die Regeln oder den Prompt, der das Ergebnis nachbaut.
The label printer has one button. The warehouse team stopped asking for training.
CSS
.card-027 {
width: 340px;
margin: 0;
padding: 22px 24px 22px 26px;
background: #fff;
border-left: 4px solid #6366f1;
border-radius: 4px 14px 14px 4px;
box-shadow: 0 4px 18px rgba(0,0,0,.06);
font-family: system-ui,sans-serif;
color: #1f2937
}
.card-027 blockquote {
margin: 0 0 18px;
font-size: 17px;
line-height: 1.5;
font-weight: 500
}
.card-027 figcaption {
display: flex;
align-items: center;
gap: 12px
}
.card-027__logo {
width: 32px;
height: 32px;
display: grid;
place-items: center;
border-radius: 8px;
background: #6366f1;
color: #fff;
font-weight: 800;
font-size: 15px
}
.card-027__who {
display: flex;
flex-direction: column
}
.card-027 b {
font-size: 14px
}
.card-027 small {
font-size: 12px;
color: #6b7280
}
.card-027:hover {
border-left-color: #4338ca
}
HTML
<figure class="card-027">
<blockquote>The label printer has one button. The warehouse team stopped asking for training.</blockquote>
<figcaption><span class="card-027__logo">P</span><span class="card-027__who"><b>Ana Kowalczyk</b><small>Operations lead at Pillow</small></span></figcaption>
</figure>Prompt
Erstelle eine 340px Testimonial-Card: weiß, 4px indigofarbener #6366f1 linker Rahmen (dunkelt beim Hover auf #4338ca), Radius 4px an den linken Ecken und 14px rechts, Schatten 0 4px 18px rgba(0,0,0,.06). Zitat in 17px medium #1f2937 mit 1.5 Zeilenhöhe. Footer: eine 32px abgerundete quadratische Logomarke (8px Radius, #6366f1 Hintergrund, fetter weißer Buchstabe "P"), dann 14px fetter Name und 12px #6b7280 Rolle gestapelt.