-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbmd_style.css
More file actions
2066 lines (1646 loc) · 52.8 KB
/
bmd_style.css
File metadata and controls
2066 lines (1646 loc) · 52.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
/*-----
COLOR STYLES #1676c4
-----*/
:root {
--rocc_primary: #102535;
--rocc_secondary:#3B52DB;
--rocc_secondary_light:#497ad7;
--rocc_call_out_info:#3B52DB;
--rocc_call_out_info_light:#ECF1F4;
--rocc_call_out_key:#EA3434;
--rocc_call_out_key_light:#F0CDCD;
--rocc_call_out_highlight:#F89244;
--rocc_call_out_highlight_light:#FDEEE3;
--rocc_tertiary: #009DC3;
--rocc_tertiary_light: #EFF8FB;
--rocc_tertiary_dark: #327585;
--domain_cp_color: #2C76BB;
--domain_hs_color: #F06669;
--domain_ss_color: #90BD6D;
--domain_pl_color: #8D6DAF;
--fbyHH-fontFamily: 'MADE Evolve Sans', "Lato Extended", Lato, "Helvetica Neue", Helvetica, Arial, sans-serif!important;
--fbyHH-color: var(--rocc_secondary)!important;
--fbyHH-fontWeight: inherit!important;
}
/*----
TEXT STYLES
----*/
@font-face {
font-family: 'MADE Evolve Sans';
src: url(https://mediaproduction.adelaide.edu.au/bmd/fonts/made_evolve_sans_regular.woff);
}
@font-face {
font-family: 'MADE Evolve Sans';
src: url(https://mediaproduction.adelaide.edu.au/bmd/fonts/made_evolve_sans_medium.woff);
font-weight: 500;
}
@font-face {
font-family: 'MADE Evolve Sans';
src: url(https://mediaproduction.adelaide.edu.au/bmd/fonts/made_evolve_sans_bold.woff);
font-weight: bold;
}
/* Fundamental font formatting */
.kl_wrapper {
color: var(--rocc_primary);
font-size: 1rem;
font-weight: normal;
font-family: Arial, Helvetica, sans-serif;
line-height: 1.4rem;
}
.kl_wrapper p {
margin: 0px 0px 14px;
}
.kl_wrapper a {
color:var(--rocc_secondary);
text-decoration: underline;
}
.kl_wrapper a:hover {
color:var(--rocc_primary)!important;
}
/* Reset font style for left menu tray */
.navigation-tray-container a.fbyHH_bGBk {font-family:LatoWeb, "Lato Extended", Lato, "Helvetica Neue", Helvetica, Arial, sans-serif!important;color:#005a9c;}
/* Removes the errant underline after Cidilabs Pill links */
.user_content a:not(.btn):not(.Button):not(.ui-button):not(.ui-button.ui-state-hover):not(.ui-button.ui-state-focus):not(.ui-button.ui-state-disabled):not([role=button]), .mceContentBody a:not(.btn):not(.Button):not(.ui-button):not(.ui-button.ui-state-hover):not(.ui-button.ui-state-focus):not(.ui-button.ui-state-disabled):not([role=button]), a.external:hover span, a.external:focus span, a.external:active span {
text-decoration: none!important;
}
/* Removes the auto-added external link span to stop it from messing up our layouts */
/* Commenting this out temporarily to see if it fixes our external-links-disappearing-on-click issue
.kl_wrapper a.external:active span, .kl_wrapper a.external:focus span {
display:none;!important;
} */
/* Body text heading styles */
.kl_wrapper h2, .dp-wrapper h2 {
color: var(--rocc_primary);
font-size: 2rem;
line-height: 2.4rem;
font-weight: bold;
margin: 0px 0px 15px;
padding: 0 !important;
font-family: 'MADE Evolve Sans', Arial, Helvetica, sans-serif;
border-bottom: none !important;
}
.kl_wrapper h3, .dp-wrapper h3 {
color: var(--rocc_primary);
font-size: 1.59375rem;
line-height: 2rem;
margin-bottom: 5px;
font-weight: bold;
font-family: 'MADE Evolve Sans', Arial, Helvetica, sans-serif;
padding: 0 !important;
border: none !important;
}
#kl_wrapper_3.kl_box_left_1 h3:not(.ui-state-default), #kl_wrapper_3.kl_box_left_2 h3:not(.ui-state-default), #kl_wrapper_3.kl_box_left_3 h3:not(.ui-state-default), #kl_wrapper_3.kl_box_left h3:not(.ui-state-default) {
margin: 0px 0px 6px;}
.kl_wrapper h4, .dp-wrapper h4 {
color: var(--rocc_primary);
font-weight: 500;
font-size: 1.3125rem;
font-family: 'MADE Evolve Sans', Arial, Helvetica, sans-serif;
margin: 0px;
padding: 0 !important;
border: none !important;
background-color: transparent!important;
}
.kl_wrapper h5, .dp-wrapper h5 {
color: #000000;
font-weight: bold;
font-size: 1.1rem;
font-family: 'MADE Evolve Sans', Arial, Helvetica, sans-serif;
margin: 0px;
}
/* Breadcrumb styling */
#breadcrumbs li, #breadcrumbs li a {color:grey;}
/* Override the icons that Canvas starting including as of mid-2022. */
.external_link_icon, .file_download_btn {display:none!important;}
/* Removes default white background from h3s */
#kl_wrapper_3.kl_box_left_1 h3:not(.ui-state-default), #kl_wrapper_3.kl_box_left_2 h3:not(.ui-state-default), #kl_wrapper_3.kl_box_left_3 h3:not(.ui-state-default), #kl_wrapper_3.kl_box_left h3:not(.ui-state-default) {
background-color:transparent;
}
/* Hides default Canvas page titles */
.pages.show .page-title {display:none;}
/* Feature headings eg course welcome page header */
.kl_wrapper .rocc_feature_header {
padding: 40px 20px;
background-color: var(--rocc_primary);
margin: 0px;
text-align: center;
}
.kl_wrapper .rocc_feature_header h1 {
color: white;
font-size: 2.5rem;
font-weight: bold;
line-height: 3.166rem;
font-family: 'MADE Evolve Sans', Arial, Helvetica, sans-serif;
padding-left: 1.875rem;
text-transform: uppercase;
margin-bottom: 30px;
}
.kl_wrapper .rocc_feature_header h2 {
color: white;
font-size: 1.166rem;
font-weight: normal;
display:block;
border-bottom: none !important;
font-family: 'MADE Evolve Sans', Arial, Helvetica, sans-serif;
padding-left:1.875rem!important;
text-transform: uppercase;
}
.kl_wrapper .rocc_feature_header p {
color: white;
padding: 0; }
/* Major headings eg module intro header */
.kl_wrapper .rocc_major_header {
background: var(--rocc_primary);
}
@media only screen and (min-width:761px) {
.kl_wrapper .rocc_major_header img {max-width:2.375rem!important;float:right;margin: 0 0 0 10px;}
.kl_wrapper .rocc_major_header_icon {
padding: 1.75rem;
display: flex;
align-items: flex-end;
justify-content: flex-end;}
.kl_wrapper .rocc_major_header h1 {
color: white;
font-size: 3rem;
font-weight: bold;
line-height: 3.5rem;
font-family: 'MADE Evolve Sans', Arial, Helvetica, sans-serif;
padding-left:1.875rem!important;
padding-bottom: 1.25rem;
padding-right: 1.875rem;
}
.kl_wrapper .rocc_major_header h2 {
color: white;
font-size: 1.8125rem;
font-weight: normal;
font-family: 'MADE Evolve Sans', Arial, Helvetica, sans-serif;
display:block;
border-bottom: none !important;
padding-left:1.875rem!important;
padding-top: 1.25rem!important;
margin-bottom: .5rem;
}
}
@media only screen and (max-width:760px) {
.kl_wrapper .rocc_major_header img {max-width:2rem!important;margin: 0 10px 0 0;}
.kl_wrapper .rocc_major_header_icon {padding:1.25rem 1.25rem 0 1.25rem;}
.kl_wrapper .rocc_major_header h1 {
color: white;
font-size: 1.8125rem;
font-weight: bold;
line-height: 2.3rem;
font-family: 'MADE Evolve Sans', Arial, Helvetica, sans-serif;
padding-left:1.25rem!important;
padding-bottom: 1.25rem;
padding-right: 1.875rem;
margin: 0;
}
.kl_wrapper .rocc_major_header h2 {
color: white;
font-size: 1.2rem;
line-height:1.5rem;
font-weight: normal;
font-family: 'MADE Evolve Sans', Arial, Helvetica, sans-serif;
display:block;
border-bottom: none !important;
padding-left:1.25rem!important;
padding-top: 1.25rem!important;
margin: 0;
}
}
.kl_wrapper .rocc_major_header {
background: var(--rocc_primary);
}
.kl_wrapper .rocc_major_header .bs-col-sm-9, .kl_wrapper .rocc_major_header .bs-col-sm-10 {
padding:0!important;
}
/* Headings for headers on standard content pages */
.kl_wrapper .rocc_page_title {
border-bottom: solid 3px var(--rocc_secondary)!important;
}
.kl_wrapper .rocc_page_title .bs-col-sm-9, .kl_wrapper .rocc_page_title .bs-col-sm-10, .kl_wrapper .rocc_page_title .bs-col-sm-11 {
padding:0!important;
}
@media only screen and (min-width:761px) {
.kl_wrapper .rocc_page_title img {max-width:2.375rem!important;float:right;margin: 0 0 0 10px;}
.kl_wrapper .rocc_page_title_icon {
padding:0 0.25rem 0.625rem 1.25rem;
display: flex;
align-items: flex-end;
justify-content: flex-end;}
.kl_wrapper .rocc_page_title h1 {
font-size: 2.5rem;
line-height: 2.916rem;
font-family: 'MADE Evolve Sans', Arial, Helvetica, sans-serif;
color: var(--rocc_secondary);
font-weight: bold;
border-bottom: none!important;
margin-top: 0;
}
.kl_wrapper .rocc_page_title h2 {
color: var(--rocc_primary);
font-family: 'MADE Evolve Sans', Arial, Helvetica, sans-serif;
border-bottom: none !important;
margin-bottom:0;
}
}
@media only screen and (max-width:760px) {
.kl_wrapper .rocc_page_title img {max-width:2rem!important;margin: 0 10px 0 0;}
.kl_wrapper .rocc_page_title_icon {padding:1.25rem 0;}
.kl_wrapper .rocc_page_title h1 {
font-size: 2.5rem;
line-height: 2.916rem;
font-family: 'MADE Evolve Sans', Arial, Helvetica, sans-serif;
color: var(--rocc_secondary);
font-weight: bold;
border-bottom: none!important;
margin-bottom:5px;
margin: 0;
}
.kl_wrapper .rocc_page_title h1 {
font-size: 1.8125rem;
font-weight: bold;
line-height: 2.3rem;
}
.kl_wrapper .rocc_page_title h2 {
color: var(--rocc_primary);
font-family: 'MADE Evolve Sans', Arial, Helvetica, sans-serif;
border-bottom: none !important;
margin: 0;
font-size:1.2rem;
line-height:1.5rem;
}
}
/* Tutor "about" heading styles */
.kl_wrapper .tutor_card .bs-col-md-2, .kl_wrapper .tutor_card .bs-col-md-3, .kl_wrapper .tutor_card .bs-col {
padding-left:0;
}
.kl_wrapper .tutor_card .rocc_vertical_align img {max-width:120px!important;margin-bottom:11px!important;} /* this helps with mobile devices */
.kl_wrapper .tutor_info {
border-bottom: solid 3px var(--rocc_secondary);
margin-top: auto;
margin-bottom: auto;
}
.kl_wrapper .tutor_info .bs-col-sm-4 {
margin-bottom:50px;
}
.kl_wrapper .tutor_info h2, .tutor_info h4{
padding: 0;
margin-bottom: 5px;
line-height: 1.5rem;
}
.kl_wrapper .tutor_info h3 {
font-weight:400;
font-size:1.3125rem;
margin:15px 0 0 0;
}
.kl_wrapper .tutor_info h4 {
font-size:1.4rem;
line-height:1.5rem;
font-weight:700;
color:var(--rocc_secondary);
}
/* Canvas Assignment and Quiz Lists */
.accessible-toggler, .accessible-toggler:hover, .accessible-toggler:focus, .item-group-condensed .ig-header h2 {
color:white!important;
}
/* Canvas Module List */
/* Colour the module Publish dropdown menu */
.module-publish-icon span {background-color:var(--rocc_primary)!important;}
[name="IconMiniArrowDown"] {color:white!important;}
/* Give the points some room */
.points_possible_display, .js-score {margin-left:10px;}
/* Put course titles at top of module list */
.context_module:before {text-transform:uppercase;font-size:18px;font-weight:bold;margin-bottom:14px;display:inline-block;color:var(--rocc_primary)}
#context_module_536170:before {content:'Foundations of Medicine (2022)'}
#context_module_561018:before {content:'Medical Studies 1 (2022)'}
#context_module_567636:before {content:'Medical Studies 2A (SHELL)'}
#context_module_589982:before {content:'Medical Studies 2A (2023)'}
#context_module_503321:before {content:'BMS Program Course'}
#context_module_572167:before {content:'Medical Studies 2B (SHELL)'}
#context_module_578837:before {content:'Foundations of Medicine (2023)'}
#context_module_581257:before {content:'Medical Studies 3 (SHELL)'}
#context_module_581259:before {content:'Transition to Clinical Studies (SHELL)'}
#context_module_581258:before {content:'Research Skills Development (SHELL)'}
#context_module_608324:before {content:'Medical Studies 2B (2023)'}
#context_module_600847:before {content:'Medical Studies 1 (2023)'}
.context_module {
font-family: 'MADE Evolve Sans', sans-serif;
letter-spacing: 0.009rem;
}
.ig-header {
background:var(--rocc_primary)!important;
padding:12px 14px 8px 8px !important;
}
.ig-header .name {
font-size:1.5rem!important;
color:white!important;
text-shadow: none!important;
}
.ig-header i {
color:white!important;
}
.ig-header .ig-header-title {
line-height: 24px;
padding-left:30px;
}
.ig-header i {margin-left:-20px;}
.ig-header i.icon-plus {margin:0 10px 0 0;}
.ig-list .indent_0 .ig-row a.ig-title, .ig-list .indent_0 .ig-row .locked_title {
font-size: 1.25rem;
color: var(--rocc_primary);}
.ig-list .indent_1 .ig-row a.ig-title, .ig-list .indent_1 .ig-row .locked_title {
font-size: 1.15rem;
font-weight: normal!important;
color: var(--rocc_primary);
padding-left:12px;
}
.ig-list .indent_2 .ig-row a.ig-title, .ig-list .indent_2 .ig-row .locked_title {
font-weight: normal!important;
font-size: 1.15rem;
color: var(--rocc_secondary);
}
.ig-list .indent_3 .ig-row a.ig-title, .ig-list .indent_3 .ig-row .locked_title {
font-weight:normal!important;
font-size: 1rem;
color: var(--rocc_secondary);
}
/* Mobile optimisations */
.ig-header-title, .ig-header-title .ellipsis {white-space:normal;} /* Fixes titles not wrapping on small screens */
@media only screen and (max-width:600px) {
.context_module_item.indent_2 .type_icon {padding-left:2px;}
.context_module_item.indent_1 .type_icon {padding-left:0;}
.ig-list .indent_1 .ig-row a.ig-title, .ig-list .indent_1 .ig-row .locked_title {padding-left:0;}
.ic-Layout-contentMain {padding-left: 3px;padding-right:3px;}
}
/* Remove the annoying square brackets on load */
.ig-details__item:after {display:none;}
div.module-item-title span[title="Science and Scholarship"], div.module-item-title span[title="Science and Scholarship (Nervous System)"], div.module-item-title span[title="Science and Scholarship (Musculoskeletal)"], div.module-item-title span[title="Science and Scholarship (Musculoskeletal System)"], div.module-item-title span[title="Practical"] {
padding: 10px 32px;
color: var(--domain_ss_color)!important;
}
div.module-item-title span[title="Science and Scholarship"]:before, div.module-item-title span[title="Science and Scholarship (Nervous System)"]:before, div.module-item-title span[title="Science and Scholarship (Musculoskeletal)"]:before, div.module-item-title span[title="Science and Scholarship (Musculoskeletal System)"]:before, div.module-item-title span[title="Practical"]:before {
content:'';
background-image: url('https://uamediaprod.github.io/bmd/assets/icons/ss-colour.svg');
background-size: 20px 29px;
height: 20px;
width: 20px;
padding-top: 5px;
margin-left: -28px;
position: absolute;
background-repeat: no-repeat;
}
div.module-item-title span[title="Health and Society"] {
padding: 10px 32px;
color: var(--domain_hs_color)!important;
}
div.module-item-title span[title="Health and Society"]:before {
content:'';
background-image: url('https://uamediaprod.github.io/bmd/assets/icons/hs-colour.svg');
background-size: 20px 29px;
height: 20px;
width: 20px;
padding-top: 5px;
margin-left: -28px;
position: absolute;
background-repeat: no-repeat;
}
div.module-item-title span[title="Professionalism and Leadership"] {
padding: 10px 32px;
color: var(--domain_pl_color)!important;
}
div.module-item-title span[title="Professionalism and Leadership"]:before {
content:'';
background-image: url('https://uamediaprod.github.io/bmd/assets/icons/pl-colour.svg');
background-size: 20px 29px;
height: 20px;
width: 20px;
padding-top: 5px;
margin-left: -28px;
position: absolute;
background-repeat: no-repeat;
}
div.module-item-title span[title="Clinical Practice"] {
padding: 10px 32px;
color: var(--domain_cp_color)!important;
}
div.module-item-title span[title="Clinical Practice"]:before {
content:'';
background-image: url('https://uamediaprod.github.io/bmd/assets/icons/cp-colour.svg');
background-size: 20px 29px;
height: 20px;
width: 20px;
padding-top: 5px;
margin-left: -28px;
position: absolute;
background-repeat: no-repeat;
}
.requirements_message .pill {
background: var(--rocc_secondary);
color: white;
border: 0!important;
box-shadow: none;
}
/* Module List Hashtag-driven Icons - order priority is #SS #CP #HS #PL */
div.module-item-title a:after {
content:'';
position: absolute;
margin-top: -3px;
margin-left: -36px;
height:30px;
background-repeat: no-repeat;
background-color: white!important;
background-origin: content-box;
}
div.module-item-title a[title*="#SS"]:after {
background-image: url('https://uamediaprod.github.io/bmd/assets/icons/ss-colour.svg');
background-size: 27px 29px;
width: 36px;
margin-left:-36px;
}
div.module-item-title a[title*="#HS"]:after {
background-image: url('https://uamediaprod.github.io/bmd/assets/icons/hs-colour.svg');
background-size: 30px 29px;
width: 37px;
margin-left:-37px;
}
div.module-item-title a[title*="#PL"]:after {
background-image: url('https://uamediaprod.github.io/bmd/assets/icons/pl-colour.svg');
background-size: 27px 29px;
width: 37px;
margin-left:-35px;
}
div.module-item-title a[title*="#CP"]:after {
background-image: url('https://uamediaprod.github.io/bmd/assets/icons/cp-colour.svg');
background-size: 27px 29px;
width: 39px;
margin-left:-38px;
}
div.module-item-title a[title*="#SS"][title*="#CP"]:after {
background-image: url('https://uamediaprod.github.io/bmd/assets/icons/ss-cp-colour.svg');
background-size: 57px 29px;
width: 80px;
margin-left: -75px;
}
div.module-item-title a[title*="#SS"][title*="#HS"]:after {
background-image: url('https://uamediaprod.github.io/bmd/assets/icons/ss-hs-colour.svg');
background-size: 58px 29px;
width: 80px;
margin-left: -75px;
}
div.module-item-title a[title*="#SS"][title*="#PL"]:after {
background-image: url('https://uamediaprod.github.io/bmd/assets/icons/ss-pl-colour.svg');
background-size: 57px 29px;
width: 80px;
margin-left: -71px;
}
div.module-item-title a[title*="#CP"][title*="#HS"]:after {
background-image: url('https://uamediaprod.github.io/bmd/assets/icons/cp-hs-colour.svg');
background-size: 57px 29px;
width: 80px;
margin-left: -75px;
}
div.module-item-title a[title*="#CP"][title*="#PL"]:after {
background-image: url('https://uamediaprod.github.io/bmd/assets/icons/cp-pl-colour.svg');
background-size: 54px 29px;
width: 80px;
margin-left:-75px;
}
div.module-item-title a[title*="#HS"][title*="#PL"]:after {
background-image: url('https://uamediaprod.github.io/bmd/assets/icons/hs-pl-colour.svg');
background-size: 57px 29px;
width: 80px;
margin-left:-75px;
}
div.module-item-title a[title*="#SS"][title*="#CP"][title*="#HS"]:after {
background-image: url('https://uamediaprod.github.io/bmd/assets/icons/ss-cp-hs-colour.svg');
background-size: 97px 29px;
width: 114px;
margin-left: -114px;
}
div.module-item-title a[title*="#SS"][title*="#HS"][title*="#PL"]:after {
background-image: url('https://uamediaprod.github.io/bmd/assets/icons/ss-hs-pl-colour.svg');
background-size: 97px 29px;
width: 114px;
margin-left: -108px;
}
div.module-item-title a[title*="#SS"][title*="#CP"][title*="#PL"]:after {
background-image: url('https://uamediaprod.github.io/bmd/assets/icons/ss-cp-pl-colour.svg');
background-size: 97px 29px;
width: 114px;
margin-left: -108px;
}
div.module-item-title a[title*="#CP"][title*="#HS"][title*="#PL"]:after {
background-image: url('https://uamediaprod.github.io/bmd/assets/icons/cp-hs-pl-colour.svg');
background-size: 97px 29px;
width: 114px;
margin-left: -109px;
}
div.module-item-title a[title*="#SS"][title*="#CP"][title*="#HS"][title*="#PL"]:after {
background-image: url('https://uamediaprod.github.io/bmd/assets/icons/all-colour.svg');
background-size: 123px 29px;
width: 146px;
margin-left: -145px;
}
/* Put the margin back on module titles */
.ig-list .icon-drag-handle {margin:0!important;}
/* Remove module list hover highlight to stop the icons looking weird with their white backgrounds */
.ig-list .ig-row:hover {background-color:white!important;}
/* Remove module title padding so the icons wrap in exactly the same way as the characters */
.ig-title {padding-right:0;}
/* Custom lists */
.kl_wrapper ul {
padding-bottom: 1.2rem;
}
.kl_wrapper dd {
padding-bottom:.5rem;
padding-left: 1rem;
}
/* Learning outcomes */
.kl_wrapper .rocc_learning_outcomes_title {
background-color: var(--rocc_secondary);
padding: 0.4375rem 1.25rem;
}
.kl_wrapper .rocc_learning_outcomes_title h2 {
color: white;
font-size: 25px;
margin: 0!important;
}
.kl_wrapper .rocc_learning_outcomes {
background-color: var(--rocc_tertiary_light);
padding: 1rem 1.25rem;
}
.kl_wrapper .rocc_learning_outcomes h2{
padding: 1rem 1.5rem .5rem 1.5rem;
}
.kl_wrapper .rocc_learning_outcomes p {
margin: 0;
}
.kl_wrapper .rocc_learning_outcomes ul {
padding: 0.625rem 0.625rem 0.625rem 0;
}
.kl_wrapper .rocc_learning_outcomes ul li{
line-height: 1.5rem;
}
.kl_wrapper .rocc_learning_outcomes ul li::marker {
color: var(--rocc_secondary);
font-size: 1.5rem;
}
.kl_wrapper .rocc_learning_outcomes ol {
padding: 0.625rem 0.625rem 0.625rem 2.5rem;
}
.kl_wrapper .rocc_learning_outcomes ol li{
line-height: 1.5rem;
}
.kl_wrapper .rocc_learning_outcomes ol li::marker {
color: var(--rocc_secondary);
font-size: 1.1rem;
font-weight: bold;
}
/* Custom counter */
.kl_wrapper .rocc_custom_counter {
counter-reset: my-awesome-counter;
list-style: none;
}
.kl_wrapper div[id*="kl_custom_block"] > ol.rocc_custom_counter > li {
margin-bottom: 10px;
padding-top: 10px;
counter-increment: my-awesome-counter;
position: relative;
}
.kl_wrapper div[id*="kl_custom_block"] > ol.rocc_custom_counter > li::before {
content: counter(my-awesome-counter);
color: white;
font-size: 90%;
font-weight: bold;
position: absolute;
left: calc(-1 * var(--size) - 10px);
line-height: 25px;
width: var(--size);
--size: 24px;
height: var(--size);
top: 0;
background-color: var(--rocc_tertiary);
border-radius: 50%;
text-align: center;
margin-top: 10px;
}
.kl_wrapper .rocc_custom_counter ul li:before {
content: none;
}
.kl_wrapper .rocc_custom_counter ul {
list-style-type: disc!important;
}
.kl_wrapper .rocc_custom_counter ul li {
margin: 0;
padding: 0;
}
.kl_wrapper .rocc_custom_counter p {
margin: 3px 0px 3px 0px;
}
.kl_wrapper .rocc_custom_counter h4 {
font-size: 1.2rem;
font-weight: bold;
}
/*----Content Positions----*/
/* Set page width (two selectors to cater for Cidilabs variations) */
.kl_wrapper_parent, #wiki_page_show .show-content {
max-width: 850px;
margin: auto;
}
.kl_wrapper .rocc_column-flow-3 {columns: 250px 3;padding: 0 11px;}
.kl_wrapper .rocc_column-flow-2 {columns: 300px 2;padding: 0 11px;}
div[id*="kl_custom_block"], div[id*="kl_content_block_sub"], div[id*="kl_panel_block"] {
margin: 0 0 3.5rem 0!important;
}
.kl_wrapper .rocc_no_padding_left {padding-left:0!important;}
.kl_wrapper .rocc_no_padding_right {padding-right:0!important;}
/* Figure styling */
figure {margin:0;}
/* Narrower-width centred box eg for divs */
.kl_wrapper .rocc_center_align {
margin-left: auto!important;
margin-right: auto!important;
max-width: 500px;
text-align: center;
}
/* Vertical align */
.kl_wrapper .rocc_vertical_align {
margin: auto;
}
/*----Element Styling----*/
.kl_wrapper .rocc_image_caption{
background-color: #EFEFEF;
font-size: 0.833rem;
padding: 10px 4%;
}
.kl_wrapper .rocc_image_with_caption{
margin-bottom: 0px;
}
.kl_wrapper .rocc_blue_brick {
background-color: var(--rocc_primary);
padding: 10px 15px 10px 15px!important;
color: white;
}
.kl_wrapper .rocc_blue_brick h1, .kl_wrapper .rocc_blue_brick h2, .kl_wrapper.rocc_blue_brick h3, .kl_wrapper .rocc_blue_brick h4, .kl_wrapper .rocc_blue_brick h5, .rocc_blue_brick p {
color: white;
}
.kl_wrapper .rocc_link_out_box_button_tutor a:hover {
background-color: var(--rocc_secondary_light);
color: white!important;
text-decoration: none!important;
text-align:center;
}
/* Table formatting */
.kl_wrapper .rocc_table {
border:0;
margin:15px 0;
}
.kl_wrapper .rocc_table tr:nth-child(odd) {
background: #ecf1f4;
}
.kl_wrapper .rocc_table th {
background:#C5DCE3;
text-align:left;
padding:10px!important;
}
.kl_wrapper .rocc_table td {
padding:10px!important;
}
/* More condensed table styling */
.kl_wrapper .dense_table p {
margin:0;
}
.kl_wrapper .dense_table td {
padding:3px 10px!important;
}
@media only screen and (max-width:480px) {
.kl_wrapper .rocc_table {
font-size:0.825rem;
}
}
/* Second table style */
.kl_wrapper .rocc_table_fancy {
border:0;
margin:15px 0;
}
.kl_wrapper .rocc_table_fancy th {
background:#C5DCE3;
text-align:left;
padding:10px!important;
background: white!important;
border-left:none;
border-top:none;
border-right:none;
border-bottom: solid 3px var(--rocc_secondary);
}
.kl_wrapper .rocc_table_fancy td {
padding:7px!important;
border:1px solid grey;
text-align:center;
}
.kl_wrapper .rocc_table_fancy td p {
margin:0!important;
}
@media only screen and (max-width:480px) {
.kl_wrapper .rocc_table_fancy {
font-size:0.825rem;
}
}
#kl_wrapper_3>div {overflow:auto!important;}
/* Popovers */
.tippy-popper, .tippy-tooltip {will-change:initial!important;} /* removing will-change stops the text looking blurry */
.tippy-tooltip.light-theme {box-shadow:none;background:#dadada;padding:18px;}
.tippy-tooltip.light-theme .tippy-arrow {border-top:7px solid #dadada!important;}
.tippy-content ul {font-size:1rem!important;}
.tippy-tooltip {max-width:550px;}
.kl_popover_trigger, .kl_tooltip_trigger, a.kl_popover_trigger, a.kl_tooltip_trigger {
color: var(--rocc_secondary);
border-bottom: 1px dashed;
border-top:none;
border-left:none;
border-right:none;
padding: 1px 0;
border-radius: 0;
}
/* "Quick Check" styles */
#kl_wrapper_3 .kl_quick_check p {font-size:inherit;}
#kl_wrapper_3 .kl_quick_check {border:none;padding: 25px 46px;background: #e3ecf5;}
#kl_wrapper_3 label {font-size:1rem;}
#kl_wrapper_3 .kl_quick_check p {margin:0!important;}
#kl_wrapper_3 .kl_quick_check_answer {margin-bottom: 12px;}
#kl_wrapper_3 .kl_quick_check .kl_quick_check_field {margin: 3px 10px 10px 0!important;}
#kl_wrapper_3 .kl_quick_check h3 {display:none;}
/*----
CALL OUT/ SECTION STYLES
----*/
/*Lt and Lecture Link boxes*/
.kl_wrapper .rocc_link_out_box {
background-color: var(--rocc_primary);
padding: 26px 12px;
}
.kl_wrapper .rocc_link_out_box h2 {
color: white;
margin-bottom: 1rem;
}
.kl_wrapper .rocc_link_out_box p {
color: white;
margin-top: 0px;
}
.kl_wrapper .rocc_link_out_box_button a {
color: white;
font-size: 1rem;
background-color: var(--rocc_call_out_key) ;
border: none;
padding: 10px 20px 10px 20px;
text-decoration: none !important;
display: inline-block;
transition-duration: 0.2s;
float: right;
margin-right: 4%;
}