Geen omschrijving

print.css 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. body
  2. {
  3. font-family: "Arial", sans-serif;
  4. width:90%;
  5. margin: 0 auto;
  6. }
  7. .header-text
  8. {
  9. text-align:center;
  10. font-weight: bold;
  11. margin:0;
  12. }
  13. h1.header-text
  14. {
  15. margin: 20px 0;
  16. font-size: 28px;
  17. }
  18. table
  19. {
  20. border-collapse: collapse;
  21. border: 1px solid black;
  22. width: 100%;
  23. margin: 30px auto;
  24. }
  25. td, th
  26. {
  27. border: 1px solid black;
  28. padding: 5px;
  29. }
  30. .activity-name-row
  31. {
  32. background:black;
  33. color:white;
  34. }
  35. .activity-headers-row
  36. {
  37. background:lightgrey;
  38. font-weight:bold;
  39. }
  40. .report-info
  41. {
  42. margin:5px 0;
  43. font-size: 16px;
  44. }
  45. .criterion-field
  46. {
  47. text-align:left;
  48. }
  49. .score-field, .total, .percentage
  50. {
  51. text-align:center;
  52. }
  53. .header
  54. {
  55. margin: 30px 0;
  56. }
  57. .content
  58. {
  59. font-size: 12px;
  60. }
  61. .logo
  62. {
  63. position:absolute;
  64. right:0;
  65. top: 30px;
  66. width: 100px;
  67. }
  68. #graph
  69. {
  70. max-width: 45%;
  71. page-break-after: always;
  72. }
  73. .blue
  74. {
  75. width: 200px;
  76. }
  77. @media (max-width: 1644px) {
  78. #graph
  79. {
  80. max-width: 100%;
  81. page-break-after: always;
  82. }
  83. .blue
  84. {
  85. width: 100px;
  86. }
  87. }