blob: df7774a97c1b5ae8baebe16e94a0286aa45580f8 (
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
|
/* file : man.css
* copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
* license : MIT; see accompanying LICENSE file
*/
/* Bases:
*
* common.css
* pre-box.css
*
*/
#content
{
max-width: 42.1em;
padding-left: 1.5em; /* Reserve for the heading. */
}
h1
{
font-weight: normal;
font-size: 1.58em;
line-height: 1.4em;
margin: 1.6em 0 .6em -.88em;
}
/* Definition list for options. */
dl.options dt {margin: 1em 0 0 0;}
dl.options dd {margin: .1em 0 0 4.5em;}
/* Make lists inside option descriptions a tad smaller. */
dl.options dd ul, dl.options dd ol, dl.options dd dl
{
font-size: 0.889em;
line-height: 1.4em;
}
|