elixir-toolkit-theme 5.0.0 → 6.0.0

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 (37) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +3 -2
  3. data/_includes/affiliation-logo.html +10 -0
  4. data/_includes/affiliation-tiles-page.html +27 -27
  5. data/_includes/citation-page.html +19 -17
  6. data/_includes/contributor-avatar.html +16 -0
  7. data/_includes/contributor-card.html +33 -0
  8. data/_includes/contributor-carousel-selection.html +17 -68
  9. data/_includes/contributor-minitiles-page.html +18 -107
  10. data/_includes/contributor-tiles-all.html +8 -61
  11. data/_includes/github-buttons.html +14 -14
  12. data/_includes/head.html +3 -3
  13. data/_includes/more-information-tiles.html +5 -5
  14. data/_includes/page-metadata-tabs.html +92 -0
  15. data/_includes/resource-table-all.html +28 -16
  16. data/_includes/scroll-top.html +1 -1
  17. data/_includes/section-navigation-tiles.html +10 -5
  18. data/_includes/sidebar.html +58 -42
  19. data/_includes/toc.html +1 -1
  20. data/_includes/topnav.html +2 -1
  21. data/_layouts/default.html +3 -3
  22. data/_layouts/page.html +4 -4
  23. data/_sass/_bootstrap_variables.scss +2 -1
  24. data/_sass/_variables.scss +11 -17
  25. data/assets/css/main.scss +235 -107
  26. data/assets/img/apple-touch-icon.png +0 -0
  27. data/assets/img/favicon.svg +24 -0
  28. data/assets/img/site.webmanifest +19 -17
  29. data/assets/img/web-app-manifest-192x192.png +0 -0
  30. data/assets/img/web-app-manifest-512x512.png +0 -0
  31. data/assets/js/main.js +133 -22
  32. data/assets/js/toc.js +5 -3
  33. metadata +11 -8
  34. data/assets/img/android-chrome-192x192.png +0 -0
  35. data/assets/img/android-chrome-512x512.png +0 -0
  36. data/assets/img/safari-pinned-tab.svg +0 -29
  37. data/assets/js/jquery.navgoco.js +0 -314
data/assets/css/main.scss CHANGED
@@ -8,24 +8,39 @@ permalink: assets/css/main
8
8
  /*-----Default theme variables-----*/
9
9
 
10
10
  @import "bootstrap/functions";
11
- $popover-max-width: 12em;
12
- $enable-caret: false;
13
- $breadcrumb-font-size: 0.85rem;
14
- $breadcrumb-divider: '>';
15
- $breadcrumb-margin-bottom: 0;
11
+
12
+
13
+ /*-----Initialize User Bootstrap variables-----*/
14
+
15
+ @import "bootstrap_variables";
16
+
17
+ /*-----Initialize Bootstrap variables-----*/
18
+ $primary: #0d6efd !default;
19
+ $light: #f8f9fa !default;
20
+ $input-bg: $light !default;
21
+ $input-group-addon-bg: rgba($primary, 0.08) !default;
22
+ $form-select-bg: $light !default;
23
+ $popover-max-width: 12em !default;
24
+ $input-border-width: 0 !default;
25
+ $alert-border-width: 0 !default;
26
+ $form-select-border-width: 0 !default;
27
+ $card-border-width: 0 !default;
28
+ $enable-caret: false !default;
29
+ $breadcrumb-font-size: 0.85rem !default;
30
+ $breadcrumb-divider: '>' !default;
31
+ $breadcrumb-margin-bottom: 0 !default;
16
32
  $h3-font-size: 1rem * 1.6 !default;
17
33
  $h2-font-size: 1rem * 2.1 !default;
18
34
  $h1-font-size: 1rem * 3.3 !default;
19
- $navbar-light-toggler-border-color: transparent;
20
- $navbar-dark-toggler-border-color: transparent;
21
- $card-border-width: 0;
35
+ $navbar-light-toggler-border-color: transparent !default;
36
+ $navbar-dark-toggler-border-color: transparent !default;
37
+ $link-decoration: none !default;
38
+ $link-color: $primary !default;
22
39
  $custom-container-max-widths: (
23
- xxxl: 1700px
40
+ xxxl: 1440px
24
41
  );
25
42
 
26
- /*-----Initialize Bootstrap variables-----*/
27
43
 
28
- @import "bootstrap_variables";
29
44
  @import "bootstrap/variables";
30
45
 
31
46
  /*-----Custom maps-----*/
