summaryrefslogtreecommitdiffabout
path: root/htdocs/style.css
Unidiff
Diffstat (limited to 'htdocs/style.css') (more/less context) (ignore whitespace changes)
-rw-r--r--htdocs/style.css55
1 files changed, 53 insertions, 2 deletions
diff --git a/htdocs/style.css b/htdocs/style.css
index 83e308f..96e4c59 100644
--- a/htdocs/style.css
+++ b/htdocs/style.css
@@ -1,38 +1,39 @@
1body { 1body {
2 font-family: sans-serif; 2 font-family: sans-serif;
3 font-size: 11pt; 3 font-size: 11pt;
4} 4}
5 5
6a { 6a:link, a:visited {
7 text-decoration: none; 7 text-decoration: none;
8} 8}
9a:hover { 9a:link:hover, a:visited:hover {
10 text-decoration: underline; 10 text-decoration: underline;
11} 11}
12p { 12p {
13 margin: 1ex 1em; 13 margin: 1ex 1em;
14 text-indent: 2em; 14 text-indent: 2em;
15 text-align: justify; 15 text-align: justify;
16} 16}
17p.note { 17p.note {
18 margin-left: 10%; 18 margin-left: 10%;
19 border-width: 1px 1px 1px 6px; 19 border-width: 1px 1px 1px 6px;
20 border-color: gray gray gray #0000a0; 20 border-color: gray gray gray #0000a0;
21 border-style: solid solid solid double; 21 border-style: solid solid solid double;
22 padding: 1ex 1ex 1ex 2em; 22 padding: 1ex 1ex 1ex 2em;
23 font-size: 80%; 23 font-size: 80%;
24 background: #c0c0e0; 24 background: #c0c0e0;
25 color: #202020; 25 color: #202020;
26} 26}
27code a,
27code { 28code {
28 color: #d04040; 29 color: #d04040;
29} 30}
30em { 31em {
31 white-space: nowrap; 32 white-space: nowrap;
32} 33}
33 34
34div.google_ad { 35div.google_ad {
35 text-align: center; 36 text-align: center;
36 margin: 1ex; 37 margin: 1ex;
37} 38}
38div.google_ad.top { 39div.google_ad.top {
@@ -109,27 +110,38 @@ div#sidepanel ul ul a {
109div#sidepanel div.copyright { 110div#sidepanel div.copyright {
110 text-align: center; 111 text-align: center;
111} 112}
112 113
113div#content h1 { 114div#content h1 {
114 font-size: 140%; 115 font-size: 140%;
115 color: gray; 116 color: gray;
116 font-weight: bold; 117 font-weight: bold;
117 text-align: center; 118 text-align: center;
118 margin: 1em; 119 margin: 1em;
119 clear: both; 120 clear: both;
120} 121}
122div#content h2 {
123 font-size: 140%;
124 color: #8080a0;
125 font-weight: bold;
126 text-align: center;
127 margin: 1em;
128 clear: both;
129}
121div#content p a { 130div#content p a {
122 font-weight: bold; 131 font-weight: bold;
123} 132}
133div#content p a.internal {
134 font-weight: inherit !important;
135}
124 136
125div.insert { 137div.insert {
126 text-align: center; 138 text-align: center;
127} 139}
128iframe#insert { 140iframe#insert {
129 border: 1px solid black; 141 border: 1px solid black;
130} 142}
131 143
132div.source h1 { 144div.source h1 {
133 background: #e0e0e0; 145 background: #e0e0e0;
134 border: 1px solid #808080; 146 border: 1px solid #808080;
135 padding-left: 1em; 147 padding-left: 1em;
@@ -194,12 +206,51 @@ div.prevnext a.prevnext-prev {
194 float: left; 206 float: left;
195 text-align: left; 207 text-align: left;
196} 208}
197div.prevnext a.prevnext-next { 209div.prevnext a.prevnext-next {
198 float: right; 210 float: right;
199 text-align: right; 211 text-align: right;
200} 212}
201div.prevnext a:hover { 213div.prevnext a:hover {
202 background: gray; 214 background: gray;
203 border: black 1px solid; 215 border: black 1px solid;
204 color: white; 216 color: white;
205} 217}
218
219ul.quickref.toc {
220 margin: 1em 20%;
221 font-size: 90%;
222 border: solid 1px gray;
223}
224
225dl.quickref {
226 margin: 1ex 1em;
227}
228dl.quickref dt {
229 margin: 0.4ex;
230 padding: 2px 0.5ex;
231 background: #e0e0e0;
232 display: compact;
233}
234dl.quickref dd {
235 margin: 0px 0.4ex 0.4ex 10%;
236 padding: 0px;
237 border: 1px solid grey;
238}
239dl.quickref code kbd {
240 font-style: italic;
241 color: #0000c0;
242}
243dl.quickref blockquote {
244 background: #ffffc0;
245 padding: 4px;
246 border: dotted 1px gray;
247 font-family: monospace;
248}
249dl.quickref blockquote em {
250 display: block;
251 font-family: inherit !important;
252 font-size: inherit !important;
253 font-weight: inherit !important;
254 font-style: inherit !important;
255 background: #ffc0c0;
256}