comparison example.css @ 33:9f02bf2207af

Addec example CSS stylesheet.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 16 Aug 2009 00:35:10 +0300
parents
children 211d39a4552b
comparison
equal deleted inserted replaced
32:e7e484c89dbc 33:9f02bf2207af
1 /* Example CSS stylesheet for Maltfilter
2 * by Matti 'ccr' Hamalainen <ccr tnsp org>
3 */
4 body {
5 margin: 1em;
6 background-color: #467;
7 color: white;
8 }
9
10
11 body, p, ul, td, th {
12 font-family: Verdana, Arial, helvetica, sans-serif;
13 font-size: 10pt;
14 }
15
16
17 a, a:visited, a:active {
18 color: #fc0;
19 }
20
21 a:hover {
22 text-decoration: underline;
23 color: white;
24 }
25
26
27 h1, h2, h3 {
28 font-family: Arial, sans-serif;
29 font-weight: normal;
30 color: #035;
31 background: #79a;
32 padding: 4px;
33 border-bottom: 2px solid black;
34 }
35
36 th {
37 padding: 2px;
38 margin: 2px;
39 background: #689;
40 color: #035;
41 text-align: center;
42 }
43
44 td {
45 padding: 4px;
46 margin: 2px;
47 }
48
49 table.detailed, table.summary {
50 border: 1px solid white;
51 }
52
53 table.detailed td, table.summary td {
54 font-size: 8pt;
55 }
56
57 td.blocked {
58 background: #400;
59 color: red;
60 }