comparison thingy.css @ 7:0d5b69cd01db

Added a CSS sheet and a basic two-column layout.
author Atul Varma <varmaa@toolness.com>
date Mon, 05 Jan 2009 17:49:59 -0800
parents
children f3f56cc75bfd
comparison
equal deleted inserted replaced
6:dc88b0e46f2d 7:0d5b69cd01db
1 body {
2 font-family: palatino, georgia, verdana, arial, sans-serif;
3 font-size: 10pt;
4 }
5
6 #content {
7 width: 800px;
8 }
9
10 .documentation {
11 width: 400px;
12 float: left;
13 padding-right: 20px;
14 }
15
16 .code {
17 font-family: monaco, andale mono, lucidatypewriter, courier,
18 courier new, monospace;
19 float: left;
20 white-space: pre;
21 font-size: 6pt;
22 }
23
24 .divider {
25 clear: both;
26 border-top: 1px dotted;
27 }