-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSSTestMichiganOnline.css
More file actions
1130 lines (1130 loc) · 22.8 KB
/
Copy pathCSSTestMichiganOnline.css
File metadata and controls
1130 lines (1130 loc) · 22.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* Generated by less 3.11.1 */
@import url('https://raw.githubusercontent.com/i-taylor/michigan-online/refs/heads/main/sandbox.css?token=GHSAT0AAAAAADFHCZPI732OV5VCTVAFJFU22CUDOKA');
.fullImage {
width: 100%;
}
.header {
display: flex;
align-items: flex-start;
justify-content: left;
font-family: "Atkinson Hyperlegible", Arial;
}
.header h2 {
text-align: left;
margin: 0;
padding-left: 0;
width: 100%;
line-height: 1;
margin-top: 5px;
color: hotpink;
}
.header img {
width: 40px;
margin-right: 10px;
float: left;
}
.canvasPageCon {
max-width: 1240px;
font-family: "Atkinson Hyperlegible", Arial;
}
.canvasPageCon h2 {
color: #00274C;
font-weight: bold;
font-size: 1.76rem;
text-align: left;
font-family: "Atkinson Hyperlegible", Arial;
}
.canvasPageCon h3 {
color: #00274C;
font-weight: bold;
font-size: 1.4rem;
text-align: left;
}
.pageBody {
padding: 0 35px;
font-family: "Atkinson Hyperlegible", Arial;
}
.pageBody p {
padding-bottom: 0;
}
.pageBody ol {
margin-top: 12px;
margin-bottom: 12px;
}
.pageBody ul {
margin-top: 12px;
margin-bottom: 12px;
}
.pageBody h2 {
color: #00274C;
font-weight: bold;
font-size: 1.76rem;
text-align: left;
font-family: "Atkinson Hyperlegible", Arial;
}
.pageBody h3 {
color: #707070;
font-weight: bold;
font-size: 1.4rem;
text-align: left;
font-family: "Atkinson Hyperlegible", Arial;
}
.pageBody h4 {
color: #414042;
font-weight: bold;
font-size: 1.1rem;
text-align: left;
font-family: "Atkinson Hyperlegible", Arial;
}
.pageBody h5 {
color: #100591;
font-size: 1rem;
text-align: left;
font-family: "Atkinson Hyperlegible", Arial;
}
.pageBody h5 span {
color: black;
font-size: 1rem;
font-weight: 400;
text-align: left;
font-family: "Atkinson Hyperlegible", Arial;
}
.pageBody hr {
border-bottom: 2px solid #FFCB05;
margin-bottom: 20px;
margin-top: 20px;
}
/* Landing Page Styles */
.landingPageHeader {
background-color: #00274C;
padding: 20px;
display: flex;
justify-content: space-between;
align-items: flex-start;
border-top: 6px solid #FFCB03;
font-family: "Atkinson Hyperlegible", Arial;
}
.landingPageHeaderTitle {
width: 80%;
}
.landingPageHeaderTitle h2 {
font-size: 2em;
font-weight: bold;
color: white;
margin: 5px;
font-family: "Atkinson Hyperlegible", Arial;
}
.landingPageHeaderTitle p {
font-size: medium;
color: white;
margin: 5px;
font-family: "Atkinson Hyperlegible", Arial;
}
.landingPageHeader img {
display: flex;
max-width: 15%;
height: auto;
float: right;
align-self: flex-start;
border: 1px solid white;
justify-content: space-around;
}
@media (max-width: 800px) {
.landingPageHeader h2 {
font-size: 1em;
}
.landingPageHeader img {
max-width: 20%;
}
.landingPageHeader p {
font-size: 0.8em;
}
}
.landingPageNavCon {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
justify-content: center;
flex-wrap: wrap;
gap: 10px;
margin-top: 10px;
}
.landingPageNavButtons {
display: flex;
justify-content: space-around;
text-align: center;
align-items: center;
height: 50px;
font-weight: bold;
font-size: 18px;
text-decoration: none !important;
background-color: #0B57D0;
border-top: 3px solid #58B5F7;
color: white;
flex: 1 1 20%;
white-space: normal;
transition-duration: 0.4s;
cursor: pointer;
border-radius: 3px;
}
.landingPageNavButtons:hover {
font-size: 20px;
color: white;
text-decoration-color: white;
}
.landingPageNavButtons a {
justify-content: center;
text-align: center;
}
@media (max-width: 500px) {
.landingPageNavButtons {
flex: 1 1 80%;
font-size: 18px;
}
}
/* Landing Page Nav Buttons 4 */
.landingPageNavButtons4 {
display: flex;
justify-content: space-around;
text-align: center;
align-items: center;
height: 50px;
font-weight: bold;
font-size: 18px;
text-decoration: none !important;
background-color: #f542bf;
border-top: 3px solid #87f542;
color: blue;
flex: 1 1 20%;
white-space: normal;
transition-duration: 0.4s;
cursor: pointer;
border-radius: 3px;
}
.landingPageNavButtons4 a {
justify-content: center;
text-align: center;
}
@media (max-width: 1240px) {
.landingPageNavCon {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
gap: 10px;
}
.landingPageNavButtons4 {
flex: 1 1 45%;
white-space: normal;
height: 50px;
font-size: 18px;
}
}
@media (max-width: 500px) {
.landingPageNavButtons4 {
flex: 1 1 80%;
font-size: 18px;
padding: 8px 15px;
}
}
.landingPageNavButtons4:hover {
font-size: 20px;
color: white;
}
/* Landing Page 5 buttons */
.landingPageNavCon5 {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
max-width: 1240px;
margin: 0 auto;
align-items: center;
margin-top: 10px;
}
.landingPageNavButtons5 {
display: flex;
justify-content: space-around;
text-align: center;
align-items: center;
height: 50px;
font-weight: bold;
font-size: 18px;
text-decoration: none !important;
background-color: #0B57D0;
border-top: 3px solid #58B5F7;
color: white;
flex: 1 1 10%;
white-space: normal;
transition-duration: 0.4s;
cursor: pointer;
border-radius: 3px;
}
.landingPageNavButtons5 a {
justify-content: center;
text-align: center;
}
@media (max-width: 1240px) {
.landingPageNavCon {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
gap: 10px;
}
.landingPageNavButtons5 {
flex: 1 1 45%;
white-space: normal;
height: 50px;
font-size: 18px;
flex: 1 1 calc(33.33% - 15px);
}
}
@media (max-width: 500px) {
.landingPageNavButtons5 {
flex: 1 1 80%;
font-size: 18px;
padding: 8px 15px;
}
}
.landingPageNavButtons5:hover {
font-size: 20px;
color: white;
}
.moduleNavCon {
display: flex;
flex-wrap: wrap;
width: 100%;
margin: 0 auto;
height: auto;
justify-content: center;
}
.moduleNavButtons {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 10px;
width: 100%;
cursor: pointer;
text-decoration: none !important;
margin-bottom: 20px;
}
.moduleNavButtons a:hover {
font-size: 19px;
color: white;
}
.moduleNavButtons a {
background-color: #0B57D0;
padding: 15px;
height: 20px;
font-size: 18px;
cursor: pointer;
text-align: center;
color: white;
text-decoration: none !important;
border-top: 3px solid #58B5F7;
transition-duration: 0.4s;
border-radius: 3px;
display: flex;
flex-direction: column;
justify-content: center;
}
@media (max-width: 800px) {
.moduleNavButtons a {
font-size: 14px;
}
.moduleNavButtons a:hover {
font-size: 15px;
}
}
@media (max-width: 667px) {
.moduleNavButtons a {
font-size: 14px;
align-items: center;
display: flex;
}
.moduleNavButtons a:hover {
font-size: 15px;
}
}
/* Landing Page People Intro */
.courseFacilitatorCon {
padding: 20px;
}
.courseFacilitatorCon h2 {
color: #0B57D0;
font-weight: 700;
text-align: left;
}
.courseFacilitatorIntro {
display: flex;
gap: 40px;
align-items: flex-start;
flex-wrap: wrap;
}
.courseFacilitatorPerson {
display: flex;
gap: 15px;
align-items: flex-start;
width: 45%;
}
@media (max-width: 768px) {
.courseFacilitatorPerson {
width: 100%;
flex-direction: column;
align-items: center;
text-align: center;
}
.courseFacilitatorPerson img {
width: 120px;
float: none;
}
.courseFacilitatorPerson h2 {
padding-bottom: 10px;
text-align: center;
}
.courseFacilitatorPerson h1,
.courseFacilitatorPerson p {
text-align: center;
}
.courseFacilitatorPerson div hr {
width: 150px;
align-content: center;
margin: 0 auto;
}
}
.courseFacilitatorPerson img {
width: 150px;
float: left;
}
.courseFacilitatorPerson h2 {
color: #6c757d;
font-weight: bold;
font-size: 16px;
text-align: left;
margin: 0px;
}
.courseFacilitatorPerson h3 {
margin: 0;
font-size: 14px;
font-weight: 400;
font-style: italic;
color: #6c757d;
}
.courseFacilitatorPerson p {
color: #0B57D0;
font-size: 14px;
font-weight: 400;
}
.courseFacilitatorPerson p a {
color: #0B57D0;
font-size: 14px;
font-weight: 400;
}
.courseFacilitatorPerson hr {
width: 50px;
border: 1px solid #FFCB05;
margin: 10px 0;
}
.divisionLineYellow {
border-bottom: 2px solid #FFCB05;
margin-bottom: 20px;
margin-top: 20px;
}
/* added 2025-05-15 need padding below yellow line */
p.divisionLineYellow {
padding-bottom: 20px;
}
.divisionLineYellowTop {
border-top: 2px solid #FFCB05;
margin-bottom: 20px;
margin-top: 20px;
}
.landingPageFooter {
display: flex;
justify-content: space-between;
align-items: flex-start;
position: relative;
border-top: 2px solid #FFCB05;
}
.landingPageFooter img {
display: flex;
width: 40%;
}
.landingPageFooter p {
display: flex;
align-self: flex-end;
}
@media (max-width: 840px) {
.landingPageFooter {
display: flex;
flex-wrap: wrap;
align-items: flex-start;
position: relative;
border-top: 2px solid #FFCB05;
}
.landingPageFooter img {
display: flex;
width: 50%;
justify-content: left;
align-content: flex-start;
justify-content: flex-start;
}
.landingPageFooter p {
font-size: 14px;
text-align: center;
display: flex;
align-self: center;
}
}
/* banners of different colors */
.darkBluePageHeader {
width: 100%;
background-color: #100591;
height: 30px;
border-top: 5px solid #4184F5;
padding: 0px;
margin-bottom: 5px;
}
.darkBluePageHeader h2 {
color: white;
font-weight: bold;
font-size: 2.25rem;
padding: 0 15px 15px 20px;
}
.darkBluePageHeader p {
color: white;
font-weight: bold;
font-size: 1rem;
padding: 5px 0 0 20px;
}
.darkBluePageHeader img {
width: 100%;
height: 300px;
object-fit: cover;
object-position: center;
overflow: hidden;
}
.bluePageHeader {
width: 100%;
background-color: #00274C;
height: 30px;
border-top: 5px solid #FFCB05;
padding: 0px;
margin-bottom: 10px;
}
.bluePageHeader h2 {
color: white;
font-weight: bold;
font-size: 2.25rem;
padding: 0 15px 15px 20px;
}
.bluePageHeader p {
color: white;
font-weight: bold;
font-size: 1rem;
padding: 5px 0 0 20px;
}
.bluePageHeader img {
width: 100%;
height: 300px;
object-fit: cover;
object-position: center;
overflow: hidden;
}
.lightBluePageHeader {
width: 100%;
background-color: #305CDE;
height: 30px;
border-top: 5px solid #59B5F7;
padding: 0px;
margin-bottom: 5px;
}
.lightBluePageHeader h2 {
color: white;
font-weight: bold;
font-size: 2.25rem;
padding: 0 15px 15px 20px;
}
.lightBluePageHeader p {
color: white;
font-weight: bold;
font-size: 1rem;
padding: 5px 0 0 20px;
}
.lightBluePageHeader img {
width: 100%;
height: 300px;
object-fit: cover;
object-position: center;
overflow: hidden;
}
/* Media Page Styles */
.photoGallery {
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
align-self: center;
justify-content: center;
gap: 1%;
margin-bottom: 20px;
}
.photoGallery img {
width: 49%;
height: 300px;
display: flex;
overflow: hidden;
object-fit: cover;
object-position: center;
}
.videoCon {
border: 2px solid #FFCB05;
padding: 15px;
margin-top: 20px;
margin-bottom: 20px;
}
.videoCon img {
width: 40px;
margin-right: 10px;
float: left;
}
.videoCon iframe {
display: flex;
align-self: center;
align-items: center;
margin: 0 auto;
}
.videoCon li {
line-height: 1.5rem;
}
.videoCon hr {
border-bottom: 2px solid #FFCB05;
margin-bottom: 20px;
margin-top: 20px;
}
/* Point to Note Float Right */
.pointToNoteCon {
margin-bottom: 20px;
overflow: hidden;
}
.pointToNoteCon p {
margin: 0 0 10px 0;
line-height: 1.5;
clear: left;
font-size: 16px;
}
.pointToNote {
display: flex;
flex-direction: column;
align-self: flex-end;
background-color: #0B57D0;
color: white;
padding: 20px;
float: right;
clear: right;
width: 30%;
border-top: #40ABD7 5px solid;
margin: 0 0 0 20px;
}
.pointToNote h2 {
color: white;
margin-top: 0;
font-size: 18px;
}
.pointToNote ul {
padding-left: 20px;
margin: 0;
}
@media (max-width: 768px) {
.pointToNote {
float: none;
width: auto;
margin: 20px 0 0 0;
order: 2;
}
.pointToNoteCon {
display: flex;
flex-direction: column;
}
.pointToNoteText {
order: 1;
}
}
/* Point to Note Float Left */
.pointToNoteLeftCon {
margin-bottom: 20px;
overflow: hidden;
}
.pointToNoteLeftCon p {
margin: 0 0 10px 0;
line-height: 1.5;
clear: right;
font-size: 16px;
}
.pointToNoteLeft {
display: flex;
flex-direction: column;
background-color: #0B57D0;
color: white;
padding: 20px;
float: left;
width: 30%;
border-top: #40ABD7 5px solid;
margin: 0 20px 0 0;
}
.pointToNoteLeft h2 {
color: white;
margin-top: 0;
font-size: 18px;
}
.pointToNoteLeft ul {
padding-left: 20px;
margin: 0;
}
@media (max-width: 768px) {
.pointToNoteLeft {
float: none;
width: auto;
margin: 20px 0 0 0;
order: 2;
}
.pointToNoteLeftCon {
display: flex;
flex-direction: column;
}
.pointToNoteLeftText {
order: 1;
}
}
/* Call out Box Full Width */
.fullCallOutBoxCon {
margin-bottom: 20px;
}
.fullCallOutBoxCon p {
line-height: 1.5;
clear: left;
font-size: 16px;
}
.fullCallOutBox {
display: flex;
flex-direction: column;
background-color: #0B57D0;
color: white;
padding: 20px;
border-top: #40ABD7 5px solid;
}
.fullCallOutBox h2 {
color: white;
margin-top: 0;
font-size: 18px;
}
.fullCallOutBox ul {
padding-left: 20px;
margin: 0;
}
/* Side by Side Call Out Box */
.sideBySideCallOutCon {
display: flex;
flex-wrap: wrap;
gap: 20px;
}
.sideBySideCallOut {
flex: 1;
min-width: 250px;
background-color: #fffae6;
border-top: 5px solid #2F65A7;
padding: 20px;
}
.sideBySideCallOut h2 {
margin-top: 0;
}
.clearfix::after {
content: "";
display: table;
}
.healthBehaviorsDiagram {
width: 100%;
border: 1px solid black;
}
/* Overview and Objectives */
.quote-container {
margin-bottom: 40px;
background-color: white;
border-radius: 10px;
padding: 30px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
font-family: "noto serif", Arial;
}
.quote {
display: flex;
flex-direction: column;
position: relative;
font-family: "noto serif", Arial;
}
.quote p {
color: #707070;
font-size: 16px;
font-style: italic;
margin-bottom: 1rem;
margin-left: 120px;
font-weight: 300;
}
.quoteAuthor {
color: #5f5f5f;
font-weight: bold;
font-size: 16px;
margin-top: auto;
align-self: flex-end;
margin-bottom: 5px;
}
.quote img {
float: left;
width: 100px;
height: auto;
position: absolute;
top: 50%;
transform: translateY(-50%);
margin-right: 20px;
}
/* Classic Blockquote Style DELETED - 2025-05-19*/
/* Modern Minimalist Style DELETED - 2025-05-19*/
/* Artistic Quote Style DELETED - 2025-05-19*/
/* Vintage Quote Style DELETED - 2025-05-19*/
/* Buddy Quote - Light Blue - Image on Left DELETED - 2025-05-19*/
/* Buddy Quote - Light Blue - Image on right DELETED - 2025-05-19*/
/* Buddy Quote - Light Yellow - Image on Left DELETED - 2025-05-19*/
/* NEW GRADIENT BREAKS - 2025-05-12 */
.gradientBreak {
padding: 30px 0;
}
.breakBlue {
width: 66%;
height: 4px;
background: linear-gradient(to right, rgba(0, 39, 76, 0), #00274C, rgba(0, 39, 76, 0));
margin: 0 auto;
}
.breakYellow {
width: 66%;
height: 4px;
background: linear-gradient(to right, rgba(255, 203, 5, 0), #FFCB05, rgba(255, 203, 5, 0));
margin: 0 auto;
}
/* NEW CALL OUT BOXES TEST - 2025-05-13*/
.sideBySideCallOutCon {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: flex-start;
/* default */
align-items: flex-start;
/* Prevents height equalization */
margin-top: 10px;
color: #000000;
/* added color black because of dark mode 2025-05-23*/
}
/* Center the callout if there’s only one */
.sideBySideCallOutCon:has(.sideBySideCallOut:only-child) {
justify-content: center;
}
.sideBySideCallOut {
flex: 1 1 300px;
background-color: #D7DEF7;
border-top: 5px solid #305CDE;
padding: 20px;
box-sizing: border-box;
}
.sideBySideCallOut p,
.sideBySideCallOut h2 {
color: #000000;
/* added color black because of dark mode 2025-05-23*/
}
/* Responsive stacking for narrower viewports */
@media (max-width: 600px) {
.sideBySideCallOutCon {
flex-direction: column;
align-items: center;
}
.sideBySideCallOut {
width: 100%;
max-width: 500px;
}
}
/* ADDED 2025-06-24 - SIDE BY SIDE CALLOUTS STRETCH WHILE OTHERS ARE NORMAL OR STRETCH */
/* ✅ NEW: Neutral styling class */
.sideBySideCallOut.neutralCallout {
background: none;
border-top: none;
}
/* ✅ NEW: Stretch align-items only if exactly 2 styled callouts */
.sideBySideCallOutCon:has( .sideBySideCallOut:not(.neutralCallout)):has( .sideBySideCallOut:not(.neutralCallout):nth-of-type(2):last-child) {
align-items: stretch;
}
/* NEW BUDDY QUOTES - DELETED XINTIAN ORIGINAL - REFER TO MICHIGANONLINE22.CSS */
.quoteBox {
display: flex;
align-items: stretch;
width: 100%;
margin: 2em 0;
font-family: "noto serif", Arial;
color: #000000;
/* added color black because of dark mode 2025-05-23*/
}
.imgWrapper {
width: 150px;
flex-shrink: 0;
display: flex;
}
.imgWrapper::before {
content: "";
display: block;
width: 100%;
aspect-ratio: 1;
/* Enforces square shape */
}
.imgWrapper img {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}
.imgWrapper {
position: relative;
}
/* The quote text */
.quoteContent {
flex: 1 1 0;
padding: 20px;
box-sizing: border-box;
}
.quoteContent blockquote {
font-weight: normal;
font-size: 1.2em;
margin: 0 0 10px 0;
padding-left: 0;
border-left: none;
/* color: #000000; */
/* added color black because of dark mode 2025-05-23*/
}
.quoteContent cite {
font-style: italic;
font-size: 0.9em;
display: block;
/* color: #000000; */
/* added color black because of dark mode 2025-05-23*/
}
/* Background colors */
.quoteStyle1 {
background-color: #D7DEF7;
}
.quoteStyle2 {
background-color: #FDEDAF;
}
/* Responsive fallback */
@media (max-width: 600px) {
.quoteBox {
flex-direction: column;
}
.imgWrapper {
width: 100%;
}
.imgWrapper::before {
aspect-ratio: auto;
padding-top: 56.25%;
/* 16:9 as fallback */
}
}
/* TABLES SIMPLIFIED DELETED OLD ALTERNATING VERSIONS FROM 22 - 2025-05-19 */
/* table 1 row nth.child() */
.umich-table-row-stripe {
width: 100%;
border-collapse: collapse;
/* font-family: inherit; */
text-align: left;
font-family: "Atkinson Hyperlegible", Arial;
}
.umich-table-row-stripe th {
background-color: #00274C;
/* UM Blue */
color: #FFFFFF;
padding: 0.5em;
}
.umich-table-row-stripe td {
padding: 0.5em;
border: 2px solid #FFFFFF;
color: #000000;
}
.umich-table-row-stripe tbody tr:nth-child(odd) {
background-color: #D7DEF7;
/* light blue */
}
.umich-table-row-stripe tbody tr:nth-child(even) {
background-color: #FCF5CE;
/* light yellow */
}
/* table 2 col nth.child() */
.umich-table-col-stripe {
width: 100%;
border-collapse: collapse;
/* font-family: inherit; */
/* border: 2px solid #FFFFFF; */
font-family: "Atkinson Hyperlegible", Arial;
text-align: left;
}
.umich-table-col-stripe th {
background-color: #00274C;
/* UM Blue */
color: #FFFFFF;
padding: 0.5em;
}
.umich-table-col-stripe td {
padding: 0.5em;
border: 2px solid #FFFFFF;
color: #000000;
}
/* Column striping only in tbody */
.umich-table-col-stripe tbody td:nth-child(odd) {
background-color: #D7DEF7;
/* light blue */
}
.umich-table-col-stripe tbody td:nth-child(even) {
background-color: #FCF5CE;
/* light yellow */
}
/* NEW TABLE REQUEST FROM 2026-01-24 THURSDAY - CREATED 2026-01-23 FRIDAY - ONLY HEADER BLUE */
.umich-table-plain {
width: 100%;
border-collapse: collapse;
/* font-family: inherit; */
text-align: left;
font-family: "Atkinson Hyperlegible", Arial;