@@ -64,7 +79,7 @@ $container-max-widths: map-merge($container-max-widths, $custom-container-max-wi
64
79
  margin-top: $spacer * 1.5;
65
80
  }
66
81
 
67
- h3 + h4 {
82
+ h3+h4 {
68
83
  margin-top: $spacer * 0.25;
69
84
  }
70
85
 
@@ -130,6 +145,7 @@ body img {
130
145
 
131
146
  #toc {
132
147
  grid-area: toc;
148
+
133
149
  /*-----Page image-----*/
134
150
  .page-img-lg {
135
151
  max-height: 9em;
@@ -172,12 +188,14 @@ body img {
172
188
  }
173
189
 
174
190
  #main.add-grid #toc {
175
- top: $spacer * 3;
191
+ top: 0;
176
192
  right: 0;
177
193
  z-index: 2;
178
194
  height: calc(100vh - 7rem);
179
195
  overflow-y: auto;
180
196
  margin-left: $spacer * 3;
197
+ scrollbar-width: thin;
198
+ scrollbar-color: $primary transparent;
181
199
  }
182
200
 
183
201
  #layout {
@@ -190,7 +208,8 @@ body img {
190
208
  grid-area: content;
191
209
  min-width: 1px;
192
210
  position: relative;
193
- > h2:first-child {
211
+
212
+ >h2:first-child {
194
213
  margin-top: 0;
195
214
  }
196
215
  }
@@ -241,6 +260,7 @@ pre {
241
260
  border-radius: $border-radius;
242
261
  margin-bottom: $spacer;
243
262
  line-height: 1.42857143;
263
+
244
264
  code {
245
265
  padding: 0;
246
266
  background-color: transparent;
@@ -253,17 +273,21 @@ div.highlight {
253
273
  border: 1px solid $border-color;
254
274
  border-radius: $border-radius;
255
275
  margin: $spacer 0;
276
+
256
277
  pre {
257
278
  margin-bottom: 0;
258
279
  padding: $spacer;
259
280
  border: 0;
260
281
  }
261
282
  }
283
+
262
284
  /*-----Top navigation-----*/
263
285
 
264
286
  header .navbar {
265
287
  background-color: $topnav-bg;
266
-
288
+ #search-label, #search-input {
289
+ background-color: $topnav-searchbar;
290
+ }
267
291
  .navbar-brand {
268
292
  color: $topnav-title-color;
269
293
 
@@ -388,7 +412,7 @@ header .navbar {
388
412
  vertical-align: top;
389
413
  }
390
414
 
391
- .search-result-preview + .search-result-preview {
415
+ .search-result-preview+.search-result-preview {
392
416
  margin-top: 0.25rem;
393
417
  }
394
418
 
@@ -407,97 +431,130 @@ header .navbar {
407
431
  /*-----Sidebar-----*/
408
432
 
409
433
  @include media-breakpoint-up(lg) {
410
- #sidebar > nav {
434
+ #sidebar>nav {
411
435
  display: block !important;
436
+ position: sticky;
437
+ top: 0;
438
+ height: calc(100vh - 7rem);
439
+ overflow-y: auto;
440
+ scrollbar-width: thin;
441
+ scrollbar-color: $primary transparent;
412
442
  }
413
443
  }
414
444
 
415
- #sidebar > nav .btn.sidebar-title {
416
- color: $sidebar-color;
417
- border: 0;
445
+ #sidebar > nav {
446
+ .sidebar-title-wrapper {
447
+ position: sticky;
448
+ top: 0;
449
+ background: $sidebar-title-bg;
450
+ z-index: 1;
451
+ }
452
+
453
+ .sidebar-title {
454
+ border: 0;
455
+ padding: 0.5rem;
456
+ font-weight: 700;
457
+ transition: $transition-base;
458
+ border-radius: $border-radius;
459
+
460
+ &:hover:not(.disabled), &.active:not(.disabled) {
461
+ color: $sidebar-link-color-active!important;
462
+ background: $sidebar-link-bg-active;
463
+ }
464
+ }
418
465
  }
419
466
 
420
467
  .sidebar-collapse {
421
- background-color: $sidebar-bg;
468
+ background-color: $light;
422
469
 
423
470
  i {
424
471
  font-size: 1.25rem;
425
472
  float: right;
426
- line-height: 1.25em;
427
473
  }
428
474
  }
429
475
 
430
- .sidebar-collapse:not(.collapsed) {
431
- color: $sidebar-color-active;
432
- background-color: $sidebar-bg-active;
433
- }
434
476
 
435
477
  #sidebar > nav > ul {
436
- > li:not(.sidebar-title) > a {
437
- background-color: $sidebar-bg;
438
- color: $sidebar-color;
439
- }
478
+ margin-bottom: 0;
440
479
 
441
- li > a {
442
- > span {
443
- float: right;
444
- width: 15px;
445
- margin-left: $btn-padding-x;
446
- text-align: center;
447
- }
480
+ li {
481
+ padding: 0.25rem 0.5rem;
482
+ position: relative;
483
+
484
+ a {
485
+ color: inherit;
486
+ cursor: pointer;
487
+ transition: $transition-base;
488
+ line-height: 1.15;
489
+ padding: 0.20rem 0;
490
+
491
+ &::after {
492
+ transition: $transition-base;
493
+ pointer-events: none;
494
+ background: transparent;
495
+ position: absolute;
496
+ content: "";
497
+ left: 0;
498
+ top: 0;
499
+ right: 0;
500
+ bottom: 0;
501
+ border-radius: $border-radius;
502
+ }
448
503
 
449
- > span:after {
450
- display: inline-block;
451
- font-style: normal;
452
- font-variant: normal;
453
- text-rendering: auto;
454
- -webkit-font-smoothing: antialiased;
455
- font-family: "Font Awesome 6 Free";
456
- font-weight: 900;
457
- content: "\f078";
458
- transition: transform 0.15s ease-in-out;
459
- }
460
- }
504
+ &:hover,&.active {
505
+ color: $sidebar-link-color-active;
506
+
507
+ &::after {
508
+ background: $sidebar-link-bg-active;
509
+ }
510
+ }
461
511
 
462
- li.active {
463
- &:not(.parent) > a {
464
- background-color: $sidebar-bg-active;
465
- color: $sidebar-color-active;
512
+ &.active {
513
+ font-weight: 600;
514
+ color: $sidebar-link-color-active;
515
+ }
466
516
  }
467
517
 
468
- > a > span:after {
469
- transform: rotate(-180deg);
470
- }
471
- }
518
+ .btn {
519
+ transition: $transition-base;
520
+ color: inherit;
521
+ width: 1.85rem;
522
+ height: 1.75rem;
523
+ display: flex;
524
+ justify-content: center;
525
+ align-items: center;
472
526
 
473
- ul {
474
- display: none;
527
+ &:hover {
528
+ color: $sidebar-link-color-active;
529
+ background: $sidebar-link-bg-active;
530
+ }
475
531
 
476
- li {
477
- a {
478
- margin-left: 30px;
479
- background-color: $sidebar-lvl2-bg;
480
- color: $sidebar-lvl2-color;
532
+ &:not(.collapsed) {
533
+ i {
534
+ transform: rotate(90deg);
535
+ }
481
536
  }
482
537
 
483
- ul li a {
484
- margin-left: 60px;
485
- background-color: $sidebar-lvl3-bg;
486
- color: $sidebar-lvl3-color;
538
+ i {
539
+ transition: $transition-base;
487
540
  }
488
541
  }
489
542
 
490
- .sidebar_rdm_sub {
491
- border-color: $sidebar-bg;
492
- padding: 0.75rem 0.5rem 0.5rem 0.5rem;
493
- border-radius: 0px 0px $border-radius $border-radius;
494
- border-style: none solid solid solid;
495
- border-width: 0.2em;
496
- margin-top: -0.25rem;
543
+ ul {
544
+ border-left: 1px solid $border-color;
545
+ margin-left: 0.2rem;
546
+ padding-left: 0.4rem;
547
+ margin-bottom: 0;
497
548
  }
549
+ }
550
+
551
+ .sidebar_rdm_sub {
552
+ padding: 0.75rem 0.5rem 0.5rem 0.5rem;
553
+ margin-top: -0.25rem;
498
554
  }
499
555
  }
500
556
 
557
+
501
558
  /*-----Summary under page title-----*/
502
559
 
503
560
  .summary {
@@ -514,11 +571,19 @@ header .navbar {
514
571
 
515
572
  /*-----TOC-----*/
516
573
 
574
+ #toc {
575
+ #btn-toc-hide {
576
+ display: none;
577
+ }
578
+ }
517
579
  #toc-contents {
518
580
  @include media-breakpoint-up(xl) {
519
581
  display: block !important;
520
- } // Indent the lists and reset any other padding
582
+ }
583
+
584
+ // Indent the lists and reset any other padding
521
585
  ul {
586
+
522
587
  // highlighting active links
523
588
  a {
524
589
  color: inherit;
@@ -526,6 +591,7 @@ header .navbar {
526
591
  border-left: 0.125rem solid transparent;
527
592
  display: block;
528
593
  transition: border-left 0.15s ease-in-out;
594
+
529
595
  &.active,
530
596
  &:hover {
531
597
  text-decoration: none !important;
@@ -558,7 +624,7 @@ header .navbar {
558
624
 
559
625
  /*-----General table properties-----*/
560
626
 
561
- .table > :not(:first-child) {
627
+ .table> :not(:first-child) {
562
628
  border-color: inherit;
563
629
  }
564
630
 
@@ -595,6 +661,16 @@ table {
595
661
  font-weight: bold;
596
662
  }
597
663
 
664
+ /* Make a button the same height/feel as a .badge */
665
+ .btn-badge {
666
+ /* match .badge metrics */
667
+ --bs-btn-padding-y: .35em;
668
+ --bs-btn-padding-x: .65em;
669
+ --bs-btn-font-size: .75em;
670
+ --bs-btn-line-height: 1;
671
+ --bs-btn-font-weight: 700;
672
+ }
673
+
598
674
  /*-----Footer-----*/
599
675
 
600
676
  footer {
@@ -637,10 +713,12 @@ footer {
637
713
  fill: $footer-ett;
638
714
  transition: fill 0.15s ease-in-out;
639
715
  }
716
+
640
717
  &:hover {
641
718
  .cls-1 {
642
719
  fill: #0d6efd;
643
720
  }
721
+
644
722
  color: #0d6efd !important;
645
723
  }
646
724
  }
@@ -652,8 +730,10 @@ footer {
652
730
  position: fixed;
653
731
  height: 50px;
654
732
  width: 50px;
655
- bottom: -50px; /* Default hidden position */
656
- right: 1rem; /* Adjust as needed */
733
+ bottom: -50px;
734
+ /* Default hidden position */
735
+ right: 1rem;
736
+ /* Adjust as needed */
657
737
  opacity: 0;
658
738
  overflow: hidden;
659
739
  z-index: 1000;
@@ -663,7 +743,8 @@ footer {
663
743
  opacity 0.15s ease-out;
664
744
 
665
745
  &.visible {
666
- bottom: 1rem; /* Initial visible position */
746
+ bottom: 1rem;
747
+ /* Initial visible position */
667
748
  opacity: 1;
668
749
  }
669
750
  }
@@ -682,6 +763,19 @@ footer {
682
763
  .contributor-cards {
683
764
  .card {
684
765
  background-color: $contr-card-bg;
766
+ display: flex;
767
+ flex-direction: column;
768
+
769
+ .card-body {
770
+ flex: 1 1 auto;
771
+ display: flex;
772
+ flex-direction: column;
773
+ justify-content: center;
774
+ }
775
+
776
+ .card-footer {
777
+ flex-shrink: 0;
778
+ }
685
779
  }
686
780
 
687
781
  .badge {
@@ -722,6 +816,7 @@ footer {
722
816
  line-height: 2ex;
723
817
  width: 2.2ex;
724
818
  height: 2.2ex;
819
+
725
820
  i {
726
821
  font-size: 0.625em;
727
822
  line-height: 0.1em;
@@ -752,40 +847,57 @@ footer {
752
847
  text-align: center;
753
848
  }
754
849
 
850
+ /*---- Page metadata ----*/
851
+ .page-metadata {
852
+ background-color: $page-metadata-bg;
853
+ .affiliation-link {
854
+ background-color: $page-metadata-link-bg;
855
+ }
856
+ .nav-link {
857
+ border: none;
858
+ display: flex;
859
+ align-items: center;
860
+ border-bottom: 2px solid transparent;
861
+ color: rgba($body-color, 0.75);
862
+ &.active,
863
+ &:hover {
864
+ background: none;
865
+ border-bottom-color: $primary;
866
+ color: $body-color;
867
+ }
868
+ &:not(.active):hover {
869
+ border-bottom-color: $body-color;
870
+ }
871
+ }
872
+ }
873
+
874
+
755
875
  /*--------Page contributors---------*/
756
876
  .page-contributors {
757
- background-color: $contr-bg;
758
877
  font-size: 0;
759
878
 
760
879
  .contributor-cards .card {
761
880
  background-color: $contr-popover-bg;
762
881
  }
882
+
763
883
  .dropdown-menu {
764
884
  width: 11em;
765
885
  }
766
886
 
767
887
  /* Gets rid of extra white space */
768
888
  .contributor-link {
769
- background-color: $contr-link-bg;
889
+ background-color: $page-metadata-link-bg;
890
+ padding: 0.25rem 0.5rem !important;
891
+ font-size: 0.85rem;
892
+ gap: 0.35rem !important;
893
+
770
894
  &::after {
771
895
  display: none;
772
896
  }
773
897
 
774
898
  .contributor-img-sm {
775
- height: 25px;
776
- width: 25px;
777
- }
778
-
779
- .coordinator-crown {
780
- font-size: 0.6em;
781
- width: 1.8em;
782
- height: 1.8em;
783
- line-height: 1.8;
784
- background-color: $contr-crown-bg;
785
-
786
- .fa-solid {
787
- color: $contr-crown-color;
788
- }
899
+ height: 22px;
900
+ width: 22px;
789
901
  }
790
902
 
791
903
  .contr-placeholder {
@@ -794,6 +906,7 @@ footer {
794
906
  }
795
907
  }
796
908
 
909
+
797
910
  /*-----Cookie consent banner-----*/
798
911
 
799
912
  .cookiealert {
@@ -831,21 +944,23 @@ footer {
831
944
  .tool {
832
945
  cursor: pointer;
833
946
  color: $link-color;
834
- background-color: rgba($link-color, 0.05);
947
+ background-color: rgba($link-color, 0.08);
835
948
  border-radius: $border-radius;
836
949
  padding: 0.1rem 0.25rem;
837
950
 
838
951
  &:hover,
839
952
  &:active {
840
953
  text-decoration: none !important;
841
- color: $primary;
954
+ color: $link-hover-color;
842
955
  }
843
956
  }
957
+
844
958
  @include media-breakpoint-up(sm) {
845
959
  .tool {
846
960
  white-space: nowrap;
847
961
  }
848
962
  }
963
+
849
964
  .popover-tool {
850
965
  max-width: 20rem;
851
966
 
@@ -876,15 +991,15 @@ footer {
876
991
  }
877
992
 
878
993
  .affiliation-img {
879
- height: 60px;
994
+ height: 45px;
880
995
  }
881
996
 
882
997
  .affiliation-flag {
883
- width: 60px;
998
+ width: 50px;
884
999
  }
885
1000
 
886
1001
  .affiliation-flag .ratio {
887
- width: 40px;
1002
+ width: 35px;
888
1003
  }
889
1004
 
890
1005
  /*-----News and events-----*/
@@ -895,8 +1010,8 @@ li.past_event,
895
1010
  display: none;
896
1011
  }
897
1012
 
898
- .events > ul > li,
899
- .news > ul > li {
1013
+ .events>ul>li,
1014
+ .news>ul>li {
900
1015
  border-left: $news-border-color 5px solid;
901
1016
  border-radius: $border-radius;
902
1017
  padding: 0px 11px;
@@ -916,7 +1031,7 @@ li.past_event,
916
1031
  display: inline-block;
917
1032
  }
918
1033
 
919
- .full-description > *:last-child {
1034
+ .full-description>*:last-child {
920
1035
  margin-bottom: 0;
921
1036
 
922
1037
  li {
@@ -932,25 +1047,29 @@ a.info-collapse {
932
1047
  transition: transform 0.2s ease-in-out;
933
1048
  margin-right: $spacer;
934
1049
  }
1050
+
935
1051
  h3 {
936
1052
  transition: color 0.2s ease-in-out;
937
1053
  }
1054
+
938
1055
  &[aria-expanded="true"] {
939
1056
  i {
940
- transform: rotate(180deg);
1057
+ transform: rotate(90deg);
941
1058
  }
942
1059
  }
1060
+
943
1061
  &:hover {
1062
+
944
1063
  i,
945
1064
  h3 {
946
- color: rgba($link-color, 0.8) !important;
1065
+ color: shift-color($link-color, $link-shade-percentage)!important;
947
1066
  }
948
1067
  }
949
1068
  }
950
1069
 
951
1070
  // Add a bottom border to the last accordion.
952
1071
  a.info-collapse[aria-expanded="false"]:last-of-type,
953
- a.info-collapse[aria-expanded="true"]:last-of-type + .show {
1072
+ a.info-collapse[aria-expanded="true"]:last-of-type+.show {
954
1073
  border-bottom: 1px solid $border-color;
955
1074
  }
956
1075
 
@@ -970,13 +1089,16 @@ a.info-collapse[aria-expanded="true"]:last-of-type + .show {
970
1089
  a.btn {
971
1090
  background-color: $info-card-bg;
972
1091
  color: $info-card-color;
1092
+
973
1093
  i {
974
1094
  transition: $btn-transition;
975
1095
  color: $info-card-color !important;
976
1096
  }
1097
+
977
1098
  &:hover {
978
1099
  background-color: $info-card-bg-hover;
979
1100
  color: $info-card-color-hover !important;
1101
+
980
1102
  i {
981
1103
  color: $info-card-color-hover !important;
982
1104
  }
@@ -999,14 +1121,17 @@ a.info-collapse[aria-expanded="true"]:last-of-type + .show {
999
1121
 
1000
1122
  /*-----Section navigation tiles-----*/
1001
1123
  .navigation-tiles {
1124
+
1002
1125
  .card,
1003
1126
  .btn {
1004
1127
  background-color: $nav-card-bg;
1005
1128
  color: $nav-card-color;
1006
1129
  transition: $btn-transition;
1130
+
1007
1131
  &:hover {
1008
1132
  background-color: $nav-card-bg-hover;
1009
1133
  color: $nav-card-color-hover;
1134
+
1010
1135
  a.section-title {
1011
1136
  text-decoration: none;
1012
1137
  transition: $btn-transition;
@@ -1015,6 +1140,7 @@ a.info-collapse[aria-expanded="true"]:last-of-type + .show {
1015
1140
  }
1016
1141
 
1017
1142
  a {
1143
+
1018
1144
  &:not(.stretched-link),
1019
1145
  button:not(.stretched-link) {
1020
1146
  z-index: 2;
@@ -1026,9 +1152,11 @@ a.info-collapse[aria-expanded="true"]:last-of-type + .show {
1026
1152
  font-size: 1.2rem;
1027
1153
  }
1028
1154
  }
1155
+
1029
1156
  .type-icon {
1030
1157
  height: 1.2rem;
1031
1158
  }
1159
+
1032
1160
  .page-img-sm {
1033
1161
  max-height: 3.2em;
1034
1162
  }
Binary file
@@ -0,0 +1,24 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="77.2" height="77.12"><svg id="SvgjsSvg1005" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="77.2" height="77.12" viewBox="0 0 77.2 77.12">
2
+ <defs>
3
+ <style>
4
+ .cls-1 {
5
+ fill: #0d6efd;
6
+ }
7
+
8
+ .cls-2, .cls-3 {
9
+ fill: #fff;
10
+ }
11
+
12
+ .cls-2 {
13
+ opacity: 0.18;
14
+ }
15
+ </style>
16
+ </defs>
17
+ <g>
18
+ <circle class="cls-1" cx="38.56" cy="38.56" r="38.56"></circle>
19
+ <path class="cls-2" d="M9,48.08a44.19,44.19,0,0,0,4.68,19.84A38.56,38.56,0,1,0,55.16,3.72c-.59,0-1.19-.05-1.79-.05A44.4,44.4,0,0,0,9,48.08Z"></path>
20
+ <path class="cls-3" d="M54,20.52H13.64a.85.85,0,0,0-.84.85v34a.84.84,0,0,0,.84.84H30a.84.84,0,0,0,.85-.84V51.16a.85.85,0,0,0-.85-.85H20.07a.85.85,0,0,1-.85-.85V42a.85.85,0,0,1,.85-.84h8.66a.85.85,0,0,0,.85-.85V36.06a.85.85,0,0,0-.85-.85H20.07a.85.85,0,0,1-.85-.84V27.29a.85.85,0,0,1,.85-.85H38.26a.85.85,0,0,1,.85.85V55.38a.84.84,0,0,0,.85.84h4.73a.84.84,0,0,0,.85-.84V27.29a.85.85,0,0,1,.84-.85H61.27a.85.85,0,0,1,.84.85V55.38a.84.84,0,0,0,.85.84h4.73a.84.84,0,0,0,.85-.84V27.29a.85.85,0,0,1,.85-.85h6.77a.84.84,0,0,0,.84-.85V21.37a.84.84,0,0,0-.84-.85Z"></path>
21
+ </g>
22
+ </svg><style>@media (prefers-color-scheme: light) { :root { filter: none; } }
23
+ @media (prefers-color-scheme: dark) { :root { filter: none; } }
24
+ </style></svg>