# Crimson wide (B 004)

Category: Buttons  
Tags: solid, flat, full-width, uppercase  
Page: https://designforai.dev/snippet/btn-004

## Prompt

A full-width destructive button, background #dc2626, white uppercase 13px bold text with 0.08em letter spacing, 4px radius, 15px padding. Hover #b91c1c, active #991b1b. No shadow. Focus outline 2px red offset 3px.

## HTML

```html
<button class="btn-004">Delete account</button>
```

## CSS

```css
.btn-004 {
  display: block;
  width: 100%;
  font: 700 13px/1 system-ui,sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: #dc2626;
  border: 0;
  border-radius: 4px;
  padding: 15px;
  cursor: pointer;
  transition: background .15s
}
.btn-004:hover {
  background: #b91c1c
}
.btn-004:focus-visible {
  outline: 2px solid #dc2626;
  outline-offset: 3px
}
.btn-004:active {
  background: #991b1b
}
```
