Skip to content

Commit

Permalink
docs: update version number and docs css
Browse files Browse the repository at this point in the history
  • Loading branch information
codazoda committed Jan 18, 2024
1 parent c5d6d9a commit 5351a5b
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@
1.0.12
- doc: remove example link, another user added a section for this

1.0.13
- Fix h1 line heights for long titles

9 changes: 8 additions & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@

<h1>Neat CSS</h1>

<h1>How to Level a Tumbler for Perfect Full Wrap Laser Engraving</h1>

<p>Rapidly build efficient sites with <em>Neat</em>, the minimalist css framework. Neat is about 3Kb and that's before it's minified and compressed.</p>

<ol class="twocol">
Expand All @@ -26,6 +28,7 @@ <h1>Neat CSS</h1>
<li><a href="#uses">Uses</a></li>
<li><a href="#customizing">Customizing</a></li>
<li><a href="#decisions">Design Decisions</a></li>
<li><a href="#examples">Examples</a></li>
<li><a href="#contributing">Contributing</a></li>
<li><a href="#github">GitHub</a></li>
</ol>
Expand Down Expand Up @@ -163,7 +166,11 @@ <h3>Grid</h3>

<h3>Centering</h3>

<p>You can throw the <em>center</em> class on almost anything you want to center, including a <em>div</em> tag.
<p>You can throw the <em>center</em> class on almost anything you want to center, including a <em>div</em> tag.</p>

<h2 id="examples">Examples</h2>

<p>Example uses of Neat can be found in the <a href="https://github.com/codazoda/neatcss-examples">example repository</a>.</p>

<h3>Framework</h3>

Expand Down
6 changes: 5 additions & 1 deletion docs/neat.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
--dark: #404040;
--moredark: #000;
border-top: 5px solid var(--dark);
line-height: 1.5em; /* This causes wrapping h1's to collapse too small */
line-height: 1.5em;
font-family: sans-serif;
font-size: 16px;
}
Expand All @@ -15,6 +15,10 @@
color: var(--dark);
}

h1 {
line-height: 1em;
}

button, input {
font-size: 1em; /* Override browser default font shrinking*/
}
Expand Down
9 changes: 8 additions & 1 deletion docs/neat.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@

<h1>Neat CSS</h1>

<h1>How to Level a Tumbler for Perfect Full Wrap Laser Engraving</h1>

<p>Rapidly build efficient sites with <em>Neat</em>, the minimalist css framework. Neat is about 3Kb and that's before it's minified and compressed.</p>

<ol class="twocol">
Expand All @@ -26,6 +28,7 @@ <h1>Neat CSS</h1>
<li><a href="#uses">Uses</a></li>
<li><a href="#customizing">Customizing</a></li>
<li><a href="#decisions">Design Decisions</a></li>
<li><a href="#examples">Examples</a></li>
<li><a href="#contributing">Contributing</a></li>
<li><a href="#github">GitHub</a></li>
</ol>
Expand Down Expand Up @@ -163,7 +166,11 @@ <h3>Grid</h3>

<h3>Centering</h3>

<p>You can throw the <em>center</em> class on almost anything you want to center, including a <em>div</em> tag.
<p>You can throw the <em>center</em> class on almost anything you want to center, including a <em>div</em> tag.</p>

<h2 id="examples">Examples</h2>

<p>Example uses of Neat can be found in the <a href="https://github.com/codazoda/neatcss-examples">example repository</a>.</p>

<h3>Framework</h3>

Expand Down
1 change: 1 addition & 0 deletions version.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@
1.0.10
1.0.11
1.0.12
1.0.13

0 comments on commit 5351a5b

Please sign in to comment.