# HG changeset patch # User Atul Varma # Date 1212733366 25200 # Node ID dd7beb3cbb82bb927120f70994b6d34861774630 # Parent e5ba89c69c1fa194c9390fdfe8b2e50ce6864a5f Add a CSS sheet, yoinked from Parchment. diff -r e5ba89c69c1f -r dd7beb3cbb82 Makefile --- a/Makefile Thu Jun 05 23:05:10 2008 -0700 +++ b/Makefile Thu Jun 05 23:22:46 2008 -0700 @@ -1,5 +1,5 @@ all: - rst2html.py PythonForJsProgrammers.txt > PythonForJsProgrammers.html + rst2html.py --stylesheet-path=PythonForJsProgrammers.css --link-stylesheet PythonForJsProgrammers.txt > PythonForJsProgrammers.html test: python -c "import doctest; doctest.testfile('PythonForJsProgrammers.txt')" diff -r e5ba89c69c1f -r dd7beb3cbb82 PythonForJsProgrammers.css --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/PythonForJsProgrammers.css Thu Jun 05 23:22:46 2008 -0700 @@ -0,0 +1,20 @@ +body { + font-family: palatino, georgia, verdana, arial, sans-serif; + text-align: center; + background: white; +} + +.document { + text-align: left; + margin: 0 auto; + width: 640px; +} + +a { + color: grey; + text-decoration: none; +} + +a:hover { + color: black; +}