Add latex2png CSS styles
[clinton/website/src/unknownlamer.org.git] / default.css
1 /* General Styling */
2 body
3 {
4 font-family: serif;
5 background-color: #D9D9D9;
6 color: #222222;
7 max-width: 8in;
8 }
9
10 .verse, .src, .image, blockquote
11 {
12 clear: right; /* Clear the contents box usually */
13 }
14
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
30 p
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
47 blockquote
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
58 code
59 {
60 white-space: pre;
61 width: auto;
62 color: #000000;
63 }
64
65 a
66 {
67 font-style: italic;
68 text-decoration: none;
69 }
70
71 a:link
72 {
73 color: #3333FF;
74 }
75
76 a:visited
77 {
78 color: #DA3333;
79 }
80
81 h1,h2,h3,h4,h5
82 {
83 font-variant: small-caps;
84 }
85
86 /* Table of Contents */
87 div.contents
88 {
89 border: 2px solid #222222;
90 background-color: #999999;
91 width: 40%;
92 padding: 0.5em;
93 margin-left: 2em;
94 margin-bottom: 1em;
95 float: right;
96 }
97
98 div.contents:before
99 {
100 content: "Contents";
101 font-size: x-large;
102 font-weight: bold;
103 font-variant: small-caps;
104 }
105
106 /* control spacing of contents in konqueror */
107 div.contents dl
108 {
109 margin-top: 0.2em;
110 margin-bottom: 0.2em;
111 }
112
113 /* Images */
114 table.image, p.image
115 {
116 border: 2px solid #222222;
117 background-color: #999999;
118 width: auto;
119 padding: 0.1em;
120 margin-left: auto;
121 margin-right: auto;
122 }
123
124 /* Force spacing between image boxes */
125 table.image + table.image, p.image + p.image
126 {
127 margin-top: 1em;
128 }
129
130 table.image tr td img
131 {
132 border: 1px solid #111111;
133 }
134
135 table.image tr td.image-caption
136 {
137 font-style: italic;
138 }
139
140 img.latex-display
141 {
142 display: block;
143 margin-left: auto;
144 margin-right: auto;
145 margin-top: 1ex;
146 margin-bottom: 1ex;
147 }
148
149 img.latex-inline
150 {
151 display: inline;
152 }
153
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 */
172 p.cke-footer
173 {
174 white-space: pre;
175 font-family: monospace;
176 font-style: italic;
177 font-size: small;
178 }
179
180 p.cke-timestamp
181 {
182 font-family: monospace;
183 font-size: x-small;
184 }
185
186 p.cke-buttons img
187 {
188 border: 0px;
189 }