Finally writing the changelog (at least for now)

This commit is contained in:
Jeff Avallone 2014-12-20 11:18:15 -05:00
parent 55657a792b
commit 9a79b95337
2 changed files with 30 additions and 1 deletions

View File

@ -1 +1,13 @@
TODO: Write a changelog
<div class="changelog">
<dl>
<dt>Pending release</dt>
<dd>Freshened up design</dd>
<dd>Added a changelog</dd>
<dd>Added documentation</dd>
<dd>All parsing and rendering happens client-side</dd>
<dd>Added Download link (not available in older browsers)</dd>
<dd>Added display of regular expression flags (ignore, global, multiline)</dd>
<dd>Added indicator of quantifier greedy-ness</dd>
<dd>Various improvements to parsing of regular expression</dd>
</dl>
</div>

View File

@ -101,6 +101,23 @@ header {
}
}
.changelog {
background-color: $tan;
padding: rhythm(1/2);
dt {
font-weight: bold;
}
dd {
&::before {
content: '\00BB';
font-weight: bold;
margin-right: rhythm(1/2);
}
}
}
#content {
padding: rhythm(1);