| 1 |
lars |
1 |
/* Pretty simple stylesheet for CSS: adjust font-family, color, background-color to taste */
|
|
|
2 |
|
|
|
3 |
body{font-size:85%; margin:0; padding:0 5px;
|
|
|
4 |
font-family: Georgia, Verdana,sans-serif;
|
|
|
5 |
color:navy;
|
|
|
6 |
background:white;
|
|
|
7 |
}
|
|
|
8 |
h1,h2,h3,h4,h5,h6 {margin-top:.5em; margin-bottom:.1em;
|
|
|
9 |
font-family:Verdana,sans-serif;
|
|
|
10 |
color:darkred;
|
|
|
11 |
}
|
|
|
12 |
table {font-size:100%}
|
|
|
13 |
th, td {vertical-align:top;}
|
|
|
14 |
a {color:darkgreen; text-decoration:none}
|
|
|
15 |
a:hover{ color:white; background-color:darkgreen; text-decoration:none;}
|
|
|
16 |
|
|
|
17 |
pre, code {color:black; background-color:white; font-size:8pt}
|
|
|
18 |
p {margin-top:.3em; margin-bottom:.7em}
|
|
|
19 |
ul {list-style-type:disc}
|
|
|
20 |
li {margin-bottom:.3em}
|
|
|
21 |
hr {color:darkred; background-color:darkred}
|
|
|
22 |
h1 {margin-top:0}
|
|
|
23 |
|
|
|
24 |
/* Public domain: found at http://www.unverse.net/whizzery/simple.css */
|