Без опису
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. .card {
  2. border: 2mm solid;
  3. box-sizing: border-box;
  4. position: relative;
  5. display: flex;
  6. flex-direction: column;
  7. font-family: 'Noto Sans', 'Myriad Pro', Calibri, Helvetica, Arial, sans-serif;
  8. font-size: 8pt;
  9. overflow: hidden;
  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-inline-icon {
  137. background-size: auto 80%;
  138. background-repeat: no-repeat;
  139. background-position: center center;
  140. position: relative;
  141. border-radius: 2mm;
  142. }
  143. .card-inline-icon.align-left {
  144. }
  145. .card-inline-icon.align-right {
  146. margin-right: 0px;
  147. }
  148. .card-inline-icon.align-center {
  149. left: 50%;
  150. }
  151. .card-property-line {
  152. text-indent: -1em;
  153. margin-left: 1em;
  154. font-size: inherit;
  155. color: black;
  156. }
  157. .card-property-name {
  158. display: inline;
  159. font-size: inherit;
  160. }
  161. .card-property-text {
  162. display: inline;
  163. }
  164. .card-section {
  165. border-bottom: 1px solid;
  166. font-size: 10pt;
  167. font-variant: small-caps;
  168. font-weight: normal;
  169. letter-spacing: 1px;
  170. margin: 0;
  171. border-color: inherit;
  172. }
  173. .card-section + .card-element {
  174. margin-top: 0.3em;
  175. }
  176. .card-p {
  177. }
  178. .card-fill {flex:1;}
  179. .card-description-line {
  180. margin-top: 0.5em;
  181. margin-bottom: 0.0em;
  182. font-size: inherit;
  183. color: black;
  184. }
  185. .card-description-name {
  186. display: inline;
  187. font-size: inherit;
  188. font-style: italic;
  189. }
  190. .card-description-name::after {
  191. content: ".";
  192. }
  193. .card-description-text {
  194. display: inline;
  195. }
  196. .card-ruler {
  197. width: 100%;
  198. height: 1.0mm;
  199. margin-top: 0.3em;
  200. margin-bottom: 0.3em;
  201. }
  202. .card-box {
  203. display: inline;
  204. height: 10mm;
  205. width: 10mm;
  206. margin-right: 0.3em;
  207. }
  208. .card-stats {
  209. width: 100%
  210. }
  211. .card-stats-header {
  212. text-align: center;
  213. padding: 0;
  214. width: 16.6%;
  215. }
  216. .card-stats-cell {
  217. text-align: center;
  218. padding: 0;
  219. }
  220. .card-bullet-line {
  221. font-size: inherit;
  222. color: black;
  223. padding-left: 16px;
  224. padding-bottom: 0;
  225. margin-bottom: 0;
  226. margin-top: 0;
  227. }
  228. .card-bullet {
  229. margin-bottom: 0;
  230. margin-top: 0;
  231. font-size: inherit;
  232. }