1/*
2 * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.  Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26body {
27  margin: 2em 2em;
28  font-family: DejaVu Sans, Bitstream Vera Sans, Luxi Sans, Verdana, Arial, Helvetica;
29  font-size: 10pt;
30  line-height: 1.4;
31}
32
33pre, code, tt {
34  font-family: DejaVu Sans Mono, Bitstream Vera Sans Mono, Luxi Mono,
35    Courier New, monospace;
36}
37
38blockquote {
39  margin: 1.5ex 0em 1.5ex 2em;
40}
41
42p {
43  padding: 0pt;
44  margin: 1ex 0em;
45}
46
47p:first-child, pre:first-child { margin-top: 0pt; }
48
49h1 {
50  font-weight: bold;
51  padding: 0pt;
52  margin: 2ex .5ex 1ex 0pt;
53}
54
55h1:first-child, h2:first-child {
56  margin-top: 0ex;
57}
58
59h2 {
60  font-weight: bold;
61  padding: 0pt;
62  margin: 2ex 0pt 1ex 0pt;
63}
64
65h3 {
66  font-weight: bold;
67  padding: 0pt;
68  margin: 1.5ex 0pt 1ex 0pt;
69}
70
71h4 {
72  font-weight: bold;
73  padding: 0pt;
74  margin: 1.5ex 0pt 1ex 0pt;
75}
76
77a:link {
78  color: #437291;
79}
80
81a:visited {
82  color: #666666;
83}
84
85a[href]:hover {
86  color: #e76f00;
87}
88
89a img {
90  border-width: 0px;
91}
92
93img {
94  background: white;
95}
96
97table {
98  border-collapse: collapse;
99  margin-left: 15px;
100  margin-right: 15px;
101}
102
103th, td {
104  padding: 3px;
105  vertical-align: top;
106}
107
108table, th, td {
109  border: 1px solid black;
110}
111
112caption  {
113  text-align: left;
114  font-style: italic;
115  text-indent: 15px;
116  margin-bottom:10px;
117}
118
119tr:nth-child(even), tr:nth-child(even) th[scope=row] {
120  background: #DDD;
121}
122
123tr:nth-child(odd), tr:nth-child(odd) th[scope=row] {
124  background: #FFF;
125}
126
127th {
128  background: #DDF;
129}
130