# Bold outline fill (B 010)

Category: Buttons  
Tags: outline, rectangle, fill-on-hover, 2px-border  
Page: https://designforai.dev/snippet/btn-010

## Prompt

An outline button with a 2px teal border #0f766e and teal text, 15px semibold, 8px radius, 11px by 22px padding, transparent background. On hover it fills solid teal with white text (180ms). Active is #115e59. Focus ring 3px translucent teal.

## HTML

```html
<button class="btn-010">Sign up</button>
```

## CSS

```css
.btn-010 {
  font: 600 15px/1 system-ui,sans-serif;
  color: #0f766e;
  background: transparent;
  border: 2px solid #0f766e;
  border-radius: 8px;
  padding: 11px 22px;
  cursor: pointer;
  transition: background .18s,color .18s
}
.btn-010:hover {
  background: #0f766e;
  color: #fff
}
.btn-010:focus-visible {
  outline: 3px solid rgba(15,118,110,.4);
  outline-offset: 2px
}
.btn-010:active {
  background: #115e59;
  border-color: #115e59
}
```
