Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  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: 2mm;
  28. flex: 1;
  29. display: flex;
  30. }
  31. .card-back-inner {
  32. margin: 2mm;
  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: 30mm;
  45. height: 30mm;
  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-big {
  96. font-size: 6mm;
  97. line-height: 6mm;
  98. }
  99. .card-title-normal {
  100. font-size: 5mm;
  101. line-height: 6mm;
  102. }
  103. .card-title-small {
  104. font-size: 4mm;
  105. line-height: 6.5mm;
  106. }
  107. .card-title-tiny {
  108. font-size: 3.5mm;
  109. line-height: 6.75mm;
  110. }
  111. .card-subtitle {
  112. height: 18px;
  113. line-height: 18px;
  114. margin-bottom: 1mm;
  115. font-family: 'Noto Sans', 'Myriad Pro', Calibri, Helvetica, Arial, sans-serif;
  116. font-size: 10pt;
  117. font-style: italic;
  118. }
  119. .card-property-line {
  120. text-indent: -1em;
  121. margin-left: 1em;
  122. font-size: inherit;
  123. color: black;
  124. }
  125. .card-property-name {
  126. display: inline;
  127. font-size: inherit;
  128. }
  129. .card-property-text {
  130. display: inline;
  131. }
  132. .card-section {
  133. border-bottom: 1px solid;
  134. font-size: 10pt;
  135. font-variant: small-caps;
  136. font-weight: normal;
  137. letter-spacing: 1px;
  138. margin: 0;
  139. margin-bottom: 0.3em;
  140. border-color: inherit;
  141. }
  142. .card-p {
  143. margin-top: 0.0em;
  144. margin-bottom: 0.5em;
  145. font-size: inherit;
  146. }
  147. .card-fill {flex:1;}
  148. .card-description-line {
  149. margin-bottom: 0.5em;
  150. font-size: inherit;
  151. color: black;
  152. }
  153. .card-description-name {
  154. display: inline;
  155. font-size: inherit;
  156. }
  157. .card-description-text {
  158. display: inline;
  159. }
  160. .card-ruler {
  161. width: 100%;
  162. height: 1.0mm;
  163. margin-top: 0.5em;
  164. margin-bottom: 0.2em;
  165. }
  166. .card-bullet-line {
  167. font-size: inherit;
  168. color: black;
  169. padding-left: 16px;
  170. padding-bottom: 0;
  171. margin-bottom: 0;
  172. margin-top: 0;
  173. }
  174. .card-bullet {
  175. margin-bottom: 0;
  176. margin-top: 0;
  177. font-size: inherit;
  178. }
  179. .card-element:last-of-type{
  180. margin-bottom: 0;
  181. }