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

cards.css 2.8KB

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