summaryrefslogtreecommitdiff
path: root/html/style.css
blob: a3ae33f609e3a9e1f76c9c9706c6b11333eecfb9 (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
 body { 
   margin-left: 1em; 
   margin-right: 1em; 
   font-family: tahoma, verdana, arial, helvetica, geneva, sans-serif;
   background-color:#ffffff;
 }
 p {
   margin-left: 1em;
   line-height: 130%;
 }
 h2 {
   color: #3366CC;
 }
 h3 {
   padding: 4px;
   background-color: #E1E1E1;
   border: 1px solid #808080;
   color: #5C5C5C;
 }
 pre {
   background-color: #CEE7FF;
   border: 1px solid #62A0FF;
   padding: 10px;
   font-family: 'Monotype.com', "Courier New", Courier, monospace;
   font-size: 90%;
   line-height: 125%;
   margin-left: 3em;
   margin-right: 3em;
 }
 p.info {
   margin-left: 3em;
 }
 ul {
   margin-left: 2em;
 }
 h4 {
   background-color: #E1E1E1;
   padding: 3px;
   margin-right: 2em;
   margin-left: 2em;
 }
h4.function {
  font-family: "Courier New", Courier, monospace;
  background-color: #E1E1E1;
  border: 1px solid #B1B1B1;
  padding: 10px;
  line-height: 125%;
  margin-left: 0.5em;
  margin-right: 3em;
  font-weight: normal;
}
pre.function {
  font-family: "Courier New", Courier, monospace;
  background-color: #E1E1E1;
  border: 1px solid #B1B1B1;
  padding: 10px;
  font-size: 100%;
  line-height: 125%;
  margin-left: 0.5em;
  margin-right: 3em;
  font-weight: normal;
}
.mainFunction {
  font-size: 110%;
  font-weight: bold;
}
 h1 {
   text-align: center;
 }
 .homeTitle {
   font-family: Arial, Helvetica, sans-serif;
   font-size: 36pt;
   font-weight: bold;
   color: #003399;
   text-align: center;
 }
 .homeDescription {
   font-family: Arial, Helvetica, sans-serif;
   font-size: 20pt;
   color: #003399;
   text-align: center;
 }
 .homeVersion {
   margin: 10px;
   font-family: Arial, Helvetica, sans-serif;
   font-size: 16pt;
   color: #003399;
   text-align: center;
 }
 #navigation {
   position: fixed;
   top: 0;   
   right: 0;
   background-color: #E1E1E1;
 }
 #navigation ul {
   list-style-type: none;
   margin: 0;
   padding: 0;
 }
 #navigation li {
   float: left;
 }
 #navigation a {
   color: #5C5C5C;
   text-decoration: none;
   display: block;
   padding: 3px;
   border: 1px solid #808080;
   background-color: #E1E1E1;
   font-size: small;
 }
 #navigation a:hover {
   color: #E1E1E1;
   text-decoration: none;
   border: 1px solid #808080;
   background-color: #5C5C5C;
 }