@idevs/corelib 0.0.45 → 0.0.46
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 +54 -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 {
|
|
@@ -291,6 +339,12 @@
|
|
|
291
339
|
height: 1043px;
|
|
292
340
|
}
|
|
293
341
|
|
|
342
|
+
.page-break-after-lanscape {
|
|
343
|
+
position: relative;
|
|
344
|
+
page-break-after: always;
|
|
345
|
+
height: 793px;
|
|
346
|
+
}
|
|
347
|
+
|
|
294
348
|
.align-page-bottom {
|
|
295
349
|
position: absolute;
|
|
296
350
|
left: 0;
|