More destailed description of my site setup
[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
677f573a 140/* Ratings (Book List)*/
141.rating-good
142{
143 color: #222222;
144 font-weight: bold;
145 font-size: larger;
146 letter-spacing: 0.2em;
147}
148
149.rating-bad
150{
151 color: #FFFFFF;
152 font-weight: bold;
153 font-size: larger;
154 letter-spacing: 0.2em;
155}
156
157/* Footer template */
68f63263 158p.cke-footer
159{
160 white-space: pre;
161 font-family: monospace;
162 font-style: italic;
163 font-size: small;
164}
165
166p.cke-timestamp
167{
168 font-family: monospace;
169 font-size: x-small;
170}
171
172p.cke-buttons img
173{
174 border: 0px;
175}