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