blob: c1e9f480c8a59cd4b3696ee3e5345bcbc56ba0d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* The gnupg.org standard stylesheet. */
@import url(/share/site.css);
/* The gnupg site sets body margins to zero. Because we don't have
the table layout here we have to set our own margins for the body. */
body {
margin-left: 1em;
margin-right: 1em;
}
/* Make the top header larger. */
h1 {
text-align: center;
font-size: 200%;
}
h1:first-letter {
font-size: 120%;
}
|