@qti-components/theme 1.0.1

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.
@@ -0,0 +1,1222 @@
1
+ /* https://www.imsglobal.org/sites/default/files/spec/qti/v3/guide/img/qti3p0.css */
2
+ /* ============================
3
+ QTI 3 shared css
4
+ 1. Display
5
+ 2. Special Flex styles
6
+ 3. Margin
7
+ 4. Padding
8
+ 5. Horizontal Alignment styles
9
+ 6. Vertical Alignment styles
10
+ 7. Height
11
+ 8. Width
12
+ 9. Text-Indent
13
+ 10. List Style
14
+ 11. Layout
15
+ 12. Other QTI 3 presentation utilities
16
+ ============================ */
17
+ /* ==========
18
+ Display css
19
+ =========== */
20
+ .qti-display-inline {
21
+ display: inline;
22
+ }
23
+ .qti-display-inline-block {
24
+ display: inline-block;
25
+ }
26
+ .qti-display-block {
27
+ display: block;
28
+ }
29
+ .qti-display-flex {
30
+ display: flex;
31
+ }
32
+ .qti-display-inline-flex {
33
+ display: inline-flex;
34
+ }
35
+ .qti-display-grid {
36
+ display: grid;
37
+ }
38
+ .qti-display-inline-grid {
39
+ display: inline-grid;
40
+ }
41
+ .qti-display-table {
42
+ display: table;
43
+ }
44
+ .qti-display-table-cell {
45
+ display: table-cell;
46
+ }
47
+ .qti-display-table-row {
48
+ display: table-row;
49
+ }
50
+ .qti-display-list-item {
51
+ display: list-item;
52
+ }
53
+ .qti-display-inherit {
54
+ display: inherit;
55
+ }
56
+ /*
57
+ * hidden to screen readers and sighted
58
+ */
59
+ .qti-hidden {
60
+ display: none;
61
+ }
62
+ /*
63
+ * visible to screen readers, hidden to sighted
64
+ */
65
+ .qti-visually-hidden {
66
+ position: fixed !important;
67
+ overflow: hidden;
68
+ clip: rect(1px 1px 1px 1px);
69
+ height: 1px;
70
+ width: 1px;
71
+ border: 0;
72
+ margin: -1px;
73
+ }
74
+ /* =============================
75
+ Special flex styles
76
+ ============================= */
77
+ .qti-flex-direction-column {
78
+ flex-direction: column;
79
+ }
80
+ .qti-flex-direction-row {
81
+ flex-direction: row;
82
+ }
83
+ .qti-flex-grow-1 {
84
+ flex-grow: 1;
85
+ }
86
+ .qti-flex-grow-0 {
87
+ flex-grow: 0;
88
+ }
89
+ /* =========
90
+ Margin css
91
+ ========== */
92
+ /**
93
+ * For margin Top and Bottom and Left and Right
94
+ */
95
+ .qti-margin-0 {
96
+ margin: 0 !important;
97
+ }
98
+ .qti-margin-1 {
99
+ margin: 0.25rem !important;
100
+ }
101
+ .qti-margin-2 {
102
+ margin: 0.5rem !important;
103
+ }
104
+ .qti-margin-3 {
105
+ margin: 1rem !important;
106
+ }
107
+ .qti-margin-4 {
108
+ margin: 1.5rem !important;
109
+ }
110
+ .qti-margin-5 {
111
+ margin: 3rem !important;
112
+ }
113
+ .qti-margin-auto {
114
+ margin: auto !important;
115
+ }
116
+ /*
117
+ For margin Left and Right
118
+ */
119
+ .qti-margin-x-0 {
120
+ margin-right: 0 !important;
121
+ margin-left: 0 !important;
122
+ }
123
+ .qti-margin-x-1 {
124
+ margin-right: 0.25rem !important;
125
+ margin-left: 0.25rem !important;
126
+ }
127
+ .qti-margin-x-2 {
128
+ margin-right: 0.5rem !important;
129
+ margin-left: 0.5rem !important;
130
+ }
131
+ .qti-margin-x-3 {
132
+ margin-right: 1rem !important;
133
+ margin-left: 1rem !important;
134
+ }
135
+ .qti-margin-x-4 {
136
+ margin-right: 1.5rem !important;
137
+ margin-left: 1.5rem !important;
138
+ }
139
+ .qti-margin-x-5 {
140
+ margin-right: 3rem !important;
141
+ margin-left: 3rem !important;
142
+ }
143
+ .qti-margin-x-auto {
144
+ margin-right: auto !important;
145
+ margin-left: auto !important;
146
+ }
147
+ /*
148
+ For margin Top and Bottom
149
+ */
150
+ .qti-margin-y-0 {
151
+ margin-top: 0 !important;
152
+ margin-bottom: 0 !important;
153
+ }
154
+ .qti-margin-y-1 {
155
+ margin-top: 0.25rem !important;
156
+ margin-bottom: 0.25rem !important;
157
+ }
158
+ .qti-margin-y-2 {
159
+ margin-top: 0.5rem !important;
160
+ margin-bottom: 0.5rem !important;
161
+ }
162
+ .qti-margin-y-3 {
163
+ margin-top: 1rem !important;
164
+ margin-bottom: 1rem !important;
165
+ }
166
+ .qti-margin-y-4 {
167
+ margin-top: 1.5rem !important;
168
+ margin-bottom: 1.5rem !important;
169
+ }
170
+ .qti-margin-y-5 {
171
+ margin-top: 3rem !important;
172
+ margin-bottom: 3rem !important;
173
+ }
174
+ .qti-margin-y-auto {
175
+ margin-top: auto !important;
176
+ margin-bottom: auto !important;
177
+ }
178
+ /*
179
+ For margin Top
180
+ */
181
+ .qti-margin-t-0 {
182
+ margin-top: 0 !important;
183
+ }
184
+ .qti-margin-t-1 {
185
+ margin-top: 0.25rem !important;
186
+ }
187
+ .qti-margin-t-2 {
188
+ margin-top: 0.5rem !important;
189
+ }
190
+ .qti-margin-t-3 {
191
+ margin-top: 1rem !important;
192
+ }
193
+ .qti-margin-t-4 {
194
+ margin-top: 1.5rem !important;
195
+ }
196
+ .qti-margin-t-5 {
197
+ margin-top: 3rem !important;
198
+ }
199
+ .qti-margin-t-auto {
200
+ margin-top: auto !important;
201
+ }
202
+ /*
203
+ For margin Bottom
204
+ */
205
+ .qti-margin-b-0 {
206
+ margin-bottom: 0 !important;
207
+ }
208
+ .qti-margin-b-1 {
209
+ margin-bottom: 0.25rem !important;
210
+ }
211
+ .qti-margin-b-2 {
212
+ margin-bottom: 0.5rem !important;
213
+ }
214
+ .qti-margin-b-3 {
215
+ margin-bottom: 1rem !important;
216
+ }
217
+ .qti-margin-b-4 {
218
+ margin-bottom: 1.5rem !important;
219
+ }
220
+ .qti-margin-b-5 {
221
+ margin-bottom: 3rem !important;
222
+ }
223
+ .qti-margin-b-auto {
224
+ margin-bottom: auto !important;
225
+ }
226
+ /*
227
+ For margin Start LTR
228
+ */
229
+ .qti-margin-s-0 {
230
+ margin-left: 0 !important;
231
+ }
232
+ .qti-margin-s-1 {
233
+ margin-left: 0.25rem !important;
234
+ }
235
+ .qti-margin-s-2 {
236
+ margin-left: 0.5rem !important;
237
+ }
238
+ .qti-margin-s-3 {
239
+ margin-left: 1rem !important;
240
+ }
241
+ .qti-margin-s-4 {
242
+ margin-left: 1.5rem !important;
243
+ }
244
+ .qti-margin-s-5 {
245
+ margin-left: 3rem !important;
246
+ }
247
+ .qti-margin-s-auto {
248
+ margin-left: auto !important;
249
+ }
250
+ /*
251
+ For margin End LTR
252
+ */
253
+ .qti-margin-e-0 {
254
+ margin-right: 0 !important;
255
+ }
256
+ .qti-margin-e-1 {
257
+ margin-right: 0.25rem !important;
258
+ }
259
+ .qti-margin-e-2 {
260
+ margin-right: 0.5rem !important;
261
+ }
262
+ .qti-margin-e-3 {
263
+ margin-right: 1rem !important;
264
+ }
265
+ .qti-margin-e-4 {
266
+ margin-right: 1.5rem !important;
267
+ }
268
+ .qti-margin-e-5 {
269
+ margin-right: 3rem !important;
270
+ }
271
+ .qti-margin-e-auto {
272
+ margin-right: auto !important;
273
+ }
274
+ /* =========
275
+ Padding css
276
+ ========== */
277
+ /*
278
+ For padding Top and Bottom and Left and Right
279
+ */
280
+ .qti-padding-0 {
281
+ padding: 0 !important;
282
+ }
283
+ .qti-padding-1 {
284
+ padding: 0.25rem !important;
285
+ }
286
+ .qti-padding-2 {
287
+ padding: 0.5rem !important;
288
+ }
289
+ .qti-padding-3 {
290
+ padding: 1rem !important;
291
+ }
292
+ .qti-padding-4 {
293
+ padding: 1.5rem !important;
294
+ }
295
+ .qti-padding-5 {
296
+ padding: 3rem !important;
297
+ }
298
+ /*
299
+ For padding Left and Right
300
+ */
301
+ .qti-padding-x-0 {
302
+ padding-right: 0 !important;
303
+ padding-left: 0 !important;
304
+ }
305
+ .qti-padding-x-1 {
306
+ padding-right: 0.25rem !important;
307
+ padding-left: 0.25rem !important;
308
+ }
309
+ .qti-padding-x-2 {
310
+ padding-right: 0.5rem !important;
311
+ padding-left: 0.5rem !important;
312
+ }
313
+ .qti-padding-x-3 {
314
+ padding-right: 1rem !important;
315
+ padding-left: 1rem !important;
316
+ }
317
+ .qti-padding-x-4 {
318
+ padding-right: 1.5rem !important;
319
+ padding-left: 1.5rem !important;
320
+ }
321
+ .qti-padding-x-5 {
322
+ padding-right: 3rem !important;
323
+ padding-left: 3rem !important;
324
+ }
325
+ /*
326
+ For padding Top and Bottom
327
+ */
328
+ .qti-padding-y-0 {
329
+ padding-top: 0 !important;
330
+ padding-bottom: 0 !important;
331
+ }
332
+ .qti-padding-y-1 {
333
+ padding-top: 0.25rem !important;
334
+ padding-bottom: 0.25rem !important;
335
+ }
336
+ .qti-padding-y-2 {
337
+ padding-top: 0.5rem !important;
338
+ padding-bottom: 0.5rem !important;
339
+ }
340
+ .qti-padding-y-3 {
341
+ padding-top: 1rem !important;
342
+ padding-bottom: 1rem !important;
343
+ }
344
+ .qti-padding-y-4 {
345
+ padding-top: 1.5rem !important;
346
+ padding-bottom: 1.5rem !important;
347
+ }
348
+ .qti-padding-y-5 {
349
+ padding-top: 3rem !important;
350
+ padding-bottom: 3rem !important;
351
+ }
352
+ /*
353
+ For padding Top
354
+ */
355
+ .qti-padding-t-0 {
356
+ padding-top: 0 !important;
357
+ }
358
+ .qti-padding-t-1 {
359
+ padding-top: 0.25rem !important;
360
+ }
361
+ .qti-padding-t-2 {
362
+ padding-top: 0.5rem !important;
363
+ }
364
+ .qti-padding-t-3 {
365
+ padding-top: 1rem !important;
366
+ }
367
+ .qti-padding-t-4 {
368
+ padding-top: 1.5rem !important;
369
+ }
370
+ .qti-padding-t-5 {
371
+ padding-top: 3rem !important;
372
+ }
373
+ /*
374
+ For padding Bottom
375
+ */
376
+ .qti-padding-b-0 {
377
+ padding-bottom: 0 !important;
378
+ }
379
+ .qti-padding-b-1 {
380
+ padding-bottom: 0.25rem !important;
381
+ }
382
+ .qti-padding-b-2 {
383
+ padding-bottom: 0.5rem !important;
384
+ }
385
+ .qti-padding-b-3 {
386
+ padding-bottom: 1rem !important;
387
+ }
388
+ .qti-padding-b-4 {
389
+ padding-bottom: 1.5rem !important;
390
+ }
391
+ .qti-padding-b-5 {
392
+ padding-bottom: 3rem !important;
393
+ }
394
+ /*
395
+ For padding Start LTR
396
+ */
397
+ .qti-padding-s-0 {
398
+ padding-left: 0 !important;
399
+ }
400
+ .qti-padding-s-1 {
401
+ padding-left: 0.25rem !important;
402
+ }
403
+ .qti-padding-s-2 {
404
+ padding-left: 0.5rem !important;
405
+ }
406
+ .qti-padding-s-3 {
407
+ padding-left: 1rem !important;
408
+ }
409
+ .qti-padding-s-4 {
410
+ padding-left: 1.5rem !important;
411
+ }
412
+ .qti-padding-s-5 {
413
+ padding-left: 3rem !important;
414
+ }
415
+ /*
416
+ For padding End LTR
417
+ */
418
+ .qti-padding-e-0 {
419
+ padding-right: 0 !important;
420
+ }
421
+ .qti-padding-e-1 {
422
+ padding-right: 0.25rem !important;
423
+ }
424
+ .qti-padding-e-2 {
425
+ padding-right: 0.5rem !important;
426
+ }
427
+ .qti-padding-e-3 {
428
+ padding-right: 1rem !important;
429
+ }
430
+ .qti-padding-e-4 {
431
+ padding-right: 1.5rem !important;
432
+ }
433
+ .qti-padding-e-5 {
434
+ padding-right: 3rem !important;
435
+ }
436
+ /* ====================
437
+ Horizontal alignment
438
+ ==================== */
439
+ .qti-align-left {
440
+ text-align: left;
441
+ }
442
+ .qti-align-center {
443
+ text-align: center;
444
+ }
445
+ .qti-align-right {
446
+ text-align: right;
447
+ }
448
+ /* ==================
449
+ Vertical alignment
450
+ ================== */
451
+ .qti-valign-top {
452
+ vertical-align: top;
453
+ }
454
+ .qti-valign-middle {
455
+ vertical-align: middle;
456
+ }
457
+ .qti-valign-baseline {
458
+ vertical-align: baseline;
459
+ }
460
+ .qti-valign-bottom {
461
+ vertical-align: bottom;
462
+ }
463
+ /* =============
464
+ Height styles
465
+ ============= */
466
+ .qti-height-0 {
467
+ height: 0;
468
+ }
469
+ .qti-height-px {
470
+ height: 1px;
471
+ }
472
+ .qti-height-0p5 {
473
+ height: 0.125rem;
474
+ }
475
+ .qti-height-1 {
476
+ height: 0.25rem;
477
+ }
478
+ .qti-height-1p5 {
479
+ height: 0.375rem;
480
+ }
481
+ .qti-height-2 {
482
+ height: 0.5rem;
483
+ }
484
+ .qti-height-2p5 {
485
+ height: 0.625rem;
486
+ }
487
+ .qti-height-3 {
488
+ height: 0.75rem;
489
+ }
490
+ .qti-height-3p5 {
491
+ height: 0.875rem;
492
+ }
493
+ .qti-height-4 {
494
+ height: 1rem;
495
+ }
496
+ .qti-height-5 {
497
+ height: 1.25rem;
498
+ }
499
+ .qti-height-6 {
500
+ height: 1.5rem;
501
+ }
502
+ .qti-height-7 {
503
+ height: 1.75rem;
504
+ }
505
+ .qti-height-8 {
506
+ height: 2rem;
507
+ }
508
+ .qti-height-9 {
509
+ height: 2.25rem;
510
+ }
511
+ .qti-height-10 {
512
+ height: 2.5rem;
513
+ }
514
+ .qti-height-11 {
515
+ height: 2.75rem;
516
+ }
517
+ .qti-height-12 {
518
+ height: 3rem;
519
+ }
520
+ .qti-height-14 {
521
+ height: 3.5rem;
522
+ }
523
+ .qti-height-16 {
524
+ height: 4rem;
525
+ }
526
+ .qti-height-20 {
527
+ height: 5rem;
528
+ }
529
+ .qti-height-24 {
530
+ height: 6rem;
531
+ }
532
+ .qti-height-28 {
533
+ height: 7rem;
534
+ }
535
+ .qti-height-32 {
536
+ height: 8rem;
537
+ }
538
+ .qti-height-36 {
539
+ height: 9rem;
540
+ }
541
+ .qti-height-40 {
542
+ height: 10rem;
543
+ }
544
+ .qti-height-44 {
545
+ height: 11rem;
546
+ }
547
+ .qti-height-48 {
548
+ height: 12rem;
549
+ }
550
+ .qti-height-52 {
551
+ height: 13rem;
552
+ }
553
+ .qti-height-56 {
554
+ height: 14rem;
555
+ }
556
+ .qti-height-60 {
557
+ height: 15rem;
558
+ }
559
+ .qti-height-64 {
560
+ height: 16rem;
561
+ }
562
+ .qti-height-72 {
563
+ height: 18rem;
564
+ }
565
+ .qti-height-80 {
566
+ height: 20rem;
567
+ }
568
+ .qti-height-96 {
569
+ height: 24rem;
570
+ }
571
+ .qti-height-1-2 {
572
+ height: 50%;
573
+ }
574
+ .qti-height-1-3 {
575
+ height: 33.3333%;
576
+ }
577
+ .qti-height-2-3 {
578
+ height: 66.6667%;
579
+ }
580
+ .qti-height-1-4 {
581
+ height: 25%;
582
+ }
583
+ .qti-height-2-4 {
584
+ height: 50%;
585
+ }
586
+ .qti-height-3-4 {
587
+ height: 75%;
588
+ }
589
+ .qti-height-1-5 {
590
+ height: 20%;
591
+ }
592
+ .qti-height-2-5 {
593
+ height: 40%;
594
+ }
595
+ .qti-height-3-5 {
596
+ height: 60%;
597
+ }
598
+ .qti-height-4-5 {
599
+ height: 80%;
600
+ }
601
+ .qti-height-1-6 {
602
+ height: 16.6667%;
603
+ }
604
+ .qti-height-2-6 {
605
+ height: 33.3333%;
606
+ }
607
+ .qti-height-3-6 {
608
+ height: 50%;
609
+ }
610
+ .qti-height-4-6 {
611
+ height: 66.6667%;
612
+ }
613
+ .qti-height-5-6 {
614
+ height: 83.3333%;
615
+ }
616
+ .qti-height-auto {
617
+ height: auto;
618
+ }
619
+ .qti-height-full {
620
+ height: 100%;
621
+ }
622
+ /* ============
623
+ Width styles
624
+ ============ */
625
+ .qti-width-0 {
626
+ width: 0;
627
+ }
628
+ .qti-width-px {
629
+ width: 1px;
630
+ }
631
+ .qti-width-0p5 {
632
+ width: 0.125rem;
633
+ }
634
+ .qti-width-1 {
635
+ width: 0.25rem;
636
+ }
637
+ .qti-width-1p5 {
638
+ width: 0.375rem;
639
+ }
640
+ .qti-width-2 {
641
+ width: 0.5rem;
642
+ }
643
+ .qti-width-2p5 {
644
+ width: 0.625rem;
645
+ }
646
+ .qti-width-3 {
647
+ width: 0.75rem;
648
+ }
649
+ .qti-width-3p5 {
650
+ width: 0.875rem;
651
+ }
652
+ .qti-width-4 {
653
+ width: 1rem;
654
+ }
655
+ .qti-width-5 {
656
+ width: 1.25rem;
657
+ }
658
+ .qti-width-6 {
659
+ width: 1.5rem;
660
+ }
661
+ .qti-width-7 {
662
+ width: 1.75rem;
663
+ }
664
+ .qti-width-8 {
665
+ width: 2rem;
666
+ }
667
+ .qti-width-9 {
668
+ width: 2.25rem;
669
+ }
670
+ .qti-width-10 {
671
+ width: 2.5rem;
672
+ }
673
+ .qti-width-11 {
674
+ width: 2.75rem;
675
+ }
676
+ .qti-width-12 {
677
+ width: 3rem;
678
+ }
679
+ .qti-width-14 {
680
+ width: 3.5rem;
681
+ }
682
+ .qti-width-16 {
683
+ width: 4rem;
684
+ }
685
+ .qti-width-20 {
686
+ width: 5rem;
687
+ }
688
+ .qti-width-24 {
689
+ width: 6rem;
690
+ }
691
+ .qti-width-28 {
692
+ width: 7rem;
693
+ }
694
+ .qti-width-32 {
695
+ width: 8rem;
696
+ }
697
+ .qti-width-36 {
698
+ width: 9rem;
699
+ }
700
+ .qti-width-40 {
701
+ width: 10rem;
702
+ }
703
+ .qti-width-44 {
704
+ width: 11rem;
705
+ }
706
+ .qti-width-48 {
707
+ width: 12rem;
708
+ }
709
+ .qti-width-52 {
710
+ width: 13rem;
711
+ }
712
+ .qti-width-56 {
713
+ width: 14rem;
714
+ }
715
+ .qti-width-60 {
716
+ width: 15rem;
717
+ }
718
+ .qti-width-64 {
719
+ width: 16rem;
720
+ }
721
+ .qti-width-72 {
722
+ width: 18rem;
723
+ }
724
+ .qti-width-80 {
725
+ width: 20rem;
726
+ }
727
+ .qti-width-96 {
728
+ width: 24rem;
729
+ }
730
+ .qti-width-auto {
731
+ width: auto;
732
+ }
733
+ .qti-width-1-2 {
734
+ width: 50%;
735
+ }
736
+ .qti-width-1-3 {
737
+ width: 33.3333%;
738
+ }
739
+ .qti-width-2-3 {
740
+ width: 66.6667%;
741
+ }
742
+ .qti-width-1-4 {
743
+ width: 25%;
744
+ }
745
+ .qti-width-2-4 {
746
+ width: 50%;
747
+ }
748
+ .qti-width-3-4 {
749
+ width: 75%;
750
+ }
751
+ .qti-width-1-5 {
752
+ width: 20%;
753
+ }
754
+ .qti-width-2-5 {
755
+ width: 40%;
756
+ }
757
+ .qti-width-3-5 {
758
+ width: 60%;
759
+ }
760
+ .qti-width-4-5 {
761
+ width: 80%;
762
+ }
763
+ .qti-width-1-6 {
764
+ width: 16.6667%;
765
+ }
766
+ .qti-width-2-6 {
767
+ width: 33.3333%;
768
+ }
769
+ .qti-width-3-6 {
770
+ width: 50%;
771
+ }
772
+ .qti-width-4-6 {
773
+ width: 66.6667%;
774
+ }
775
+ .qti-width-5-6 {
776
+ width: 83.3333%;
777
+ }
778
+ .qti-width-1-12 {
779
+ width: 8.3333%;
780
+ }
781
+ .qti-width-2-12 {
782
+ width: 16.6667%;
783
+ }
784
+ .qti-width-3-12 {
785
+ width: 25%;
786
+ }
787
+ .qti-width-4-12 {
788
+ width: 33.3333%;
789
+ }
790
+ .qti-width-5-12 {
791
+ width: 41.6667%;
792
+ }
793
+ .qti-width-6-12 {
794
+ width: 50%;
795
+ }
796
+ .qti-width-7-12 {
797
+ width: 58.3333%;
798
+ }
799
+ .qti-width-8-12 {
800
+ width: 66.6667%;
801
+ }
802
+ .qti-width-9-12 {
803
+ width: 75%;
804
+ }
805
+ .qti-width-10-12 {
806
+ width: 83.3333%;
807
+ }
808
+ .qti-width-11-12 {
809
+ width: 91.6667%;
810
+ }
811
+ .qti-width-full,
812
+ .qti-fullwidth {
813
+ width: 100%;
814
+ }
815
+ /* ==================
816
+ Text Indent styles
817
+ ================== */
818
+ .qti-text-indent-0 {
819
+ text-indent: 0;
820
+ }
821
+ .qti-text-indent-px {
822
+ text-indent: 1px;
823
+ }
824
+ .qti-text-indent-0p5 {
825
+ text-indent: 0.125rem;
826
+ }
827
+ .qti-text-indent-1 {
828
+ text-indent: 0.25rem;
829
+ }
830
+ .qti-text-indent-1p5 {
831
+ text-indent: 0.375rem;
832
+ }
833
+ .qti-text-indent-2 {
834
+ text-indent: 0.5rem;
835
+ }
836
+ .qti-text-indent-2p5 {
837
+ text-indent: 0.625rem;
838
+ }
839
+ .qti-text-indent-3 {
840
+ text-indent: 0.75rem;
841
+ }
842
+ .qti-text-indent-3p5 {
843
+ text-indent: 0.875rem;
844
+ }
845
+ .qti-text-indent-4 {
846
+ text-indent: 1rem;
847
+ }
848
+ .qti-text-indent-5 {
849
+ text-indent: 1.25rem;
850
+ }
851
+ .qti-text-indent-6 {
852
+ text-indent: 1.5rem;
853
+ }
854
+ .qti-text-indent-7 {
855
+ text-indent: 1.75rem;
856
+ }
857
+ .qti-text-indent-8 {
858
+ text-indent: 2rem;
859
+ }
860
+ .qti-text-indent-12 {
861
+ text-indent: 3rem;
862
+ }
863
+ .qti-text-indent-16 {
864
+ text-indent: 4rem;
865
+ }
866
+ .qti-text-indent-20 {
867
+ text-indent: 5rem;
868
+ }
869
+ .qti-text-indent-24 {
870
+ text-indent: 6rem;
871
+ }
872
+ .qti-text-indent-28 {
873
+ text-indent: 7rem;
874
+ }
875
+ .qti-text-indent-32 {
876
+ text-indent: 8rem;
877
+ }
878
+ /* =================
879
+ List Style styles
880
+ ================= */
881
+ .qti-list-style-type-none {
882
+ list-style-type: none;
883
+ }
884
+ .qti-list-style-type-disc {
885
+ list-style-type: disc;
886
+ }
887
+ .qti-list-style-type-circle {
888
+ list-style-type: circle;
889
+ }
890
+ .qti-list-style-type-square {
891
+ list-style-type: square;
892
+ }
893
+ .qti-list-style-type-decimal {
894
+ list-style-type: decimal;
895
+ }
896
+ .qti-list-style-type-decimal-leading-zero {
897
+ list-style-type: decimal-leading-zero;
898
+ }
899
+ .qti-list-style-type-lower-alpha {
900
+ list-style-type: lower-alpha;
901
+ }
902
+ .qti-list-style-type-upper-alpha {
903
+ list-style-type: upper-alpha;
904
+ }
905
+ .qti-list-style-type-lower-roman {
906
+ list-style-type: lower-roman;
907
+ }
908
+ .qti-list-style-type-upper-roman {
909
+ list-style-type: upper-roman;
910
+ }
911
+ .qti-list-style-type-lower-latin {
912
+ list-style-type: lower-latin;
913
+ }
914
+ .qti-list-style-type-upper-latin {
915
+ list-style-type: upper-latin;
916
+ }
917
+ .qti-list-style-type-lower-greek {
918
+ list-style-type: lower-greek;
919
+ }
920
+ .qti-list-style-type-arabic-indic {
921
+ list-style-type: arabic-indic;
922
+ }
923
+ .qti-list-style-type-armenian {
924
+ list-style-type: armenian;
925
+ }
926
+ .qti-list-style-type-lower-armenian {
927
+ list-style-type: lower-armenian;
928
+ }
929
+ .qti-list-style-type-upper-armenian {
930
+ list-style-type: upper-armenian;
931
+ }
932
+ .qti-list-style-type-bengali {
933
+ list-style-type: bengali;
934
+ }
935
+ .qti-list-style-type-cambodian {
936
+ list-style-type: cambodian;
937
+ }
938
+ .qti-list-style-type-simp-chinese-formal {
939
+ list-style-type: simp-chinese-formal;
940
+ }
941
+ .qti-list-style-type-simp-chinese-informal {
942
+ list-style-type: simp-chinese-informal;
943
+ }
944
+ .qti-list-style-type-trad-chinese-formal {
945
+ list-style-type: trad-chinese-formal;
946
+ }
947
+ .qti-list-style-type-trad-chinese-informal {
948
+ list-style-type: trad-chinese-informal;
949
+ }
950
+ .qti-list-style-type-cjk-ideographic {
951
+ list-style-type: cjk-ideographic;
952
+ }
953
+ .qti-list-style-type-cjk-heavenly-stem {
954
+ list-style-type: cjk-heavenly-stem;
955
+ }
956
+ .qti-list-style-type-cjk-earthly-branch {
957
+ list-style-type: cjk-earthly-branch;
958
+ }
959
+ .qti-list-style-type-devanagari {
960
+ list-style-type: devanagari;
961
+ }
962
+ .qti-list-style-type-ethiopic-halehame-ti-er {
963
+ list-style-type: ethiopic-halehame-ti-er;
964
+ }
965
+ .qti-list-style-type-ethiopic-halehame-ti-et {
966
+ list-style-type: ethiopic-halehame-ti-et;
967
+ }
968
+ .qti-list-style-type-ethiopic-halehame-am {
969
+ list-style-type: ethiopic-halehame-am;
970
+ }
971
+ .qti-list-style-type-ethiopic-halehame {
972
+ list-style-type: ethiopic-halehame;
973
+ }
974
+ .qti-list-style-type-georgian {
975
+ list-style-type: georgian;
976
+ }
977
+ .qti-list-style-type-gujarati {
978
+ list-style-type: gujarati;
979
+ }
980
+ .qti-list-style-type-gurmukhi {
981
+ list-style-type: gurmukhi;
982
+ }
983
+ .qti-list-style-type-hangul {
984
+ list-style-type: hangul;
985
+ }
986
+ .qti-list-style-type-hangul-consonant {
987
+ list-style-type: hangul-consonant;
988
+ }
989
+ .qti-list-style-type-hebrew {
990
+ list-style-type: hebrew;
991
+ }
992
+ .qti-list-style-type-hiragana {
993
+ list-style-type: hiragana;
994
+ }
995
+ .qti-list-style-type-hiragana-iroha {
996
+ list-style-type: hiragana-iroha;
997
+ }
998
+ .qti-list-style-type-khmer {
999
+ list-style-type: khmer;
1000
+ }
1001
+ .qti-list-style-type-korean-hangul-formal {
1002
+ list-style-type: korean-hangul-formal;
1003
+ }
1004
+ .qti-list-style-type-korean-hanja-formal {
1005
+ list-style-type: korean-hanja-formal;
1006
+ }
1007
+ .qti-list-style-type-korean-hanja-informal {
1008
+ list-style-type: korean-hanja-informal;
1009
+ }
1010
+ .qti-list-style-type-lao {
1011
+ list-style-type: lao;
1012
+ }
1013
+ .qti-list-style-type-malayalam {
1014
+ list-style-type: malayalam;
1015
+ }
1016
+ .qti-list-style-type-mongolian {
1017
+ list-style-type: mongolian;
1018
+ }
1019
+ .qti-list-style-type-myanmar {
1020
+ list-style-type: myanmar;
1021
+ }
1022
+ .qti-list-style-type-oriya {
1023
+ list-style-type: oriya;
1024
+ }
1025
+ .qti-list-style-type-persian {
1026
+ list-style-type: persian;
1027
+ }
1028
+ .qti-list-style-type-thai {
1029
+ list-style-type: thai;
1030
+ }
1031
+ .qti-list-style-type-tibetan {
1032
+ list-style-type: tibetan;
1033
+ }
1034
+ .qti-list-style-type-telugu {
1035
+ list-style-type: telugu;
1036
+ }
1037
+ .qti-list-style-type-urdu {
1038
+ list-style-type: urdu;
1039
+ }
1040
+ /* =========================
1041
+ Other QTI 3 Presentation Utilities
1042
+ ========================= */
1043
+ .qti-bordered {
1044
+ border: 1px solid var(--table-border-color);
1045
+ }
1046
+ .qti-underline {
1047
+ text-decoration: underline;
1048
+ text-decoration-color: var(--foreground);
1049
+ }
1050
+ .qti-italic {
1051
+ font-style: italic;
1052
+ }
1053
+ .qti-well {
1054
+ min-height: 20px;
1055
+ padding: 19px;
1056
+ margin-bottom: 20px;
1057
+ background-color: var(--well-bg);
1058
+ border: var(--well-border);
1059
+ border-radius: 4px;
1060
+ box-shadow: var(--well-box-shadow);
1061
+ }
1062
+ /* Set writing-mode to vertical-rl
1063
+ Typical for CJK vertical text */
1064
+ .qti-writing-mode-vertical-rl {
1065
+ writing-mode: vertical-rl;
1066
+ }
1067
+ /* Set writing-mode to vertical-lr
1068
+ Typical for Mongolian vertical text */
1069
+ .qti-writing-mode-vertical-lr {
1070
+ writing-mode: vertical-lr;
1071
+ }
1072
+ /* Set writing-mode to horizontal-tb
1073
+ Browser default */
1074
+ .qti-writing-mode-horizontal-tb {
1075
+ writing-mode: horizontal-tb;
1076
+ }
1077
+ /* Float an element left */
1078
+ .qti-float-left {
1079
+ float: left;
1080
+ }
1081
+ /* Float an element right */
1082
+ .qti-float-right {
1083
+ float: right;
1084
+ }
1085
+ /* Remove a float */
1086
+ .qti-float-none {
1087
+ float: none;
1088
+ }
1089
+ /* Clearfix Hack to apply to a container of
1090
+ floated content that overflows the container. */
1091
+ .qti-float-clearfix::after {
1092
+ content: '';
1093
+ clear: both;
1094
+ display: table;
1095
+ }
1096
+ .qti-float-clear-left
1097
+ .qti-float-clear-right
1098
+ .qti-float-clear-both
1099
+
1100
+ /* Set text-orientation to upright */
1101
+ .qti-text-orientation-upright {
1102
+ text-orientation: upright;
1103
+ }
1104
+ @layer qti-base {
1105
+ .qti-layout-row {
1106
+ display: flex;
1107
+ flex-wrap: wrap;
1108
+ width: 100%;
1109
+ gap: 2.1276595745%;
1110
+ }
1111
+
1112
+ .qti-layout-row [class*='qti-layout-col']:not(:empty) {
1113
+ box-sizing: border-box;
1114
+ }
1115
+
1116
+ .qti-layout-row [class*='qti-layout-col']:empty {
1117
+ width: 0;
1118
+ overflow: hidden; /* to fully collapse if there’s padding or borders */
1119
+ }
1120
+
1121
+ .qti-layout-col1 {
1122
+ width: 6.3829787234%;
1123
+ }
1124
+
1125
+ .qti-layout-col2 {
1126
+ width: 14.8936170213%;
1127
+ }
1128
+
1129
+ .qti-layout-col3 {
1130
+ width: 23.4042553191%;
1131
+ }
1132
+
1133
+ .qti-layout-col4 {
1134
+ width: 31.914893617%;
1135
+ }
1136
+
1137
+ .qti-layout-col5 {
1138
+ width: 40.4255319149%;
1139
+ }
1140
+
1141
+ .qti-layout-col6 {
1142
+ width: 48.9361702128%;
1143
+ }
1144
+
1145
+ .qti-layout-col7 {
1146
+ width: 57.4468085106%;
1147
+ }
1148
+
1149
+ .qti-layout-col8 {
1150
+ width: 65.9574468085%;
1151
+ }
1152
+
1153
+ .qti-layout-col9 {
1154
+ width: 74.4680851064%;
1155
+ }
1156
+
1157
+ .qti-layout-col10 {
1158
+ width: 82.9787234043%;
1159
+ }
1160
+
1161
+ .qti-layout-col11 {
1162
+ width: 91.4893617021%;
1163
+ }
1164
+
1165
+ .qti-layout-col12 {
1166
+ width: 100%;
1167
+ }
1168
+
1169
+ .qti-layout-offset1 {
1170
+ margin-left: 8.5106382979%;
1171
+ }
1172
+
1173
+ .qti-layout-offset2 {
1174
+ margin-left: 17.0212765957%;
1175
+ }
1176
+
1177
+ .qti-layout-offset3 {
1178
+ margin-left: 25.5319148936%;
1179
+ }
1180
+
1181
+ .qti-layout-offset4 {
1182
+ margin-left: 34.0425531915%;
1183
+ }
1184
+
1185
+ .qti-layout-offset5 {
1186
+ margin-left: 42.5531914894%;
1187
+ }
1188
+
1189
+ .qti-layout-offset6 {
1190
+ margin-left: 51.0638297872%;
1191
+ }
1192
+
1193
+ .qti-layout-offset7 {
1194
+ margin-left: 59.5744680851%;
1195
+ }
1196
+
1197
+ .qti-layout-offset8 {
1198
+ margin-left: 68.085106383%;
1199
+ }
1200
+
1201
+ .qti-layout-offset9 {
1202
+ margin-left: 76.5957446809%;
1203
+ }
1204
+
1205
+ .qti-layout-offset10 {
1206
+ margin-left: 85.1063829787%;
1207
+ }
1208
+
1209
+ .qti-layout-offset11 {
1210
+ margin-left: 93.6170212766%;
1211
+ }
1212
+
1213
+ .qti-layout-offset12 {
1214
+ margin-left: 102.1276595745%;
1215
+ }
1216
+
1217
+ @media (width <= 767px) {
1218
+ [class*='qti-layout-col'] {
1219
+ width: 100%;
1220
+ }
1221
+ }
1222
+ }