@idevs/corelib 0.0.45 → 0.0.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/idevs.print.css +59 -0
- package/package.json +1 -1
package/css/idevs.print.css
CHANGED
|
@@ -169,6 +169,54 @@
|
|
|
169
169
|
width: 100%;
|
|
170
170
|
}
|
|
171
171
|
|
|
172
|
+
.col-1 {
|
|
173
|
+
width: calc(100% / 12);
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.col-2 {
|
|
177
|
+
width: calc(100% / 12 * 2);
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.col-3 {
|
|
181
|
+
width: calc(100% / 12 * 3);
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.col-4 {
|
|
185
|
+
width: calc(100% / 12 * 4);
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.col-5 {
|
|
189
|
+
width: calc(100% / 12 * 5);
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.col-6 {
|
|
193
|
+
width: calc(100% / 12 * 6);
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.col-7 {
|
|
197
|
+
width: calc(100% / 12 * 7);
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.col-8 {
|
|
201
|
+
width: calc(100% / 12 * 8);
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.col-9 {
|
|
205
|
+
width: calc(100% / 12 * 9);
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.col-10 {
|
|
209
|
+
width: calc(100% / 12 * 10);
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.col-11 {
|
|
213
|
+
width: calc(100% / 12 * 11);
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.col-12 {
|
|
217
|
+
width: 100%;
|
|
218
|
+
}
|
|
219
|
+
|
|
172
220
|
.p-1,
|
|
173
221
|
.pt-1,
|
|
174
222
|
.py-1 {
|
|
@@ -288,9 +336,20 @@
|
|
|
288
336
|
.page-break-after {
|
|
289
337
|
position: relative;
|
|
290
338
|
page-break-after: always;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.potrait-a4 {
|
|
291
342
|
height: 1043px;
|
|
292
343
|
}
|
|
293
344
|
|
|
345
|
+
.landscape-a4 {
|
|
346
|
+
height: 713px;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.landscape-legal {
|
|
350
|
+
height: 793px;
|
|
351
|
+
}
|
|
352
|
+
|
|
294
353
|
.align-page-bottom {
|
|
295
354
|
position: absolute;
|
|
296
355
|
left: 0;
|