Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

cards.css 4.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. .card {
  2. border: 2mm solid;
  3. border-radius: 4px;
  4. box-sizing: border-box;
  5. position: relative;
  6. display: flex;
  7. flex-direction: column;
  8. font-family: 'Noto Sans', 'Myriad Pro', Calibri, Helvetica, Arial, sans-serif;
  9. font-size: 8pt;
  10. }
  11. .card-content-container {
  12. padding:2mm;
  13. padding-top:1mm;
  14. border-radius: 2mm;
  15. margin-top:0px;
  16. background-color: white;
  17. border-color: inherit;
  18. display: flex;
  19. flex-direction: column;
  20. flex: 1;
  21. font-size: inherit;
  22. }
  23. .card-back {
  24. /* background-color: white; */
  25. border-radius: 4mm;
  26. border-color: inherit;
  27. margin: 3mm;
  28. flex: 1;
  29. display: flex;
  30. }
  31. .card-back-inner {
  32. margin: 3mm;
  33. border: 1mm solid;
  34. border-color: inherit;
  35. border-radius: 4mm;
  36. flex: 1;
  37. display: flex;
  38. flex-direction: row;
  39. flex-wrap: wrap;
  40. justify-content: center;
  41. align-items: center;
  42. }
  43. .card-back-icon {
  44. width: 1in;
  45. height: 1in;
  46. border: 4mm solid;
  47. border-color: inherit;
  48. border-radius: 4mm;
  49. background-repeat: no-repeat;
  50. background-size: contain;
  51. }
  52. .card-title-icon {
  53. width: 12mm;
  54. height: 12mm;
  55. background-repeat: no-repeat;
  56. background-size: contain;
  57. background-color: inherit;
  58. border-color: inherit;
  59. }
  60. .card-title-icon-container {
  61. position: absolute;
  62. right: -1mm;
  63. top: -1mm;
  64. border: 1mm solid;
  65. border-radius: 1mm;
  66. background-color: inherit;
  67. border-color: inherit;
  68. }
  69. .card-title-inlineicon {
  70. width: 7mm;
  71. height: 7mm;
  72. background-repeat: no-repeat;
  73. background-size: contain;
  74. background-color: inherit;
  75. border-color: inherit;
  76. }
  77. .card-title-inlineicon-container {
  78. position: absolute;
  79. right: -1mm;
  80. top: -1mm;
  81. border: 1mm solid;
  82. border-radius: 1mm;
  83. background-color: inherit;
  84. border-color: inherit;
  85. }
  86. .card-title {
  87. height: 8mm;
  88. padding-left: 2mm;
  89. font-family: Lora, 'Calisto MT', 'Bookman Old Style', Bookman, 'Goudy Old Style', Garamond, 'Hoefler Text', 'Bitstream Charter', Georgia, serif;
  90. font-variant: small-caps;
  91. font-weight: bold;
  92. background-color: inherit;
  93. color: white;
  94. }
  95. .card-title-16 {
  96. font-size: 16pt;
  97. line-height: 6.5mm;
  98. }
  99. .card-title-15 {
  100. font-size: 15pt;
  101. line-height: 6.5mm;
  102. }
  103. .card-title-14 {
  104. font-size: 14pt;
  105. line-height: 6.5mm;
  106. }
  107. .card-title-13 {
  108. font-size: 13pt;
  109. line-height: 7mm;
  110. }
  111. .card-title-12 {
  112. font-size: 12pt;
  113. line-height: 7mm;
  114. }
  115. .card-title-11 {
  116. font-size: 11pt;
  117. line-height: 7.5mm;
  118. }
  119. .card-title-10 {
  120. font-size: 10pt;
  121. line-height: 7.5mm;
  122. }
  123. .card-subtitle {
  124. height: 18px;
  125. margin-bottom: 0.0em;
  126. line-height: 18px;
  127. font-family: 'Noto Sans', 'Myriad Pro', Calibri, Helvetica, Arial, sans-serif;
  128. font-size: 10pt;
  129. font-style: italic;
  130. }
  131. .card-picture {
  132. height: 80px;
  133. line-height: 18px;
  134. margin-bottom: 0.0em;
  135. }
  136. .card-property-line {
  137. text-indent: -1em;
  138. margin-left: 1em;
  139. font-size: inherit;
  140. color: black;
  141. }
  142. .card-property-name {
  143. display: inline;
  144. font-size: inherit;
  145. }
  146. .card-property-text {
  147. display: inline;
  148. }
  149. .card-section {
  150. border-bottom: 1px solid;
  151. font-size: 10pt;
  152. font-variant: small-caps;
  153. font-weight: normal;
  154. letter-spacing: 1px;
  155. margin: 0;
  156. border-color: inherit;
  157. }
  158. .card-section + .card-element {
  159. margin-top: 0.3em;
  160. }
  161. .card-p {
  162. }
  163. .card-fill {flex:1;}
  164. .card-description-line {
  165. margin-top: 0.5em;
  166. margin-bottom: 0.0em;
  167. font-size: inherit;
  168. color: black;
  169. }
  170. .card-description-name {
  171. display: inline;
  172. font-size: inherit;
  173. font-style: italic;
  174. }
  175. .card-description-name::after {
  176. content: ".";
  177. }
  178. .card-description-text {
  179. display: inline;
  180. }
  181. .card-ruler {
  182. width: 100%;
  183. height: 1.0mm;
  184. margin-top: 0.3em;
  185. margin-bottom: 0.3em;
  186. }
  187. .card-box {
  188. display: inline;
  189. height: 10mm;
  190. width: 10mm;
  191. margin-right: 0.3em;
  192. }
  193. .card-stats {
  194. width: 100%
  195. }
  196. .card-stats-header {
  197. text-align: center;
  198. padding: 0;
  199. width: 16.6%;
  200. }
  201. .card-stats-cell {
  202. text-align: center;
  203. padding: 0;
  204. }
  205. .card-bullet-line {
  206. font-size: inherit;
  207. color: black;
  208. padding-left: 16px;
  209. padding-bottom: 0;
  210. margin-bottom: 0;
  211. margin-top: 0;
  212. }
  213. .card-bullet {
  214. margin-bottom: 0;
  215. margin-top: 0;
  216. font-size: inherit;
  217. }