~cbehrens/nova/lp844160-build-works-with-zones

« back to all changes in this revision

Viewing changes to vendor/tornado/demos/blog/static/blog.css

  • Committer: Jesse Andrews
  • Date: 2010-05-28 06:05:26 UTC
  • Revision ID: git-v1:bf6e6e718cdc7488e2da87b21e258ccc065fe499
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2009 Facebook
 
3
 *
 
4
 * Licensed under the Apache License, Version 2.0 (the "License"); you may
 
5
 * not use this file except in compliance with the License. You may obtain
 
6
 * a copy of the License at
 
7
 *
 
8
 *     http://www.apache.org/licenses/LICENSE-2.0
 
9
 *
 
10
 * Unless required by applicable law or agreed to in writing, software
 
11
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 
12
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 
13
 * License for the specific language governing permissions and limitations
 
14
 * under the License.
 
15
 */
 
16
 
 
17
body {
 
18
  background: white;
 
19
  color: black;
 
20
  margin: 15px;
 
21
  margin-top: 0;
 
22
}
 
23
 
 
24
body,
 
25
input,
 
26
textarea {
 
27
  font-family: Georgia, serif;
 
28
  font-size: 12pt;
 
29
}
 
30
 
 
31
table {
 
32
  border-collapse: collapse;
 
33
  border: 0;
 
34
}
 
35
 
 
36
td {
 
37
  border: 0;
 
38
  padding: 0;
 
39
}
 
40
 
 
41
h1,
 
42
h2,
 
43
h3,
 
44
h4 {
 
45
  font-family: "Helvetica Nue", Helvetica, Arial, sans-serif;
 
46
  margin: 0;
 
47
}
 
48
 
 
49
h1 {
 
50
  font-size: 20pt;
 
51
}
 
52
 
 
53
pre,
 
54
code {
 
55
  font-family: monospace;
 
56
  color: #060;
 
57
}
 
58
 
 
59
pre {
 
60
  margin-left: 1em;
 
61
  padding-left: 1em;
 
62
  border-left: 1px solid silver;
 
63
  line-height: 14pt;
 
64
}
 
65
 
 
66
a,
 
67
a code {
 
68
  color: #00c;
 
69
}
 
70
 
 
71
#body {
 
72
  max-width: 800px;
 
73
  margin: auto;
 
74
}
 
75
 
 
76
#header {
 
77
  background-color: #3b5998;
 
78
  padding: 5px;
 
79
  padding-left: 10px;
 
80
  padding-right: 10px;
 
81
  margin-bottom: 1em;
 
82
}
 
83
 
 
84
#header,
 
85
#header a {
 
86
  color: white;
 
87
}
 
88
 
 
89
#header h1 a {
 
90
  text-decoration: none;
 
91
}
 
92
 
 
93
#footer,
 
94
#content {
 
95
  margin-left: 10px;
 
96
  margin-right: 10px;
 
97
}
 
98
 
 
99
#footer {
 
100
  margin-top: 3em;
 
101
}
 
102
 
 
103
.entry h1 a {
 
104
  color: black;
 
105
  text-decoration: none;
 
106
}
 
107
 
 
108
.entry {
 
109
  margin-bottom: 2em;
 
110
}
 
111
 
 
112
.entry .date {
 
113
  margin-top: 3px;
 
114
}
 
115
 
 
116
.entry p {
 
117
  margin: 0;
 
118
  margin-bottom: 1em;
 
119
}
 
120
 
 
121
.entry .body {
 
122
  margin-top: 1em;
 
123
  line-height: 16pt;
 
124
}
 
125
 
 
126
.compose td {
 
127
  vertical-align: middle;
 
128
  padding-bottom: 5px;
 
129
}
 
130
 
 
131
.compose td.field {
 
132
  padding-right: 10px;
 
133
}
 
134
 
 
135
.compose .title,
 
136
.compose .submit {
 
137
  font-family: "Helvetica Nue", Helvetica, Arial, sans-serif;
 
138
  font-weight: bold;
 
139
}
 
140
 
 
141
.compose .title {
 
142
  font-size: 20pt;
 
143
}
 
144
 
 
145
.compose .title,
 
146
.compose .markdown {
 
147
  width: 100%;
 
148
}
 
149
 
 
150
.compose .markdown {
 
151
  height: 500px;
 
152
  line-height: 16pt;
 
153
}