Subversion Repositories cheapmusic

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
98 - 1
/* $Id: phplotdoc.css 1256 2012-04-06 22:10:24Z lbayuk $
2
   HTML Style Sheet for PHPlot Reference Manual
3
*/
4
 
5
/* For cover page: */
6
h1.title {
7
  text-align: center;
8
  font-size: 250%;
9
}
10
 
11
h3.corpauthor, h3.author, .affiliation {
12
  text-align: center;
13
  font-style: italic;
14
}
15
 
16
/* Shade examples */
17
pre.programlisting, pre.synopsis, pre.screen {
18
  color: #000000;
19
  background-color: #e0e0e0;
20
  padding: 10px;
21
}
22
 
23
/* Table of Contents */
24
.toc dl dt {
25
  padding-top: 0.5em;
26
  padding-bottom: 0.5em;
27
}
28
.toc dl dl dt {
29
  padding-top: 0em;
30
  padding-bottom: 0em;
31
}
32
 
33
/* Abstract */
34
.abstract {
35
  margin-left: 4em;
36
  margin-right: 4em;
37
}
38
 
39
/* Indent examples, line up program listings inside examples */
40
div.example {
41
  margin-left: 4em;
42
}
43
div.example pre.programlisting, div.example pre.screen {
44
  margin-left: 0em;
45
}
46
 
47
/* Don't put userinput in bold (strong) - hard to read. */
48
strong.userinput {
49
  font-weight: normal;
50
}
51