393
394
395
396
397
398
399
400
401
402
|
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
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
line-height: ◊x-lineheight[1];
text-align: center;
display: block;
margin: ◊x-lineheight[1] 0;
}
/* Fossil info links */
.scm-links {
color: #888;
font-size: 0.5rem;
white-space: nowrap;
float: right;
text-align: right;
margin-top: -◊x-lineheight[2.01];
padding-right: 1ch;
font-family: ◊mono-font;
font-style: italic;
}
.scm-links a {
display: inline-block;
text-align: center;
width: 0.9rem;
color: #727070;
}
p {
margin: 0;
text-indent: 0;
}
|
819
820
821
822
823
824
825
826
827
828
829
|
839
840
841
842
843
844
845
846
847
848
849
|
-
+
|
display: grid;
grid-template-columns: 8rem 7fr 1fr;
grid-template-rows: auto auto auto;
grid-template-areas:
"corner title title"
"margin main .";
"margin main rightmargin";
align-items: start; /* Puts everything at the top */
margin-bottom: 0;
grid-column-gap: 1rem;
box-shadow: 0.4em 0.4em 10px #e3e3e3;
background: white;
|
865
866
867
868
869
870
871
872
873
874
|
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
|
+
+
+
+
+
+
+
+
+
+
+
+
|
article.no-title footer.article-info {
margin-top: 1.5rem;
padding-top: 0;
}
.scm-links {
float: none;
grid-area: rightmargin;
height: 100%;
}
.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/ */
|