Add latex2png CSS styles
[clinton/website/src/unknownlamer.org.git] / default.css
CommitLineData
9decba9f 1/* General Styling */
68f63263 2body
3{
4 font-family: serif;
5 background-color: #D9D9D9;
6 color: #222222;
7 max-width: 8in;
8}
9
de5e55d5 10.verse, .src, .image, blockquote
11{
12 clear: right; /* Clear the contents box usually */
13}
14
68f63263 15.src
16{
17 color: #e3e3e3;
18 background-color: #444444;
19
20 margin-right: auto;
21 margin-left: auto;
22 width: 95%;
23 border: 2px solid black;
24 padding: 1em;
25
26 white-space: pre-wrap; /* css-3 */
27 white-space: -moz-pre-wrap; /* Mozilla */
28}
29
30p
31{
32 text-align: justify;
33}
34
35.verse
36{
37 background-color: #BBBBBB;
38 color: #111111;
39 padding: 1em;
40 border: 2px solid #999999;
41 width: 60%;
42 margin-right: auto;
43 margin-left: auto;
44 font-size: smaller;
45}
46
47blockquote
48{
49 background-color: #AAAAAA;
50 color: #111111;
51 padding: 1em;
52 border: 2px solid black;
53 width: 80%;
54 margin-right: auto;
55 margin-left: auto;
56}
57
58code
59{
60 white-space: pre;
61 width: auto;
62 color: #000000;
63}
64
65a
66{
67 font-style: italic;
6d57bafa 68 text-decoration: none;
68f63263 69}
70
71a:link
72{
73 color: #3333FF;
74}
75
76a:visited
77{
78 color: #DA3333;
79}
80
81h1,h2,h3,h4,h5
82{
83 font-variant: small-caps;
84}
85
9decba9f 86/* Table of Contents */
68f63263 87div.contents
88{
89 border: 2px solid #222222;
90 background-color: #999999;
91 width: 40%;
92 padding: 0.5em;
93 margin-left: 2em;
de5e55d5 94 margin-bottom: 1em;
68f63263 95 float: right;
96}
97
98div.contents:before
99{
100 content: "Contents";
101 font-size: x-large;
102 font-weight: bold;
103 font-variant: small-caps;
104}
105
6a61b233 106/* control spacing of contents in konqueror */
107div.contents dl
108{
109 margin-top: 0.2em;
110 margin-bottom: 0.2em;
111}
112
113/* Images */
68f63263 114table.image, p.image
115{
116 border: 2px solid #222222;
117 background-color: #999999;
118 width: auto;
48c1c5d1 119 padding: 0.1em;
68f63263 120 margin-left: auto;
121 margin-right: auto;
122}
123
48c1c5d1 124/* Force spacing between image boxes */
125table.image + table.image, p.image + p.image
126{
127 margin-top: 1em;
128}
129
68f63263 130table.image tr td img
131{
132 border: 1px solid #111111;
133}
134
135table.image tr td.image-caption
136{
137 font-style: italic;
138}
139
3876739f 140img.latex-display
141{
142 display: block;
143 margin-left: auto;
144 margin-right: auto;
145 margin-top: 1ex;
146 margin-bottom: 1ex;
147}
148
149img.latex-inline
150{
151 display: inline;
152}
153
677f573a 154/* Ratings (Book List)*/
155.rating-good
156{
157 color: #222222;
158 font-weight: bold;
159 font-size: larger;
160 letter-spacing: 0.2em;
161}
162
163.rating-bad
164{
165 color: #FFFFFF;
166 font-weight: bold;
167 font-size: larger;
168 letter-spacing: 0.2em;
169}
170
171/* Footer template */
68f63263 172p.cke-footer
173{
174 white-space: pre;
175 font-family: monospace;
176 font-style: italic;
177 font-size: small;
178}
179
180p.cke-timestamp
181{
182 font-family: monospace;
183 font-size: x-small;
184}
185
186p.cke-buttons img
187{
188 border: 0px;
189}