Linien-Pricing

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

pricingminimalmonolighthover-border

Team$49

Per workspace, billed yearly.

  • 10 seats
  • SSO
  • Audit log
Select
CSS
.card-017 {
  width: 250px;
  padding: 22px;
  background: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 4px;
  font-family: ui-monospace,monospace;
  color: #171717;
  transition: border-color .2s
}
.card-017:hover {
  border-color: #171717
}
.card-017 header {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700
}
.card-017 p {
  margin: 6px 0 16px;
  font-size: 12px;
  color: #737373
}
.card-017 ul {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  border-top: 1px solid #e5e5e5
}
.card-017 li {
  padding: 8px 0;
  border-bottom: 1px solid #e5e5e5
}
.card-017 a {
  font-size: 13px;
  font-weight: 700;
  color: #171717;
  text-decoration: none
}
.card-017 a:hover {
  text-decoration: underline
}
.card-017 :is(a,button,input,select,textarea):focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }
HTML
<article class="card-017">
  <header><span>Team</span><span>$49</span></header>
  <p>Per workspace, billed yearly.</p>
  <ul><li>10 seats</li><li>SSO</li><li>Audit log</li></ul>
  <a href="#">Select</a>
</article>
Prompt

Baue eine 250px minimalistische Pricing-Card in einer Monospace-Schrift: weiß, 1px #d4d4d4 Rahmen, 4px Radius, 22px Padding. Kopfzeile mit Planname "Team" links und Preis "$49" rechts, beide 16px bold. Eine 12px graue #737373 Notiz, dann eine Feature-Liste, in der jede Zeile 13px hat, mit 8px Padding und 1px #e5e5e5 Trennlinien. Unten ein "Select" 13px fetter Textlink. Beim Hover dunkelt der Card-Rahmen auf #171717.