Merge remote branch 'remotes/aaronw/feature410_markdown_bio'
[mediagoblin.git] / mediagoblin / contrib / text.css
CommitLineData
1344821d
JS
1/*
2 960 Grid System ~ Text CSS.
3 Learn more ~ http://960.gs/
4
5 Licensed under GPL and MIT.
6*/
7
8/* `Basic HTML
9----------------------------------------------------------------------------------------------------*/
10
11body {
12 font: 13px/1.5 'Helvetica Neue', Arial, 'Liberation Sans', FreeSans, sans-serif;
13}
14
15pre,
16code {
17 font-family: 'DejaVu Sans Mono', Monaco, Consolas, monospace;
18}
19
20hr {
21 border: 0 #ccc solid;
22 border-top-width: 1px;
23 clear: both;
24 height: 0;
25}
26
27/* `Headings
28----------------------------------------------------------------------------------------------------*/
29
30h1 {
31 font-size: 25px;
32}
33
34h2 {
35 font-size: 23px;
36}
37
38h3 {
39 font-size: 21px;
40}
41
42h4 {
43 font-size: 19px;
44}
45
46h5 {
47 font-size: 17px;
48}
49
50h6 {
51 font-size: 15px;
52}
53
54/* `Spacing
55----------------------------------------------------------------------------------------------------*/
56
57ol {
58 list-style: decimal;
59}
60
61ul {
62 list-style: disc;
63}
64
65li {
66 margin-left: 30px;
67}
68
69p,
70dl,
71hr,
72h1,
73h2,
74h3,
75h4,
76h5,
77h6,
78ol,
79ul,
80pre,
81table,
82address,
83fieldset,
84figure {
85 margin-bottom: 20px;
86}