Großes Anführungszeichen
Großes Anführungszeichen: CSS-Card. Kopiere die Regeln oder den Prompt, der das Ergebnis nachbaut.
The kettle shipped on Tuesday. The manual was two pages.
CSS
.card-025 {
position: relative;
width: 320px;
margin: 0;
padding: 34px 26px 24px;
background: #fff;
border: 1px solid #e7e5e4;
border-radius: 16px;
font-family: Georgia,serif;
color: #292524
}
.card-025::before {
content: "“";
position: absolute;
top: 8px;
left: 18px;
font-size: 80px;
line-height: 1;
color: #e7e5e4;
font-family: Georgia,serif
}
.card-025 blockquote {
position: relative;
margin: 0 0 18px;
font-size: 18px;
line-height: 1.5;
font-style: italic
}
.card-025 figcaption {
display: flex;
flex-direction: column;
font-family: system-ui,sans-serif
}
.card-025 b {
font-size: 14px
}
.card-025 span {
font-size: 12px;
color: #78716c
}
HTML
<figure class="card-025">
<blockquote>The kettle shipped on Tuesday. The manual was two pages.</blockquote>
<figcaption><b>Sam Rivera</b><span>Head of Design, Loop</span></figcaption>
</figure>Prompt
Baue eine 320px Testimonial-Card: weiß, 1px #e7e5e4 Rahmen, 16px Radius, Padding 34px 26px 24px. Ein großes dekoratives öffnendes Anführungszeichen (80px Georgia, Farbe #e7e5e4) sitzt oben links hinter dem Text. Das Zitat ist 18px kursiv Georgia in #292524 mit 1.5 Zeilenhöhe. Darunter, in einer serifenlosen Schrift, der Name in 14px bold und der Titel in 12px #78716c gestapelt.