You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

excelStyle.css 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * This is the default style sheet for html generated by ToHtml
  3. *
  4. * @author Ken Arnold, Industrious Media LLC
  5. */
  6. .excelDefaults {
  7. background-color: white;
  8. color: black;
  9. text-decoration: none;
  10. direction: ltr;
  11. text-transform: none;
  12. text-indent: 0;
  13. letter-spacing: 0;
  14. word-spacing: 0;
  15. white-space: normal;
  16. unicode-bidi: normal;
  17. vertical-align: 0;
  18. background-image: none;
  19. text-shadow: none;
  20. list-style-image: none;
  21. list-style-type: none;
  22. padding: 0;
  23. margin: 0;
  24. border-collapse: collapse;
  25. white-space: pre;
  26. vertical-align: bottom;
  27. font-style: normal;
  28. font-family: sans-serif;
  29. font-variant: normal;
  30. font-weight: normal;
  31. font-size: 10pt;
  32. text-align: right;
  33. }
  34. .excelDefaults td {
  35. padding: 1px 5px;
  36. border: 1px solid silver;
  37. }
  38. .excelDefaults .colHeader {
  39. background-color: silver;
  40. font-weight: bold;
  41. border: 1px solid black;
  42. text-align: center;
  43. padding: 1px 5px;
  44. }
  45. .excelDefaults .rowHeader {
  46. background-color: silver;
  47. font-weight: bold;
  48. border: 1px solid black;
  49. text-align: right;
  50. padding: 1px 5px;
  51. }