# App-Store-Zeile (C 097)

Kategorie: Cards  
Tags: app, install, icon, rating, light, row  
Seite: https://designforai.dev/de/snippet/card-097

## Prompt

Baue eine 340px Zeilen-Card im App-Store-Stil: weiß, 16px Radius, 12px 14px Padding, zarter Schatten, der sich beim Hover vertieft. Links ein 60px App-Icon mit 14px Radius und 135deg Gradient #ff9f0a zu #ff375f mit haarfeinem inset Rahmen. Mitte: 15px fetter App-Name über einer 12px #8e8e93 Zeile "Productivity · 4.8 ★ (2.1k)". Rechts ein Pillen-Button "GET" in blauem #007aff Text auf #f2f2f7, der sich beim Hover blau mit weißem Text füllt.

## HTML

```html
<article class="card-097">
  <span class="card-097__icon"></span>
  <div class="card-097__text"><b>Focus Timer</b><span>Productivity · 4.8 ★ (2.1k)</span></div>
  <a href="#">Get</a>
</article>
```

## CSS

```css
.card-097 {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 340px;
  padding: 12px 14px;
  background: #fff;
  border-radius: 16px;
  font-family: system-ui,sans-serif;
  color: #1c1c1e;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  transition: box-shadow .2s
}
.card-097:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.12)
}
.card-097__icon {
  flex: none;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg,#ff9f0a,#ff375f);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06)
}
.card-097__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px
}
.card-097 b {
  font-size: 15px
}
.card-097__text span {
  font-size: 12px;
  color: #8e8e93
}
.card-097 a {
  padding: 6px 18px;
  border-radius: 999px;
  background: #f2f2f7;
  color: #007aff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .15s,color .15s
}
.card-097 a:hover {
  background: #007aff;
  color: #fff
}
.card-097 :is(a,button,input,select,textarea):focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }
```
