# Contorno em linha dupla (B 013)

Categoria: Botões  
Tags: outline, double-border, editorial, square  
Página: https://designforai.dev/pt/snippet/btn-013

## Prompt

Um botão outline editorial em fonte serifada: fundo transparente, borda de 1px #1c1917 mais um segundo outline de 1px a 3px por fora, cantos retos, padding de 12px por 24px. No hover a linha externa colapsa sobre a borda e o botão se preenche de #1c1917 com texto off-white. Active #292524. No foco a linha externa dá lugar a um âmbar #b45309 de 2px.

## HTML

```html
<button class="btn-013">Read the essay</button>
```

## CSS

```css
.btn-013 {
  font: 500 14px/1 Georgia,serif;
  color: #1c1917;
  background: transparent;
  border: 1px solid #1c1917;
  outline: 1px solid #1c1917;
  outline-offset: 3px;
  border-radius: 0;
  padding: 12px 24px;
  cursor: pointer;
  transition: outline-offset .15s,background .15s,color .15s
}
.btn-013:hover {
  outline-offset: 0;
  background: #1c1917;
  color: #fafaf9
}
.btn-013:focus-visible {
  outline: 2px solid #b45309;
  outline-offset: 4px
}
.btn-013:active {
  background: #292524
}
```
