| 8673 |
kshitij.so |
1 |
/*
|
|
|
2 |
====================================================================
|
|
|
3 |
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
4 |
contributor license agreements. See the NOTICE file distributed with
|
|
|
5 |
this work for additional information regarding copyright ownership.
|
|
|
6 |
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
7 |
(the "License"); you may not use this file except in compliance with
|
|
|
8 |
the License. You may obtain a copy of the License at
|
|
|
9 |
|
|
|
10 |
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
11 |
|
|
|
12 |
Unless required by applicable law or agreed to in writing, software
|
|
|
13 |
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
14 |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
15 |
See the License for the specific language governing permissions and
|
|
|
16 |
limitations under the License.
|
|
|
17 |
====================================================================
|
|
|
18 |
*/
|
|
|
19 |
/*
|
|
|
20 |
* This is the default style sheet for html generated by ToHtml
|
|
|
21 |
*
|
|
|
22 |
* @author Ken Arnold, Industrious Media LLC
|
|
|
23 |
*/
|
|
|
24 |
.excelDefaults {
|
|
|
25 |
background-color: white;
|
|
|
26 |
color: black;
|
|
|
27 |
text-decoration: none;
|
|
|
28 |
direction: ltr;
|
|
|
29 |
text-transform: none;
|
|
|
30 |
text-indent: 0;
|
|
|
31 |
letter-spacing: 0;
|
|
|
32 |
word-spacing: 0;
|
|
|
33 |
white-space: normal;
|
|
|
34 |
unicode-bidi: normal;
|
|
|
35 |
vertical-align: 0;
|
|
|
36 |
background-image: none;
|
|
|
37 |
text-shadow: none;
|
|
|
38 |
list-style-image: none;
|
|
|
39 |
list-style-type: none;
|
|
|
40 |
padding: 0;
|
|
|
41 |
margin: 0;
|
|
|
42 |
border-collapse: collapse;
|
|
|
43 |
white-space: pre;
|
|
|
44 |
vertical-align: bottom;
|
|
|
45 |
font-style: normal;
|
|
|
46 |
font-family: sans-serif;
|
|
|
47 |
font-variant: normal;
|
|
|
48 |
font-weight: normal;
|
|
|
49 |
font-size: 10pt;
|
|
|
50 |
text-align: right;
|
|
|
51 |
}
|
|
|
52 |
|
|
|
53 |
.excelDefaults td {
|
|
|
54 |
padding: 1px 5px;
|
|
|
55 |
border: 1px solid silver;
|
|
|
56 |
}
|
|
|
57 |
|
|
|
58 |
.excelDefaults .colHeader {
|
|
|
59 |
background-color: silver;
|
|
|
60 |
font-weight: bold;
|
|
|
61 |
border: 1px solid black;
|
|
|
62 |
text-align: center;
|
|
|
63 |
padding: 1px 5px;
|
|
|
64 |
}
|
|
|
65 |
|
|
|
66 |
.excelDefaults .rowHeader {
|
|
|
67 |
background-color: silver;
|
|
|
68 |
font-weight: bold;
|
|
|
69 |
border: 1px solid black;
|
|
|
70 |
text-align: right;
|
|
|
71 |
padding: 1px 5px;
|
|
|
72 |
}
|