print.css 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. .nowrap {
  2. white-space: nowrap;
  3. }
  4. .hide {
  5. display: none;
  6. }
  7. body,
  8. table,
  9. th,
  10. td {
  11. color: #000;
  12. background-color: #fff;
  13. }
  14. img {
  15. border: 0;
  16. }
  17. table,
  18. th,
  19. td {
  20. border: 0.1em solid #000;
  21. }
  22. table {
  23. border-collapse: collapse;
  24. border-spacing: 0;
  25. }
  26. th,
  27. td {
  28. padding: 0.2em;
  29. }
  30. th {
  31. font-weight: bold;
  32. background-color: #e5e5e5;
  33. }
  34. th.vtop,
  35. td.vtop {
  36. vertical-align: top;
  37. }
  38. th.vbottom,
  39. td.vbottom {
  40. vertical-align: bottom;
  41. }
  42. @media print {
  43. .print_ignore {
  44. display: none;
  45. }
  46. .nowrap {
  47. white-space: nowrap;
  48. }
  49. .hide {
  50. display: none;
  51. }
  52. body,
  53. table,
  54. th,
  55. td {
  56. color: #000;
  57. background-color: #fff;
  58. }
  59. img {
  60. border: 0;
  61. }
  62. table,
  63. th,
  64. td {
  65. border: 0.1em solid #000;
  66. }
  67. table {
  68. border-collapse: collapse;
  69. border-spacing: 0;
  70. }
  71. th,
  72. td {
  73. padding: 0.2em;
  74. }
  75. th {
  76. font-weight: bold;
  77. background-color: #e5e5e5;
  78. }
  79. th.vtop,
  80. td.vtop {
  81. vertical-align: top;
  82. }
  83. th.vbottom,
  84. td.vbottom {
  85. vertical-align: bottom;
  86. }
  87. }