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 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. .card {
  2. width:66mm;
  3. min-width:66mm;
  4. height:95mm;
  5. border: 2mm solid;
  6. border-radius: 4px;
  7. position: relative;
  8. display: flex;
  9. flex-direction: column;
  10. font-family: 'Noto Sans', 'Myriad Pro', Calibri, Helvetica, Arial, sans-serif;
  11. font-size: 8pt;
  12. }
  13. .card-content-container {
  14. padding:2mm;
  15. padding-top:1mm;
  16. border-radius: 2mm;
  17. margin-top:0px;
  18. background-color: white;
  19. border-color: inherit;
  20. display: flex;
  21. flex-direction: column;
  22. flex: 1;
  23. font-size: inherit;
  24. }
  25. .card-back {
  26. background-color: white;
  27. border-radius: 4mm;
  28. border-color: inherit;
  29. margin: 2mm;
  30. flex: 1;
  31. display: flex;
  32. }
  33. .card-back-inner {
  34. margin: 2mm;
  35. border: 1mm solid;
  36. border-color: inherit;
  37. border-radius: 4mm;
  38. flex: 1;
  39. display: flex;
  40. flex-direction: row;
  41. flex-wrap: wrap;
  42. justify-content: center;
  43. align-items: center;
  44. }
  45. .card-back-icon {
  46. width: 30mm;
  47. height: 30mm;
  48. border: 4mm solid;
  49. border-color: inherit;
  50. border-radius: 4mm;
  51. background-repeat: no-repeat;
  52. background-size: contain;
  53. }
  54. .card-title-icon {
  55. width: 12mm;
  56. height: 12mm;
  57. background-repeat: no-repeat;
  58. background-size: contain;
  59. background-color: inherit;
  60. border-color: inherit;
  61. }
  62. .card-title-icon-container {
  63. position: absolute;
  64. right: -1mm;
  65. top: -1mm;
  66. border: 1mm solid;
  67. border-radius: 1mm;
  68. background-color: inherit;
  69. border-color: inherit;
  70. }
  71. .card-title-inlineicon {
  72. width: 7mm;
  73. height: 7mm;
  74. background-repeat: no-repeat;
  75. background-size: contain;
  76. background-color: inherit;
  77. border-color: inherit;
  78. }
  79. .card-title-inlineicon-container {
  80. position: absolute;
  81. right: -1mm;
  82. top: -1mm;
  83. border: 1mm solid;
  84. border-radius: 1mm;
  85. background-color: inherit;
  86. border-color: inherit;
  87. }
  88. .card-title {
  89. height: 8mm;
  90. padding-left: 2mm;
  91. font-family: Lora, 'Calisto MT', 'Bookman Old Style', Bookman, 'Goudy Old Style', Garamond, 'Hoefler Text', 'Bitstream Charter', Georgia, serif;
  92. font-variant: small-caps;
  93. font-weight: bold;
  94. background-color: inherit;
  95. color: white;
  96. }
  97. .card-title-big {
  98. font-size: 6mm;
  99. line-height: 6mm;
  100. }
  101. .card-title-normal {
  102. font-size: 5mm;
  103. line-height: 6mm;
  104. }
  105. .card-title-small {
  106. font-size: 4mm;
  107. line-height: 6.5mm;
  108. }
  109. .card-title-tiny {
  110. font-size: 3.5mm;
  111. line-height: 6.75mm;
  112. }
  113. .card-subtitle {
  114. height: 18px;
  115. line-height: 18px;
  116. margin-bottom: 1mm;
  117. font-family: 'Noto Sans', 'Myriad Pro', Calibri, Helvetica, Arial, sans-serif;
  118. font-size: 10pt;
  119. font-style: italic;
  120. }
  121. .card-property-line {
  122. text-indent: -1em;
  123. margin-left: 1em;
  124. font-size: inherit;
  125. color: black;
  126. }
  127. .card-property-name {
  128. display: inline;
  129. font-size: inherit;
  130. }
  131. .card-property-text {
  132. display: inline;
  133. }
  134. .card-section {
  135. border-bottom: 1px solid;
  136. font-size: 10pt;
  137. font-variant: small-caps;
  138. font-weight: normal;
  139. letter-spacing: 1px;
  140. margin: 0;
  141. margin-bottom: 0.3em;
  142. border-color: inherit;
  143. }
  144. .card-p {
  145. margin-top: 0.0em;
  146. margin-bottom: 0.5em;
  147. font-size: inherit;
  148. }
  149. .card-fill {flex:1;}
  150. .card-description-line {
  151. margin-bottom: 0.5em;
  152. font-size: inherit;
  153. color: black;
  154. }
  155. .card-description-name {
  156. display: inline;
  157. font-size: inherit;
  158. }
  159. .card-description-text {
  160. display: inline;
  161. }
  162. .card-ruler {
  163. width: 100%;
  164. height: 1.0mm;
  165. margin-top: 0.5em;
  166. margin-bottom: 0.2em;
  167. }