ukvprintable.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. table.sortable {
  2. border-width: 1px;
  3. border-spacing: 2px;
  4. border-style: outset;
  5. border-color: gray;
  6. border-collapse: separate;
  7. background-color: white;
  8. }
  9. table.sortable th {
  10. border-width: 1px;
  11. padding: 1px;
  12. border-style: dashed;
  13. border-color: gray;
  14. background-color: white;
  15. -moz-border-radius: 1px;
  16. }
  17. table.sortable td {
  18. border-width: 1px;
  19. padding: 1px;
  20. border-style: dotted;
  21. border-color: gray;
  22. -moz-border-radius: 1px;
  23. }
  24. .row1 {
  25. font-weight:bolder;
  26. background-color: #000000;
  27. color: #FFFFFF;
  28. }
  29. table.printable {
  30. border-width: 1px;
  31. border-spacing: 2px;
  32. border-style: outset;
  33. border-color: gray;
  34. border-collapse: separate;
  35. background-color: white;
  36. }
  37. table.printable th {
  38. border-width: 1px;
  39. padding: 1px;
  40. border-style: dashed;
  41. border-color: gray;
  42. background-color: white;
  43. -moz-border-radius: 1px;
  44. }
  45. table.printable td {
  46. border-width: 1px;
  47. padding: 1px;
  48. border-style: dotted;
  49. border-color: gray;
  50. -moz-border-radius: 1px;
  51. }
  52. a {
  53. text-decoration: none;
  54. color: #000000;
  55. }