Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

cards.css 3.2KB

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