njn | 3e986b2 | 2004-11-30 10:43:45 +0000 | [diff] [blame^] | 1 | /* default link colours */ |
| 2 | a, a:link, a:visited, a:active { color: #74240f; } |
| 3 | a:hover { color: #888800; } |
| 4 | |
| 5 | body { |
| 6 | color: #202020; |
| 7 | background-color: #ffffff; |
| 8 | } |
| 9 | |
| 10 | body, td { |
| 11 | font-size: 90%; |
| 12 | line-height: 125%; |
| 13 | font-family: Arial, Geneva, Helvetica, sans-serif; |
| 14 | } |
| 15 | |
| 16 | h1, h2, h3, h4 { color: #74240f; } |
| 17 | h3 { margin-bottom: 0.4em; } |
| 18 | |
| 19 | code, tt, pre { color: #3366cc; } |
| 20 | code, tt { color: #761596; } |
| 21 | |
| 22 | pre.programlisting { |
| 23 | color: #000000; |
| 24 | padding: 0.5em; |
| 25 | background: #f2f2f9; |
| 26 | border: 1px solid #3366cc; |
| 27 | } |
| 28 | pre.screen { |
| 29 | color: #000000; |
| 30 | padding: 0.5em; |
| 31 | background: #eeeeee; |
| 32 | border: 1px solid #626262; |
| 33 | } |
| 34 | |
| 35 | ul { list-style: url("images/li-brown.png"); } |
| 36 | |
| 37 | .titlepage hr { |
| 38 | height: 1px; |
| 39 | border: 0px; |
| 40 | background-color: #7f7f7f; |
| 41 | } |
| 42 | |
| 43 | /* header / footer nav tables */ |
| 44 | table.nav { |
| 45 | color: #0f7355; |
| 46 | border: solid 1px #0f7355; |
| 47 | background: #edf7f4; |
| 48 | background-color: #edf7f4; |
| 49 | margin-bottom: 0.5em; |
| 50 | } |
| 51 | /* don't have underlined links in chunked nav menus */ |
| 52 | table.nav a { text-decoration: none; } |
| 53 | table.nav a:hover { text-decoration: underline; } |
| 54 | table.nav td { font-size: 85%; } |
| 55 | |
| 56 | /* yellow box just for massif blockquotes */ |
| 57 | blockquote { |
| 58 | padding: 0.5em; |
| 59 | background: #fffbc9; |
| 60 | border: solid 1px #ffde84; |
| 61 | } |
| 62 | |