--- ---
All you need is 1 CSS file, chota.css
to be included in your webpage.
Link this CSS in your HTML:
{% highlight html %}{% endhighlight %}You can get the latest release from GitHub
Install it from npm
or yarn
Chota is dead simple to use. It doesn't require learning a lot of class names like other frameworks. It applies a few basic styles to the HTML following the HTML Semantics.
Here is a demo of the basic HTML elements. A few addons that Chota provides out-of-the-box for some elements are:
grouped
classChota comes with a basic set of CSS variables:
{% highlight css %} :root { --color-primary: #1a9f60; --color-lightGrey: #d2d6dd; --color-grey: #7e818b; --color-darkGrey: #3f4144; --color-error: #d43939; --color-success: #28bd14; --grid-maxWidth: 120rem; --grid-gutter: 2rem; --font-size: 1.6rem; --font-family: "Helvetica Neue", sans-serif; } {% endhighlight %}To override the variables, just add them to your :root
selector after importing chota.css
While you are free to use any icon library that you, I'd just like to drop a link to Icongram here. It's the quickest way you can add icons to any website.