stylesheet.css 2.9 KB
Newer Older
1
/*
2 3 4
 * Copyright 2004-2008 H2 Group. Multiple-Licensed under the H2 License, 
 * Version 1.0, and under the Eclipse Public License, Version 1.0 
 * (http://h2database.com/html/license.html).
5 6 7 8
 * Initial Developer: H2 Group
 */

td, input, select, textarea, body, code, pre, td, th {
9
    font: 9pt/130% Tahoma, Arial, Helvetica, sans-serif;
10 11 12 13
    font-weight: normal;
}

h1, h2, h3, h4, h5 {
14
    font: 9pt Tahoma, Arial, Helvetica, sans-serif;
15 16 17 18
    font-weight: bold;
}

td, input, select, textarea, body, code, pre {
19
    font-size: 9pt;
20 21 22 23 24 25 26 27
}

pre {
    background-color: #ece9d8;
    border: 1px solid rgb(172, 168, 153);
    padding: 4px;
}

28 29 30 31 32
code {
    background-color: #ece9d8;
    padding: 0px 2px;
}

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
body {
    margin: 0px;
}

h1 {
    background-color: #0000bb;
    padding: 2px 4px 2px 4px;
    color: #fff;
    font-size: 15pt;
    line-height: normal;
}

h2 {
    font-size: 13pt;
}

h3 {
    font-size: 10pt;
}

h4 {
    font-size: 9pt;
}

hr {
    color: #CCC;
    background-color: #CCC;
    height: 1px;
    border: 0px solid blue;
}

table {
    background-color: #ffffff;
    border-collapse: collapse;
    border: 1px solid #aca899;
}

th {
    text-align: left;
    background-color: #ece9d8;
    border: 1px solid #aca899;
    padding: 2px;
}

td {
    background-color: #ffffff;
    text-align: left;
    vertical-align: top;
    border: 1px solid #aca899;
    padding: 2px;
}

form {
}

ul, ol {
    list-style-position: outside;
    padding-left: 20px;
}

li {
    margin-top: 2px;
}

a {
    text-decoration: none;
    color: #0000ff;
}

a:hover {
    text-decoration: underline;
}

106 107 108 109 110
em.u {
    text-decoration: underline;
    font-style: normal;
}

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 138 139 140 141 142 143 144 145 146 147 148 149 150 151
.button {
    border: 1px outset #800;
    margin: 0px 2px 0px 2px;
    padding: 0px 4px 0px 4px;
    font-weight: bold;
}

.menu {
    margin: 10px 10px 10px 10px;
}

table.search {
    width: 100%;
    border: 0px;
}

tr.search {
    border: 0px;
}

td.search {
    border: 0px;
    padding: 2px 0px 2px 10px;
}

td.searchKeyword {
    border: 0px;
    padding: 0px 0px 0px 2px;
}

td.searchKeyword a {
    text-decoration: none;
    color: #000000;
}

td.searchKeyword a:hover {
    text-decoration: underline;
}

td.searchLink {
    border: 0px;
152
    padding: 0px 0px 0px 32px;
153 154 155 156 157 158 159 160 161 162 163 164 165
    text-indent: -16px;
}

td.searchLink a {
    text-decoration: none;
    color: #0000ff;
}

td.searchLink a:hover {
    text-decoration: underline;
}

table.content {
166 167
    width: 100%;
    height: 100%;
168 169 170 171
    border: 0px;
}

tr.content {
172
    border:0px;
173 174 175 176
    border-left:1px solid #aca899;
}

td.content {
177
    border:0px;
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
    border-left:1px solid #aca899;
}

.contentDiv {
    margin:10px;
}

.screenshot {
    border: 1px outset #800;
    padding: 10px;
    margin: 10px 0px;
}

.compareFeature {
}

.compareY {
    color: #050;
}

.compareN {
    color: #800;
}