No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

cards.css 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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. line-height: 6mm;
  94. padding-left: 2mm;
  95. font-family: Lora, 'Calisto MT', 'Bookman Old Style', Bookman, 'Goudy Old Style', Garamond, 'Hoefler Text', 'Bitstream Charter', Georgia, serif;
  96. font-variant: small-caps;
  97. font-weight: bold;
  98. font-size: 14pt;
  99. background-color: inherit;
  100. color: white;
  101. }
  102. .subtitle {
  103. height: 18px;
  104. line-height: 18px;
  105. margin-bottom: 1mm;
  106. font-family: 'Noto Sans', 'Myriad Pro', Calibri, Helvetica, Arial, sans-serif;
  107. font-size: 10pt;
  108. font-style: italic;
  109. }
  110. .property-line {
  111. text-indent: -1em;
  112. margin-left: 1em;
  113. }
  114. .property-name {
  115. display: inline;
  116. }
  117. .property-text {
  118. display: inline;
  119. }
  120. h3 {
  121. border-bottom: 1px solid;
  122. font-size: 10pt;
  123. font-variant: small-caps;
  124. font-weight: normal;
  125. letter-spacing: 1px;
  126. margin: 0;
  127. margin-bottom: 0.3em;
  128. border-color: inherit;
  129. }
  130. p {
  131. margin-top: 0.0em;
  132. margin-bottom: 0.5em;
  133. }
  134. .fill {flex:1;}
  135. .description-line {
  136. margin-bottom: 0.5em;
  137. }
  138. .description-name {
  139. display: inline;
  140. }
  141. .description-text {
  142. display: inline;
  143. }
  144. .ruler {
  145. width: 100%;
  146. height: 1.0mm;
  147. margin-top: 0.5em;
  148. margin-bottom: 0.2em;
  149. }