889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
|
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
|
+
+
+
+
-
|
}
.scm-links {
float: none;
grid-area: rightmargin;
height: 100%;
}
article.with-title .scm-links {
grid-area: title;
}
.scm-links a:hover {
color: #2176ff;
background: none;
}
section.entry-content {
grid-area: main;
/* Prevent content from overriding grid column sizing */
/* See https://css-tricks.com/preventing-a-grid-blowout/ */
min-width: 0;
}
|