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
@@ -3,10 +3,10 @@ body {
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 {
@@ -24,6 +24,7 @@ p.note {
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}
@@ -118,9 +119,20 @@ div#content h1 {
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;
@@ -203,3 +215,42 @@ div.prevnext a:hover {
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}