# Ausweis mit eckigem Avatar (C 014)

Kategorie: Cards  
Tags: profile, id-card, mono, minimal, light  
Seite: https://designforai.dev/de/snippet/card-014

## Prompt

Erstelle eine 300px Card im Ausweis-Stil in einer Monospace-Schrift: weißer Hintergrund, 2px durchgezogener #111 Rahmen, 6px Radius, 16px Padding, zweispaltiges Grid (90px Foto + Details). Das Foto ist eine 110px hohe Box mit 2px #111 Rahmen, gefüllt mit einem 45deg wiederholten Streifenmuster (#111 2px, weiß 6px). Die Details sind eine Definitionsliste in einem zweispaltigen Grid: 12px graue #888 Versalien-Labels (Name, Role, ID) mit fetten #111 Werten.

## HTML

```html
<article class="card-014">
  <div class="card-014__photo"></div>
  <dl>
    <dt>Name</dt><dd>Theo Baptiste</dd>
    <dt>Role</dt><dd>Staff engineer</dd>
    <dt>ID</dt><dd>#04211</dd>
  </dl>
</article>
```

## CSS

```css
.card-014 {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  width: 300px;
  padding: 16px;
  background: #fff;
  border: 2px solid #111;
  border-radius: 6px;
  font-family: ui-monospace,monospace;
  color: #111
}
.card-014__photo {
  height: 110px;
  border: 2px solid #111;
  background: repeating-linear-gradient(45deg,#111 0 2px,#fff 2px 8px)
}
.card-014 dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  font-size: 12px;
  align-content: start
}
.card-014 dt {
  color: #888;
  text-transform: uppercase;
  letter-spacing: .06em
}
.card-014 dd {
  margin: 0;
  font-weight: 700
}
```
