659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
|
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
|
-
-
+
+
+
+
+
|
font-weight: normal;
}
/* ******* (Mobile first) Columnar series list styling *******
*/
.column-list {
max-width: 17rem;
margin: 0;
columns: 8rem auto;
column-count: 2;
column-width: 16ch;
column-gap: 1ch;
}
@media (min-width: 667px) {
.column-list {
column-count: auto;
margin: 0 auto;
max-width: 70ch;
}
}
.column-list div {
padding-left: 0.25em; /* Keeps some italic descenders inside the box */
text-align: left;
break-inside: avoid;
|
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
|
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
|
-
+
+
|
margin: 0 auto;
flex-shrink: 0;
}
@media (min-width: 667px) {
footer#main {
text-align: center;
width: 100%;
width: calc(100% - 4vw);
padding: 0 2vw 1rem 2vw;
background: linear-gradient(◊color-background 5%, #dedede 100%);
}
}
footer#main p.title {
font-size: 1rem;
font-feature-settings: "smcp" on;
|