# Verschachtelter Kommentar-Thread (C 078)

Kategorie: Cards  
Tags: comment, thread, nested, avatar, light  
Seite: https://designforai.dev/de/snippet/card-078

## Prompt

Erstelle eine 380px Kommentar-Thread-Card: weiß, 1px #e5e7eb Rahmen, 14px Radius. Jeder Kommentar ist eine Flex-Zeile mit rundem Avatar (34px, Gradient #c7d2fe zu #6366f1), einem Kopf mit 13px fettem Namen und 11px #9ca3af Zeit, 14px Text und einem 12px "Reply" Link, der beim Hover indigo wird. Die Antwort ist 46px eingerückt, hat einen 2px #e5e7eb linken Rahmen mit 14px Padding und einen kleineren 28px Avatar in bernsteinfarbenem Gradient.

## HTML

```html
<div class="card-078">
  <article><i></i><div><header><b>Devon Price</b><time>3d</time></header><p>Does the flip card work with keyboard focus?</p><a href="#">Reply</a></div></article>
  <article class="card-078__reply"><i></i><div><header><b>Rin Sato</b><time>2d</time></header><p>Yes, if you use the checkbox version and keep the input focusable.</p><a href="#">Reply</a></div></article>
</div>
```

## CSS

```css
.card-078 {
  width: 380px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  font-family: system-ui,sans-serif;
  color: #111827
}
.card-078 article {
  display: flex;
  gap: 12px
}
.card-078 article i {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg,#c7d2fe,#6366f1)
}
.card-078__reply {
  margin: 14px 0 0 46px;
  padding-left: 14px;
  border-left: 2px solid #e5e7eb
}
.card-078__reply i {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg,#fde68a,#f59e0b)
}
.card-078 header {
  display: flex;
  gap: 8px;
  align-items: baseline
}
.card-078 b {
  font-size: 13px
}
.card-078 time {
  font-size: 11px;
  color: #9ca3af
}
.card-078 p {
  margin: 3px 0 6px;
  font-size: 14px;
  line-height: 1.45
}
.card-078 a {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-decoration: none
}
.card-078 a:hover {
  color: #4f46e5
}
.card-078 :is(a,button,input,select,textarea):focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }
```
