1/**
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
5 * use this file except in compliance with the License. You may obtain a copy of
6 * the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 * License for the specific language governing permissions and limitations under
14 * the License.
15*/
16
17html,body {
18    height: 100%;
19}
20
21body {
22    padding: 20px;
23    margin: 0;
24    background-color: #fff;
25    font-family: Verdana, Arial, Helvetica, sans-serif;
26    text-align: left;
27}
28
29a {
30    color: #0033cc;
31}
32
33h1 {
34    font-family: Arial;
35    font-weight: normal;
36    border-bottom: solid 1px #ccc;
37    margin: 0 0 20px 0;
38    padding: 0 0 5px 0;
39}
40
41h3 {
42    font-family: Arial;
43    font-weight: bold;
44    line-height: 2em;
45}
46
47table {
48    border-collapse: collapse;
49    margin-bottom: 20px;
50}
51
52th,td {
53    padding: 5px 8px;
54    text-align: left;
55}
56
57td.center {
58    text-align: center;
59}
60
61.deleted td {
62    text-decoration: line-through;
63}
64
65.data th {
66    font-weight: normal;
67    border-bottom: solid 1px #000;
68}
69
70.data td {
71    border-bottom: solid 1px #eee;
72}
73
74.form th {
75    font-weight: normal;
76    text-align: right;
77}