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