blob: 0e968d3a756406a3ab1838a17870f816e7099bb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
/* Default body format */
body
{
background: rgb(200,200,230);
color: rgb(0,0,0);
font-family: Vera-sans,Sans-serif;
font-size: 100%;
margin: 2em;
}
/* Headlines */
h1
{
font-size: 250%;
}
h2
{
font-size: 150%;
}
/* Element class formats */
.top, .content
{
font-size: 1em;
padding: 0.5em 1.5em;
border: 1px solid rgb(0,0,0);
margin: 0em;
}
.top
{
background-color: rgb(210,250,210);
}
.content
{
background-color: rgb(240,240,240);
border-top-width: 0em;
margin-bottom: 1em;
}
/* EOF */
|