Add ever so slightly nicer music page
[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 .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
25 p
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
42 blockquote
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
53 code
54 {
55 white-space: pre;
56 width: auto;
57 color: #000000;
58 }
59
60 a
61 {
62 font-style: italic;
63 text-decoration: none;
64 }
65
66 a:link
67 {
68 color: #3333FF;
69 }
70
71 a:visited
72 {
73 color: #DA3333;
74 }
75
76 h1,h2,h3,h4,h5
77 {
78 font-variant: small-caps;
79 }
80
81 /* Table of Contents */
82 div.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
92 div.contents:before
93 {
94 content: "Contents";
95 font-size: x-large;
96 font-weight: bold;
97 font-variant: small-caps;
98 }
99
100 /* control spacing of contents in konqueror */
101 div.contents dl
102 {
103 margin-top: 0.2em;
104 margin-bottom: 0.2em;
105 }
106
107 /* Images */
108 table.image, p.image
109 {
110 border: 2px solid #222222;
111 background-color: #999999;
112 width: auto;
113 padding: 0.1em;
114 margin-left: auto;
115 margin-right: auto;
116 }
117
118 /* Force spacing between image boxes */
119 table.image + table.image, p.image + p.image
120 {
121 margin-top: 1em;
122 }
123
124 table.image tr td img
125 {
126 border: 1px solid #111111;
127 }
128
129 table.image tr td.image-caption
130 {
131 font-style: italic;
132 }
133
134 /* Ratings (Book List)*/
135 .rating-good
136 {
137 color: #222222;
138 font-weight: bold;
139 font-size: larger;
140 letter-spacing: 0.2em;
141 }
142
143 .rating-bad
144 {
145 color: #FFFFFF;
146 font-weight: bold;
147 font-size: larger;
148 letter-spacing: 0.2em;
149 }
150
151 /* Footer template */
152 p.cke-footer
153 {
154 white-space: pre;
155 font-family: monospace;
156 font-style: italic;
157 font-size: small;
158 }
159
160 p.cke-timestamp
161 {
162 font-family: monospace;
163 font-size: x-small;
164 }
165
166 p.cke-buttons img
167 {
168 border: 0px;
169 }