Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

cards.css 3.3KB

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