Add comments to css to differentiate sections
[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
10.src
11{
12 color: #e3e3e3;
13 background-color: #444444;
14
15 margin-right: auto;
16 margin-left: auto;
17 width: 95%;
18 border: 2px solid black;
19 padding: 1em;
20
21 white-space: pre-wrap; /* css-3 */
22 white-space: -moz-pre-wrap; /* Mozilla */
23}
24
25p
26{
27 text-align: justify;
28}
29
30.verse
31{
32 background-color: #BBBBBB;
33 color: #111111;
34 padding: 1em;
35 border: 2px solid #999999;
36 width: 60%;
37 margin-right: auto;
38 margin-left: auto;
39 font-size: smaller;
40}
41
42blockquote
43{
44 background-color: #AAAAAA;
45 color: #111111;
46 padding: 1em;
47 border: 2px solid black;
48 width: 80%;
49 margin-right: auto;
50 margin-left: auto;
51}
52
53code
54{
55 white-space: pre;
56 width: auto;
57 color: #000000;
58}
59
60a
61{
62 font-style: italic;
6d57bafa 63 text-decoration: none;
68f63263 64}
65
66a:link
67{
68 color: #3333FF;
69}
70
71a:visited
72{
73 color: #DA3333;
74}
75
76h1,h2,h3,h4,h5
77{
78 font-variant: small-caps;
79}
80
9decba9f 81/* Table of Contents */
68f63263 82div.contents
83{
84 border: 2px solid #222222;
85 background-color: #999999;
86 width: 40%;
87 padding: 0.5em;
88 margin-left: 2em;
89 float: right;
90}
91
92div.contents:before
93{
94 content: "Contents";
95 font-size: x-large;
96 font-weight: bold;
97 font-variant: small-caps;
98}
99
100table.image, p.image
101{
102 border: 2px solid #222222;
103 background-color: #999999;
104 width: auto;
48c1c5d1 105 padding: 0.1em;
68f63263 106 margin-left: auto;
107 margin-right: auto;
108}
109
48c1c5d1 110/* Force spacing between image boxes */
111table.image + table.image, p.image + p.image
112{
113 margin-top: 1em;
114}
115
68f63263 116table.image tr td img
117{
118 border: 1px solid #111111;
119}
120
121table.image tr td.image-caption
122{
123 font-style: italic;
124}
125
126p.cke-footer
127{
128 white-space: pre;
129 font-family: monospace;
130 font-style: italic;
131 font-size: small;
132}
133
134p.cke-timestamp
135{
136 font-family: monospace;
137 font-size: x-small;
138}
139
140p.cke-buttons img
141{
142 border: 0px;
143}