1
0
mirror of https://github.com/jenil/chota.git synced 2023-08-10 21:13:07 +03:00
chota/index.html

62 lines
1.9 KiB
HTML
Raw Normal View History

2017-04-01 02:36:04 +03:00
---
---
2017-04-01 01:29:57 +03:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
2017-04-01 02:36:04 +03:00
<title>chota - A small CSS framework</title>
2017-04-01 01:29:57 +03:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://unpkg.com/chota">
<link rel="stylesheet" href="./doc-styles.css">
</head>
<body>
<div class="container">
<div class="hero is-full-screen">
<div class="logo is-center is-vertical-align">
<img src="./logo.svg" alt="">
<h3>A <strong>small</strong> (3kb) CSS framework.</h3>
</div>
<div class="row is-center">
<div class="col-3">
<nav class="tabs">
<a href="#features">features</a>
<a href="#start">start</a>
</nav>
</div>
</div>
</div>
<section id="features">
<h2>Features</h2>
<ul>
<li>⚡️&nbsp; Super light-weight. Just 3kb (minified + gzipped).</li>
<li>⛔️&nbsp; No preprocessor, just plug-n-play</li>
<li>📐&nbsp; Magical 12 column grid</li>
<li>🌈&nbsp; Easy to extended with CSS variables</li>
<li>🎲&nbsp; Comes with a handful of components &amp; utilities</li>
<li>&nbsp; Good Semantics</li>
</ul>
</section>
<section id="start">
<h2>Getting Started</h2>
<p>All you need is 1 CSS file, <code>chota.css</code> to be included in your webpage.</p>
<h5>Easiest way</h5>
<p>Link this CSS in your HTML:</p>
2017-04-01 02:36:04 +03:00
{% highlight html %}
2017-04-01 01:34:45 +03:00
<link rel="stylesheet" href="https://unpkg.com/chota">
{% endhighlight %}
2017-04-01 01:29:57 +03:00
<p>You can download it from Github or install it from npm or yarn:</p>
2017-04-01 02:36:04 +03:00
{% highlight bash %}
npm install chota
{% endhighlight %}
2017-04-01 01:29:57 +03:00
</section>
</div>
<footer class="is-text-center">
<h5>Made by <a href="#">Jenil Gogari</a></h5>
</footer>
</body>
</html>