# Anthrazit mini (B 008)

Kategorie: Buttons  
Tags: solid, flat, small, compact  
Seite: https://designforai.dev/de/snippet/btn-008

## Prompt

Ein kompakter kleiner Button, 12px semibold weißer Text auf #374151, 4px Radius, 7px mal 12px Padding, kein Rahmen oder Schatten. Hover #4b5563, active #1f2937. Fokus-Outline 2px #374151 mit 2px Offset.

## HTML

```html
<button class="btn-008">Save</button>
```

## CSS

```css
.btn-008 {
  font: 600 12px/1 system-ui,sans-serif;
  color: #fff;
  background: #374151;
  border: 0;
  border-radius: 4px;
  padding: 7px 12px;
  cursor: pointer;
  transition: background .12s
}
.btn-008:hover {
  background: #4b5563
}
.btn-008:focus-visible {
  outline: 2px solid #374151;
  outline-offset: 2px
}
.btn-008:active {
  background: #1f2937
}
```
