# Basscss Forms

Basic form styles module for Basscss. Add your own color styles to customize the look and feel.

## Label

```html
<label class="label">Hamburger</label>
```

## Input

```html
<input type="text" class="input" />
```

## Select

```html
<select class="select">
  <option>Hamburger 1</option>
  <option>Hamburger 2</option>
  <option>Hamburger 3</option>
  <option>Hamburger 4</option>
</select>
```

## Textarea

```html
<textarea class="textarea" rows="4"></textarea>
```

