Hi Nick, some CSS suggestions:
#content {
font-family: 'Arial';
font-size: 1em;
line-height: 1.4em;
margin-left: auto;
margin-right: auto;
width: 660px;
}
I would also put <pre> tags around all the regex stuff, just so it's really clear.
I found the input box very hard to read, so I'd suggest something like the following:
input {
color: #333;
font-family: 'Courier';
font-size: 1em;
line-height: 1em;
outline: none;
padding: 0.75em;
vertical-align: middle;
width: 400px;
}
button {
font-size: 1em;
line-height: 1;
padding: 0.75em;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
vertical-align: middle;
}
When I've got more time I'll look at other bits. Tried forking, but obviously without your database files it's a little tricky!
Hi Nick, some CSS suggestions:
I would also put
<pre>tags around all the regex stuff, just so it's really clear.I found the input box very hard to read, so I'd suggest something like the following:
When I've got more time I'll look at other bits. Tried forking, but obviously without your database files it's a little tricky!