暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

cards.css 4.6KB

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