What is Form?
You have a form and you want to style it quickly, then, Form framework is for you. It is a single class framework. Add the class form
to any form element and you will get a modernly styled form input. It comes with normalize CSS and light CSS reset but it doesn't come with a grid system. The framework CSS file size is only 17.4 KiB and 10.3 KiB for the minified version.
For example, if you want to style a mailing list subscription form:
Example
<form> <div> <div> <input type="email" class="form" placeholder="Enter your email"> </div> <div> <button type="button" class="form full">Subscribe</button> </div> </div> <form>
And you're done!