Dropdowns
CozyCSS has build-in dropdown system with much better styles than the browsers default.
Usage
For now, you can't edit how the dropdowns look (except with your own CSS)
Here is how to add one:
<div class="dropdown">
<button>Select item</button>
<div>
<button>A</button>
<button>B</button>
<button>C</button>
</div>
</div>
When the user clicks an item, the data-value property of the dropdown element will be set.
note
You need to include the cozycss.min.js file for this feature. See installation