blob: b115a706e868586b1145c2f42581caf9d61242b8 [file] [log] [blame]
Alexander Afanasyev8a093762014-07-16 18:43:09 -07001/*
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 Arial, Helvetica, sans-serif;
13}
14
15hr {
16 border: 0 #ccc solid;
17 border-top-width: 1px;
18 clear: both;
19 height: 0;
20}
21
22/* `Headings
23----------------------------------------------------------------------------------------------------*/
24
25h1 {
26 font-size: 2.4em;
27}
28
29h2 {
30 font-size: 1.8em;
31}
32
33h3 {
34 font-size: 1.4em;
35}
36
37/* h1 { */
38/* font-size: 25px; */
39/* } */
40
41/* h2 { */
42/* font-size: 23px; */
43/* } */
44
45/* h3 { */
46/* font-size: 21px; */
47/* } */
48
49h4 {
50 font-size: 19px;
51}
52
53h5 {
54 font-size: 17px;
55}
56
57h6 {
58 font-size: 15px;
59}
60
61/* `Spacing
62----------------------------------------------------------------------------------------------------*/
63
64/* ol { */
65/* list-style: decimal; */
66/* } */
67
68/* ul { */
69/* list-style: disc; */
70/* } */
71
72/* li { */
73/* margin-left: 30px; */
74/* } */
75
76p,
77dl,
78hr,
79h1,
80h2,
81h3,
82h4,
83h5,
84h6,
85ol,
86ul,
87pre,
88table,
89address,
90fieldset,
91figure {
92 margin-bottom: 10px;
93}
94
95pre {
96 /* padding: 0px 24px; */
97 white-space: pre-wrap;
98 background-color: #F9F9F9;
99 border: 1px dashed #2F6FAB;
100 color: black;
101 padding: 1em;
102 font-size: 13px;
103}
104code {
105 font-family: Consolas, Monaco, Andale Mono, monospace;
106}