
Pseudo classes for working with forms.

```crush
:input(date, search, email) {...}
:checkbox {...}
:radio {...}
:text {...}
```

```css
input[type="date"], input[type="search"], input[type="email"] {...}
input[type="checkbox"] {...}
input[type="radio"] {...}
input[type="text"] {...}
```
