blob: e7a27ef11ea1e0758763ebab9486a64ab3a154ba (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
body {
font-weight: normal;
font-size: medium;
font-family: verdana, tahoma, helvetica, arial, sans-serif;
text-align: left;
}
.toc ul, .index ul {
list-style: none;
}
.navheader, .navfooter {
font-size: smaller;
text-align: center;
}
.headerlinks {
border-bottom : solid 2px green;
padding-bottom: 0.5em;
}
.navfooter {
border-top : solid 2px green;
padding-top: 0.5em;
margin-top: 0.5em;
}
.prev {
float : left;
text-align: left;
/* border : solid 1px #ddd; */
padding-left: 2em;
}
.next {
float : right;
text-align: right;
/* border : solid 1px #0dd; */
padding-right: 2em;
}
.up {
/* border : solid 1px #ff0; */
width : 10em;
/* background-color: #bbb; */
margin: 0px auto;
}
li.preface {
margin-left: 2.5em;
}
div.book div.titlepage h1.title {
font-weight: bold;
font-size: xx-large;
text-align: center;
}
div.book div.titlepage h2.subtitle {
font-weight: bold;
font-size: x-large;
text-align: center;
}
div.book div.titlepage h3.author {
font-size: large;
}
div.book div.dedication div.titlepage h2.title {
font-weight: normal;
font-size: x-large;
}
div.chapter div.titlepage h2.title {
font-weight: bold;
font-size: x-large;
text-align: left;
}
div.sect1 div.titlepage h2.title {
font-weight: bold;
font-size: x-large;
text-align: left;
}
tt {
font-family: courier, monospace;
}
pre.screen {
color: black;
background-color: #dddddd;
}
pre.synopsis {
color: black;
background-color: #dddddd;
}
div.admonition {
border: medium solid;
width: 90%;
margin: .5em auto;
}
div.admonhead h3 {
display: inline;
margin-left: 1.5em;
}
div.admonbody {
margin: .5em;
}
.command {
font-family: courier, monospace;
}
.item {
width: 15em;
float: left;
}
.secitem {
font-weight: normal;
width: 12.5em;
float: left;
}
.materials dd {
margin-bottom: 1em;
margin-left: 0px auto;
}
.materials dd p {
margin-top: 0px auto;
}
|