# Line pricing (C 017)

Category: Cards  
Tags: pricing, minimal, mono, light, hover-border  
Page: https://designforai.dev/snippet/card-017

## Prompt

Build a 250px minimalist pricing card in a monospace font: white, 1px #d4d4d4 border, 4px radius, 22px padding. Header row with plan name "Team" left and price "$49" right, both 16px bold. A 12px gray #737373 note, then a feature list where each row is 13px with 8px padding and 1px #e5e5e5 dividers. Bottom "Select" 13px bold text link. On hover the card border darkens to #171717.

## HTML

```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>
```

## CSS

```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; }
```
