@zzish/math-rich-input 0.1.31 → 0.1.32

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.
@@ -1,924 +0,0 @@
1
- *,
2
- :after,
3
- :before {
4
- -webkit-box-sizing: border-box;
5
- -moz-box-sizing: border-box;
6
- box-sizing: border-box;
7
- }
8
-
9
- .MathRichInput-Container {
10
- width: 100%;
11
- border-radius: 5px;
12
- }
13
-
14
- .MathRichInput-Container:focus-within {
15
- background-color: white !important;
16
- outline: 0px;
17
- border: 1px solid #663676;
18
- }
19
-
20
- .MathRichInput-scrollview {
21
- position: relative;
22
- display: flex;
23
- border-radius: 5px;
24
- }
25
-
26
- .MathRichInput p {
27
- padding: 0px;
28
- margin: 0px;
29
- }
30
-
31
- .MathRichInput {
32
- font-size: 18px;
33
- padding: 10px;
34
- width: 100%;
35
- border-radius: 5px;
36
- background-color: #fff;
37
- overflow-x: scroll;
38
- overflow: overlay;
39
- }
40
-
41
- .MathRichInput:empty::before {
42
- content: attr(data-placeholder);
43
- color: #acb6c0;
44
- font-size: 15px;
45
- }
46
- .MathRichInput:empty:focus::before {
47
- content: "";
48
- }
49
-
50
- .MathRichInput:focus {
51
- outline: 0;
52
- }
53
-
54
- .MathRichInput .katex {
55
- border: 0px;
56
- }
57
-
58
- .MathRichInput .base {
59
- /* Combine the katex and base class name to ensure the whole equation is surrounded */
60
- background-color: #f0f0f0;
61
- border: 0px;
62
- border: 1px dotted #d0d0d0;
63
- border-radius: 5px;
64
- padding: 2px;
65
- margin: 0px 2px;
66
- }
67
-
68
- .katex .mathnormal {
69
- font-family: KaTeX_Math;
70
- font-style: italic;
71
- }
72
-
73
- .MathRichInput .katex-error {
74
- background-color: #f0f0f0;
75
- border: 0px;
76
- border: 1px dotted #ff8080;
77
- border-radius: 5px;
78
- padding: 2px;
79
- margin: 0px 2px;
80
- }
81
- .EquationEditorModal-background {
82
- position: fixed;
83
- top: 0;
84
- left: 0;
85
- width: 100%;
86
- height: 100%;
87
- background: black;
88
- z-index: 99;
89
- animation: 0.3s shade;
90
- animation-fill-mode: forwards;
91
- }
92
-
93
- @keyframes shade {
94
- 00% {
95
- opacity: 0;
96
- }
97
- 100% {
98
- opacity: 0.6;
99
- }
100
- }
101
-
102
- .EquationEditorModal {
103
- background: white;
104
- border: 1px solid #808080;
105
- border-radius: 10px;
106
- box-shadow: 0px 2px 5px 1px #a0a0a0;
107
- position: fixed;
108
- max-width: 500px;
109
- width: 98%;
110
- top: 50%;
111
- left: 50%;
112
- /* transform: translate(-50%,-50%); */
113
- z-index: 100;
114
- animation: 0.3s rise;
115
- animation-fill-mode: forwards;
116
- }
117
-
118
- @keyframes rise {
119
- 00% {
120
- transform: translate(-50%, 100%);
121
- opacity: 0;
122
- }
123
- 100% {
124
- transform: translate(-50%, -50%);
125
- opacity: 1;
126
- }
127
- }
128
-
129
- .EquationEditorModal-mobile {
130
- background: white;
131
- border: 1px solid #808080;
132
- border-radius: 10px;
133
- box-shadow: 0px 2px 5px 1px #a0a0a0;
134
- position: fixed;
135
- max-width: 500px;
136
- width: 99%;
137
- top: 0%;
138
- left: 50%;
139
- transform: translate(-50%, 1px);
140
- z-index: 100;
141
- }
142
-
143
- .EquationEditorModal .title {
144
- display: flex;
145
- justify-content: space-between;
146
- font-size: 14px;
147
- color: #404040;
148
- text-align: left;
149
- background: #e0e0e0;
150
- border: 0px;
151
- border-radius: 5px 5px 0px 0px;
152
- padding: 15px;
153
- margin: 0px;
154
- }
155
-
156
- .EquationEditorModal-mobile .title {
157
- display: flex;
158
- justify-content: space-between;
159
- font-size: 14px;
160
- color: #404040;
161
- text-align: left;
162
- background: #e0e0e0;
163
- border: 0px;
164
- border-radius: 5px 5px 0px 0px;
165
- height: 30px;
166
- padding: 15px;
167
- margin: 0px;
168
- }
169
-
170
- .EquationEditorModal .expertModeSwitch .switch {
171
- margin-left: 10px;
172
- }
173
-
174
- /* The switch - the box around the slider */
175
- .EquationEditorModal .switch {
176
- position: relative;
177
- display: inline-block;
178
- width: 35px;
179
- height: 22px;
180
- }
181
-
182
- /* Hide default HTML checkbox */
183
- .EquationEditorModal .switch input {
184
- opacity: 0;
185
- width: 0;
186
- height: 0;
187
- }
188
-
189
- /* The slider */
190
- .EquationEditorModal .slider {
191
- position: absolute;
192
- cursor: pointer;
193
- top: 0;
194
- left: 0;
195
- right: 0;
196
- bottom: 0;
197
- background-color: #ccc;
198
- -webkit-transition: 0.4s;
199
- transition: 0.4s;
200
- }
201
-
202
- .EquationEditorModal .slider:before {
203
- position: absolute;
204
- content: "";
205
- height: 14px;
206
- width: 14px;
207
- left: 4px;
208
- bottom: 4px;
209
- background-color: white;
210
- -webkit-transition: 0.4s;
211
- transition: 0.4s;
212
- }
213
-
214
- .EquationEditorModal input:checked + .slider {
215
- background-color: #663676;
216
- }
217
-
218
- .EquationEditorModal input:focus + .slider {
219
- box-shadow: 0 0 1px #2196f3;
220
- }
221
-
222
- .EquationEditorModal input:checked + .slider:before {
223
- -webkit-transform: translateX(13px);
224
- -ms-transform: translateX(13px);
225
- transform: translateX(13px);
226
- }
227
-
228
- /* Rounded sliders */
229
- .EquationEditorModal .slider.round {
230
- border-radius: 18px;
231
- }
232
-
233
- .EquationEditorModal .slider.round:before {
234
- border-radius: 50%;
235
- }
236
- /* Note that the top left position of the accent bar is set programatically in componentDidMount */
237
-
238
- .AccentBar {
239
- position: absolute;
240
- z-index: 1;
241
- width: 360px;
242
- background-color: #fff;
243
- border: 1px solid #d0d0d0;
244
- border-radius: 5px;
245
- box-shadow: 1px 1px 5px #a0a0a0;
246
- padding: 8px;
247
- animation: 0.4s fadeIn1;
248
- animation-fill-mode: forwards;
249
- }
250
-
251
- .AccentBar-compact {
252
- display: flex;
253
- position: absolute;
254
- z-index: 1;
255
- background-color: white;
256
- border: 1px solid #d0d0d0;
257
- border-radius: 5px;
258
- box-shadow: 1px 1px 5px #a0a0a0;
259
- padding: 5px;
260
- animation: 0.4s fadeIn1;
261
- animation-fill-mode: forwards;
262
- }
263
-
264
- .AccentBar-outerContainer {
265
- overflow-y: scroll;
266
- border-radius: 5px;
267
- }
268
-
269
- .AccentBar-innerContainer {
270
- height: 350px;
271
- }
272
-
273
- @keyframes fadeIn1 {
274
- 0% {
275
- opacity: 0;
276
- }
277
- 100% {
278
- opacity: 1;
279
- }
280
- }
281
-
282
- .AccentBar .symbols-grid {
283
- display: grid;
284
- grid-template-columns: repeat(auto-fill, minmax(36px, 1fr));
285
- grid-auto-rows: minmax(min-content, max-content);
286
- grid-gap: 3px;
287
- }
288
-
289
- .AccentBar .insert-grid {
290
- padding: 5px;
291
- }
292
-
293
- .AccentBar .type-a-letter {
294
- grid-column: 1/-1;
295
- color: #a0a0a0;
296
- font-family: sans-serif;
297
- font-size: 14px;
298
- font-weight: bold;
299
- height: 36px;
300
- padding-top: 12px;
301
- padding-left: 20px;
302
- }
303
-
304
- .AccentBar-button {
305
- font-family: sans-serif;
306
- font-size: 17px;
307
- width: 40px;
308
- height: 36px;
309
- background: #f4f4f4;
310
- border-radius: 5px;
311
- border: 0px;
312
- padding: 1px;
313
- }
314
-
315
- .AB-compact {
316
- margin: 0px;
317
- background: white;
318
- }
319
-
320
- .AB-narrow {
321
- width: 36px;
322
- }
323
-
324
- .AccentBar-button:hover {
325
- color: white;
326
- background: #663676;
327
- cursor: pointer;
328
- box-shadow: 1px 1px 3px #808080;
329
- animation: 2s grow;
330
- animation-fill-mode: forwards;
331
- }
332
-
333
- @keyframes grow {
334
- 00% {
335
- transform: scale(1);
336
- box-shadow: 0px 0px 0px #808080;
337
- }
338
- 10% {
339
- transform: scale(1.3);
340
- box-shadow: 1px 1px 3px #808080;
341
- }
342
- 90% {
343
- transform: scale(1.3);
344
- box-shadow: 1px 1px 3px #808080;
345
- }
346
- 100% {
347
- transform: scale(1.8);
348
- box-shadow: 1px 1px 3px #808080;
349
- }
350
- }
351
-
352
- .AccentBar-button:active {
353
- background: #808080;
354
- color: white;
355
- cursor: pointer;
356
- }
357
-
358
- .AccentBar .tabBar {
359
- background: white;
360
- text-align: left;
361
- border: 0px;
362
- padding: 10px 0;
363
- }
364
-
365
- .AccentBar .tab {
366
- font-size: 14px;
367
- font-weight: bold;
368
- color: #404040;
369
- text-align: left;
370
- border: 0px;
371
- height: 30px;
372
- padding: 2px 5px 2px 5px;
373
- margin: 2px;
374
- border-bottom: 4px solid #d0d0d0;
375
- }
376
-
377
- .AccentBar .tab:hover {
378
- cursor: pointer;
379
- }
380
-
381
- .AccentBar .tab-selected {
382
- font-size: 14px;
383
- font-weight: bold;
384
- color: #404040;
385
- text-align: left;
386
- border: 0px;
387
- height: 30px;
388
- padding: 2px 5px 2px 5px;
389
- margin: 2px;
390
- border-bottom: 4px solid #663676;
391
- }
392
-
393
- .AccentBar .section-label {
394
- grid-column: 1/-1;
395
- font-size: 13px;
396
- font-weight: bold;
397
- color: #663676;
398
- margin-top: 8px;
399
- margin-left: 8px;
400
- margin-bottom: 4px;
401
- }
402
-
403
- .AccentBar .replace-section {
404
- min-height: 70px;
405
- }
406
-
407
- .AccentBar .tabArea {
408
- animation: 0.4s fadeIn1;
409
- animation-fill-mode: forwards;
410
- }
411
- /* Note that the top left position of the toolbar is set programatically in componentDidMount */
412
-
413
- .Toolbar {
414
- position: absolute;
415
- z-index: 1;
416
- display: flex;
417
- height: 42px;
418
- background-color: white;
419
- border: 1px solid #d0d0d0;
420
- border-radius: 5px;
421
- box-shadow: 1px 1px 5px #a0a0a0;
422
- animation: 0.5s fadeIn1;
423
- animation-fill-mode: forwards;
424
- }
425
-
426
- @keyframes fadeIn1 {
427
- 0% {
428
- opacity: 0;
429
- }
430
- 100% {
431
- opacity: 1;
432
- }
433
- }
434
-
435
- .Toolbar-button {
436
- font-family: sans-serif;
437
- font-size: 16px;
438
- width: 40px;
439
- height: 36px;
440
- background-color: white;
441
- border-radius: 5px;
442
- border: 0px;
443
- padding: 1px;
444
- margin: 2px;
445
- }
446
-
447
- .Toolbar-button:hover {
448
- color: white;
449
- background: #663676;
450
- cursor: pointer;
451
- }
452
-
453
- .Toolbar-button:active {
454
- background: #808080;
455
- color: white;
456
- cursor: pointer;
457
- }
458
-
459
- .TB-narrow {
460
- width: 30px;
461
- }
462
-
463
- .TB-wide {
464
- width: 46px;
465
- }
466
-
467
- .TB-selected {
468
- background: #d0d0d0;
469
- color: black;
470
- cursor: pointer;
471
- animation: 0.2s TB-fadeIn;
472
- animation-fill-mode: forwards;
473
- }
474
-
475
- .TB-selected:hover {
476
- color: white;
477
- background: #663676;
478
- cursor: pointer;
479
- }
480
-
481
- @keyframes TB-fadeIn {
482
- 00% {
483
- background: white;
484
- }
485
- 100% {
486
- background: #d0d0d0;
487
- }
488
- }
489
-
490
- /* Tooltip text */
491
- .Toolbar-button .tooltiptext {
492
- font-weight: normal;
493
- visibility: hidden;
494
- width: 100px;
495
- background-color: #222;
496
- color: #fff;
497
- /*font-weight: bold;*/
498
- font-size: 12px;
499
- text-align: center;
500
- padding: 4px 10px;
501
- border-radius: 6px;
502
-
503
- /* Position the tooltip text - see examples below! */
504
- position: absolute;
505
- z-index: 2;
506
- top: -90%; /* Must leave a small gap between tooltip and button */
507
- left: 50px;
508
-
509
- /* transform: translate (50%,0%); */
510
- }
511
-
512
- /* Show the tooltip text when you mouse over the tooltip container */
513
- .Toolbar-button:hover .tooltiptext {
514
- animation: 0.8s fadeIn2;
515
- animation-fill-mode: forwards;
516
- visibility: visible;
517
- /* width: 100px; */
518
- /* top: -90%; */ /* Must leave a small gap between tooltip and button */
519
- /* left: 20%; */
520
- /* margin-left: -50px; */
521
- }
522
-
523
- @keyframes fadeIn2 {
524
- 00% {
525
- opacity: 0;
526
- }
527
- 70% {
528
- opacity: 0;
529
- }
530
- 100% {
531
- visibility: visible;
532
- opacity: 0.9;
533
- }
534
- }
535
-
536
- /* .tooltip {
537
- position: relative;
538
- display: inline-block;
539
- border-bottom: 1px dotted black; /* If you want dots under the hoverable text
540
- } */
541
- .EquationEditor {
542
- height: auto;
543
- text-align: center;
544
- }
545
-
546
- .EquationEditor .editableAndCursorButtonsWrapper {
547
- display: flex;
548
- align-items: center;
549
- justify-content: center;
550
- }
551
-
552
- .EquationEditor .editableWrapper {
553
- overflow: auto;
554
- width: 100%;
555
- }
556
-
557
- .EquationEditor .cursorButton {
558
- font-size: 14px;
559
- font-weight: bold;
560
- color: #663676;
561
- background: white;
562
- text-align: center;
563
- border: 1px solid #663676;
564
- border-radius: 5px;
565
- min-width: 40px;
566
- width: auto;
567
- height: 40px;
568
- padding: 0px;
569
- margin-top: 10px;
570
- margin-left: 15px;
571
- margin-right: 15px;
572
- /* transition: all .2s ease-in-out; */
573
- }
574
-
575
- .EquationEditor .centerBox {
576
- display: inline-block;
577
- text-align: center;
578
- }
579
-
580
- .EquationEditor .editable {
581
- /* width:auto; */
582
- text-align: left;
583
- min-height: 26px;
584
- min-width: 150px;
585
- font-size: 20px;
586
- color: #404040;
587
- border: 1px solid #b0b0b0;
588
- border-radius: 5px;
589
- /* height:36px; */
590
- padding: 7px 10px 7px 10px;
591
- margin-top: 6px;
592
- margin-bottom: 5px;
593
- }
594
-
595
- .EquationEditor .editable-placeholder {
596
- position: absolute;
597
- z-index: -1;
598
- min-height: 26px;
599
- min-width: 150px;
600
- font-size: 15px;
601
- color: grey;
602
- /* Note the x translation needs to be updatad programatically if the modal width changes */
603
- transform: translate(-12px, -36px);
604
- }
605
-
606
- .EquationEditor .editable:focus-within {
607
- border-radius: 5px;
608
- border: 1px solid #663676 !important;
609
- box-shadow: 0px 0px 0px white;
610
- /* box-shadow: inset 1px 1px 5px #a0a0a0; */
611
- }
612
-
613
- .latexInputAreaWrapper {
614
- width: auto;
615
- }
616
-
617
- .EquationEditor .katexRenderedInput {
618
- text-align: left;
619
- min-height: 30px;
620
- width: 90%;
621
- font-size: 16px;
622
- color: #404040;
623
- border: 0px solid #b0b0b0;
624
- border-radius: 5px;
625
- /* height:36px; */
626
- padding: 7px 10px 4px 10px;
627
- margin: 5px 15px;
628
- }
629
-
630
- .EquationEditor .latexInput {
631
- text-align: left;
632
- height: 88px;
633
- width: 90%;
634
- font-size: 16px;
635
- /* color: #202020; */
636
- /* background-color: #e0e0e0; */
637
- /* color: #00ff00;
638
- background-color: #202020; */
639
- color: #007000;
640
- background-color: #e0e0e0;
641
- border: 1px solid #b0b0b0;
642
- border-radius: 5px;
643
- padding: 7px 10px 5px 10px;
644
- margin-top: 10px;
645
- }
646
-
647
- .EquationEditor .latexInput:focus {
648
- border: 1px solid #663676 !important;
649
- outline: 0;
650
- /* outline: 2px solid #663676!important; */ /* Has square corners */
651
- /* box-shadow: inset 1px 1px 5px #a0a0a0, 0px 0px 3px #663676; */
652
- }
653
-
654
- .EquationEditor .insertButton {
655
- font-size: 14px;
656
- color: white;
657
- background: #663676;
658
- text-align: left;
659
- border: 0px;
660
- border-radius: 5px;
661
- height: 36px;
662
- padding: 0px 30px;
663
- margin-top: 5px;
664
- margin-bottom: 5px;
665
- margin-left: 5px;
666
- margin-right: 5px;
667
- }
668
-
669
- .EquationEditor .cancelButton {
670
- font-size: 14px;
671
- background: white;
672
- color: #663676;
673
- text-align: left;
674
- border: 1px solid #663676;
675
- border-radius: 5px;
676
- height: 36px;
677
- padding: 0px 30px;
678
- margin-bottom: 10px;
679
- margin-left: 5px;
680
- margin-right: 5px;
681
- }
682
-
683
- .EquationEditor .insertButton:hover {
684
- color: white;
685
- background: #461656;
686
- cursor: pointer;
687
- }
688
-
689
- .EquationEditor .recentSymbols-recentText-active {
690
- font-size: 14px;
691
- font-weight: bold;
692
- color: #404040;
693
- margin-right: 10px;
694
- }
695
-
696
- .EquationEditor .recentSymbols-recentText-not-active {
697
- font-size: 14px;
698
- font-weight: bold;
699
- color: #808080;
700
- margin-top: 10px;
701
- margin-bottom: 10px;
702
- }
703
-
704
- .EquationEditor .tabBar {
705
- background: white;
706
- text-align: left;
707
- border: 0px;
708
- padding: 10px 10px 5px 20px;
709
- margin: 5px;
710
- }
711
-
712
- @media (max-width: 500px) {
713
- .EquationEditor .tabBar {
714
- padding: 5px 0;
715
- }
716
- }
717
-
718
- .EquationEditor .tab {
719
- font-size: 14px;
720
- font-weight: bold;
721
- color: #404040;
722
- text-align: left;
723
- border: 0px;
724
- height: 30px;
725
- padding: 5px 10px;
726
- margin: 5px;
727
- border-bottom: 6px solid #d0d0d0;
728
- }
729
-
730
- .EquationEditor .tab:hover {
731
- cursor: pointer;
732
- }
733
- .EquationEditor .tab-selected {
734
- font-size: 14px;
735
- font-weight: bold;
736
- color: #404040;
737
- text-align: left;
738
- border: 0px;
739
- height: 30px;
740
- padding: 5px 10px;
741
- margin: 5px;
742
- border-bottom: 6px solid #663676;
743
- }
744
-
745
- .EquationEditor .recentSymbolsButtonArea {
746
- display: flex;
747
- justify-content: flex-start;
748
- width: 486px;
749
- padding: 2px;
750
- margin: 5px;
751
- margin-left: 15px;
752
- }
753
-
754
- .EquationEditor .symbolButtonAreasOuterContainer {
755
- overflow-x: auto;
756
- }
757
-
758
- .EquationEditor .symbolButtonAreasInnerContainer {
759
- display: flex;
760
- width: 2330px;
761
- }
762
-
763
- .EquationEditor .symbolButtonArea {
764
- display: grid;
765
- grid-template-columns: repeat(auto-fill, minmax(36px, 1fr));
766
- grid-auto-rows: minmax(min-content, max-content);
767
- grid-gap: 1.5px;
768
- padding: 12px;
769
- margin: 0px;
770
- }
771
-
772
- .EquationEditor .symbolButtonArea-1 {
773
- width: 66px;
774
- }
775
-
776
- .EquationEditor .symbolButtonArea-2 {
777
- width: 108px;
778
- }
779
-
780
- .EquationEditor .symbolButtonArea-3 {
781
- width: 150px;
782
- }
783
-
784
- .EquationEditor .symbolButtonArea-4 {
785
- width: 192px;
786
- }
787
-
788
- .EquationEditor .symbolButtonArea-5 {
789
- width: 234px;
790
- }
791
-
792
- .EquationEditor .symbolButtonArea-6 {
793
- width: 276px;
794
- }
795
- /* Fixes is a katex bug where horizontal lines are not rendering */
796
- /* .frac-line {
797
- background-color: #404040;
798
- height:0.03em;
799
- }
800
- .overline-line {
801
- background-color: #404040;
802
- height:0.03em;
803
- } */
804
-
805
- .SymbolButton {
806
- display: inline-block;
807
- overflow: hidden; /* Important to fix a bug where katex renders parts of the equation outside the box */
808
- font-size: 14px;
809
- font-weight: bold;
810
- color: #202020;
811
- background: #e0e0e0;
812
- text-align: center;
813
- border: 0px;
814
- border-radius: 5px;
815
- width: 36px;
816
- height: 36px;
817
- padding: 1px;
818
- margin: 3px;
819
- margin-bottom: auto;
820
- /* transition: all .2s ease-in-out; */
821
- }
822
-
823
- .SymbolButton:hover {
824
- filter: saturate(2);
825
- color: black;
826
- /* transform: scale(1.3); */
827
- cursor: pointer;
828
- box-shadow: 1px 1px 3px #808080;
829
- animation: 2s grow;
830
- animation-fill-mode: forwards;
831
- }
832
-
833
- @keyframes grow {
834
- 00% {
835
- transform: scale(1);
836
- box-shadow: 0px 0px 0px #808080;
837
- }
838
- 10% {
839
- transform: scale(1.3);
840
- box-shadow: 1px 1px 3px #808080;
841
- }
842
- 90% {
843
- transform: scale(1.3);
844
- box-shadow: 1px 1px 3px #808080;
845
- }
846
- 100% {
847
- transform: scale(1.8);
848
- box-shadow: 1px 1px 3px #808080;
849
- }
850
- }
851
-
852
- .SymbolButton:active {
853
- background: #808080;
854
- color: white;
855
- transform: scale(1.3);
856
- cursor: pointer;
857
- }
858
-
859
- .SymbolButton-fadeIn {
860
- opacity: 1;
861
- width: 100px;
862
- height: 100px;
863
- transition: width 0.5s, height 0.5s, opacity 0.5s 0.5s;
864
- }
865
-
866
- .highlight-0 {
867
- background: #ebc9eb;
868
- /* background: #80e0e0; */
869
- }
870
- /*
871
- .highlight-1{
872
- background: #c0e0e0;
873
- }
874
- /* .highlight-2{
875
- background: #c0e0e0;
876
- } */
877
-
878
- .highlight-operators {
879
- background: #f8e8d8;
880
- }
881
-
882
- .highlight-angles {
883
- background: #cceded;
884
- }
885
-
886
- .highlight-greeklower {
887
- background: #f8e8d8;
888
- }
889
-
890
- .highlight-greekupper {
891
- background: #cceded;
892
- }
893
-
894
- .highlight-misc {
895
- background: #f8e8d8;
896
- }
897
-
898
- .highlight-sets {
899
- background: #cceded;
900
- }
901
-
902
- .highlight-chemistry {
903
- background: #f8e8d8;
904
- }
905
-
906
- .highlight-elements {
907
- background: #cceded;
908
- }
909
-
910
- .highlight-physics2 {
911
- background: #f8e8d8;
912
- }
913
-
914
- .highlight-physics3 {
915
- background: #cceded;
916
- }
917
-
918
- .highlight-expert {
919
- background: #f4d6f5;
920
- }
921
-
922
- .highlight-matrices {
923
- background: #f4d6f5;
924
- }