Klassisches Pricing
Klassisches Pricing: CSS-Card. Kopiere die Regeln oder den Prompt, der das Ergebnis nachbaut.
Starter
$12/month
- 3 projects
- Unlimited pages
- Email support
CSS
.card-015 {
width: 260px;
padding: 26px 24px;
background: #fff;
border: 1px solid #e5e7eb;
border-radius: 16px;
font-family: system-ui,sans-serif;
color: #111827
}
.card-015 h3 {
margin: 0;
font-size: 14px;
font-weight: 600;
color: #6b7280;
text-transform: uppercase;
letter-spacing: .08em
}
.card-015__price {
margin: 10px 0 18px;
font-size: 14px;
color: #6b7280
}
.card-015__price span {
font-size: 40px;
font-weight: 700;
color: #111827;
letter-spacing: -.02em
}
.card-015 ul {
margin: 0 0 22px;
padding: 0;
list-style: none;
font-size: 14px
}
.card-015 li {
padding: 6px 0 6px 24px;
position: relative
}
.card-015 li::before {
content: "";
position: absolute;
left: 0;
top: 11px;
width: 14px;
height: 14px;
border-radius: 50%;
background: #dcfce7 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/9px no-repeat
}
.card-015 a {
display: block;
padding: 11px;
text-align: center;
border-radius: 10px;
background: #111827;
color: #fff;
font-size: 14px;
font-weight: 600;
text-decoration: none
}
.card-015 a:hover {
background: #000
}
.card-015 :is(a,button,input,select,textarea):focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }
HTML
<article class="card-015">
<h3>Starter</h3>
<p class="card-015__price"><span>$12</span>/month</p>
<ul><li>3 projects</li><li>Unlimited pages</li><li>Email support</li></ul>
<a href="#">Choose Starter</a>
</article>Prompt
Baue eine 260px Pricing-Card: weiß, 1px #e5e7eb Rahmen, 16px Radius, 26px 24px Padding. Der Planname als 14px #6b7280 Versalien-Label, dann ein 40px fetter Preis "$12" in #111827 mit "/month" in 14px Grau. Eine Feature-Liste mit 14px Zeilen, jede mit einem 14px grünen Kreis davor (#dcfce7 mit einem #16a34a Häkchen). Dunkler CTA-Button in voller Breite (#111827, 10px Radius, 14px semibold weiß), der beim Hover reinschwarz wird.