canvas-pdf.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. body {
  2. color: #000;
  3. background-color: #cfd8dc;
  4. font-family: 'Arial', sans-serif;
  5. }
  6. .logo-icon {
  7. width: 80px;
  8. height: 50px;
  9. background-image: url('../icons/logo.png');
  10. background-repeat: no-repeat;
  11. background-size: contain;
  12. background-position: top;
  13. float: left;
  14. border-radius: 5px;
  15. padding: 0 10px 0px 0;
  16. }
  17. .page_title {
  18. /*background-color:lightgreen;*/
  19. }
  20. .logo .ethics-title {
  21. font-size: 1.5em;
  22. margin-left: 10px;
  23. }
  24. .logo {
  25. width: 32%;
  26. float: left;
  27. }
  28. .page_title span {
  29. font-weight: bold;
  30. }
  31. .project_title, .project_date {
  32. width: 30%;
  33. float: left;
  34. padding-top: 0.5em;
  35. margin-bottom: 30px;
  36. }
  37. .row1 {
  38. width: 100%;
  39. }
  40. /* CARDS */
  41. .card {
  42. background-color: #fff;
  43. width: 19.2%;
  44. margin: 0 0.4% 4px 0.4%;
  45. height: 320px;
  46. float: left;
  47. /*border: 1px solid black;*/
  48. border-radius: 5px;
  49. background-repeat: no-repeat;
  50. background-size: contain;
  51. background-position: left bottom;
  52. }
  53. .card ul.items {
  54. margin: 0 0 7px 0;
  55. padding: 0 1.5em;
  56. }
  57. .card li {
  58. font-size: 0.75em;
  59. padding: 0 0.2em;
  60. line-height: 1;
  61. }
  62. .card h3 {
  63. padding: 0 0.6em;
  64. font-size: 1.05em;
  65. }
  66. .field_01 h3 {
  67. color: rgb(162, 129, 209);
  68. }
  69. .field_02 h3 {
  70. color: rgb(162, 129, 209);
  71. }
  72. .field_03 h3 {
  73. color: rgb(133, 173, 229);
  74. }
  75. .field_04 h3 {
  76. color: rgb(174, 213, 129);
  77. }
  78. .field_05 h3 {
  79. color: rgb(107, 181, 180);
  80. }
  81. .field_06 h3 {
  82. color: rgb(41, 187, 163);
  83. }
  84. .field_07 h3 {
  85. color: rgb(125, 161, 214);
  86. }
  87. .field_08 h3 {
  88. color: rgb(174, 213, 129);
  89. }
  90. .field_09 h3 {
  91. color: rgb(139, 153, 224);
  92. }
  93. .field_10 h3 {
  94. color: rgb(162, 129, 209);
  95. }
  96. /* The mpdf library doesn't support absolute positioning for nested elements and doesn't fully support margin-bottom. This invisible element is here to make sure the items won't cover the card icons when the list gets long */
  97. .field-icons {
  98. /*background-color: lightseagreen;*/
  99. height: 1.8em;
  100. }
  101. .field_01 {
  102. background-image: url('../icons/pdf/field1-pdf.svg');
  103. }
  104. .field_02 {
  105. background-image: url('../icons/pdf/field2-pdf.svg');
  106. }
  107. .field_03 {
  108. background-image: url('../icons/pdf/field3-pdf.svg');
  109. }
  110. .field_04 {
  111. background-image: url('../icons/pdf/field4-pdf.svg');
  112. }
  113. .field_05 {
  114. background-image: url('../icons/pdf/field5-pdf.svg');
  115. }
  116. .field_06 {
  117. background-image: url('../icons/pdf/field6-pdf.svg');
  118. }
  119. .field_07 {
  120. background-image: url('../icons/pdf/field7-pdf.svg');
  121. }
  122. .field_08 {
  123. background-image: url('../icons/pdf/field8-pdf.svg');
  124. }
  125. .field_09 {
  126. background-image: url('../icons/pdf/field9-pdf.svg');
  127. }
  128. .field_10 {
  129. background-image: url('../icons/pdf/field10-pdf.svg');
  130. }