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
|
main {
background: white;
margin: 0;
padding: ◊x-lineheight[0.5] ◊x-lineheight[1];
}
main header {
text-align: center;
}
main header h1 {
font-size: ◊x-lineheight[1.5];
line-height: ◊x-lineheight[2];
margin: 0 0 ◊x-lineheight[0.5] 0;
font-weight: normal;
font-style: italic;
text-transform: lowercase;
color: ◊color-pagehead;
transition: color 0.25s ease;
}
img.logo {
filter: grayscale(60%);
transition: filter 0.5s ease;
}
header:hover img.logo {
filter: none;
transition: filter 0.1s ease;
}
main header:hover h1 {
color: ◊color-linkhover;
transition: color 0.1s ease;
}
/* I read somewhere years ago that you should specify styling for links in the
following order: Link, Visited, Hover, Active.
→ Remember the mnemonic: Lord Vader Has Arrived.
Not sure if that's relevant advice any more but I still follow it. It can't hurt. */
a:link, a:visited { /* [L]ord [V]ader… */
color: ◊color-link;
text-decoration: none;
}
a:hover, a:active { /* …[H]as [A]rrived */
color: ◊color-linkhover;
background: ◊color-linkbackground;
}
main>a {
color: inherit;
}
span.links-footnote {
display: inline-block; /* allows keyframe animation to work */
}
li:target, a:target, span.links-footnote:target {
animation: hilite 2.5s;
}
@keyframes hilite {
0% {background: transparent;}
10% {background: #feffc1;}
100% {background: transparent;}
}
/* On mobile, an <ARTICLE> is just a box. Later we'll do fancy stuff if grid support is detected. */
article {
margin: ◊x-lineheight[2] 0 ◊x-lineheight[1] 0;
padding-top: ◊x-lineheight[1];
}
/* Here's my thing these days about article titles: they shouldn't be required. When you write in a
paper journal, do you think of a title for every entry? No! You just write the date. The date is
the heading. Makes sense. But, this means I've had to think long and hard about how to present two
different types of articles (those with titles AND dates, and those with just a date for the title).
For now: By default, the title-less article is assumed to be the norm. On these, we use <H1> to
show the date in italics. */
article>h1 {
font-size: ◊x-lineheight[1];
line-height: ◊x-lineheight[1];
margin: 0 0 ◊x-lineheight[1] 0;
font-style: italic;
font-weight: normal;
}
/* Titles non-bold, non-smallcaps by default. This can be overridden in document markup. */
article>h1.entry-title {
margin: 0 0 0 0;
text-transform: none;
font-style: normal;
line-height: 1.7rem;
}
/* This <SPAN> class is used in titles for Notes appended to earlier articles */
h1.entry-title .cross-reference {
font-feature-settings: "scmp" off, "liga" on, "clig" on, "dlig" on, "kern" on, "onum" on, "pnum" on;
font-style: italic;
text-transform: none;
}
/* I want my *title* permlinks not to be green or underlined. Just your basic raven black, dark green on hover.
Normally with links, you _don’t_ want to rely on hovers to differentiate them, because there’s no way
|
|
|
>
|
|
>
|
|
|
<
<
<
<
<
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
>
>
>
>
|
|
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
|
main {
background: white;
margin: 0;
padding: ◊x-lineheight[0.5] ◊x-lineheight[1];
}
main > a > header {
text-align: center;
}
main > a > header h1 {
display: none;
/* font-size: ◊x-lineheight[1.5];
line-height: ◊x-lineheight[2];
margin: 0 0 ◊x-lineheight[0.5] 0;
font-weight: normal;
font-style: italic;
text-transform: lowercase;
color: ◊color-pagehead;
transition: color 0.25s ease; */
}
img.logo {
height: ◊x-lineheight[3];
filter: none;
transition: filter 0.5s ease;
}
header:hover img.logo {
filter: invert(12%) sepia(87%) saturate(2559%) hue-rotate(348deg) brightness(125%) contrast(88%);
transition: filter 0.5s ease;
}
/* I read somewhere years ago that you should specify styling for links in the
following order: Link, Visited, Hover, Active.
→ Remember the mnemonic: Lord Vader Has Arrived.
Not sure if that's relevant advice any more but I still follow it. It can't hurt. */
a:link, a:visited { /* [L]ord [V]ader… */
color: ◊color-link;
text-decoration: none;
}
a:hover, a:active { /* …[H]as [A]rrived */
color: ◊color-linkhover;
background: ◊color-linkbackground;
}
a.index-link:link, a.index-link:visited {
color: ◊color-bodytext;
}
a.index-link:hover, a.index-link:active {
color: #006400;
}
a.index-link::after {
content: '\f89b';
color: #809102;
position: relative;
top: -0.3em;
}
main>a {
color: inherit;
}
span.links-footnote {
display: inline-block; /* allows keyframe animation to work */
}
:target {
animation: hilite 2.5s;
}
@keyframes hilite {
0% {background: transparent;}
10% {background: #feffc1;}
100% {background: transparent;}
}
main > aside {
text-align: center;
}
nav {
font-family: 'Triplicate T4c', monospace;
font-feature-settings: "onum" off;
font-size: 0.7rem;
margin: 0;
margin-top: 0.5rem;
text-align: center;
}
nav ul {
list-style-type: none;
margin: 0.2em auto;
padding: 0;
}
nav li {
display: none; /* Numbers not displayed on mobile */
color: gray;
}
nav li.nav-text {
display: inline;
text-transform: uppercase;
letter-spacing: 0.05rem;
font-size: 0.6rem;
}
nav li.inactive-link {
color: gray;
}
nav li.current-page {
color: ◊color-bodytext;
padding: 0.2rem 0.5rem;
border-bottom: dotted ◊color-bodytext 2px;
}
nav li a {
padding: 0.2rem 0.5rem;
}
nav li a:link, nav li a:visited {
color: ◊color-bodytext;
}
nav li a:hover, nav li a:active {
color: ◊color-linkhover;
background: #ebebeb;
}
i > em { font-style: normal; }
/* On mobile, an <ARTICLE> is just a box. Later we'll do fancy stuff if grid support is detected. */
article {
margin: ◊x-lineheight[2] 0 ◊x-lineheight[1] 0;
padding-top: ◊x-lineheight[1];
}
article:first-of-type {
margin-top: ◊x-lineheight[1];
}
/* Here's my thing these days about article titles: they shouldn't be required. When you write in a
paper journal, do you think of a title for every entry? No! You just write the date. The date is
the heading. Makes sense. But, this means I've had to think long and hard about how to present two
different types of articles (those with titles AND dates, and those with just a date for the title).
filter: invert(12%) sepia(87%) saturate(359%) hue-rotate(348deg) brightness(105%) contrast(88%);
For now: By default, the title-less article is assumed to be the norm. On these, we use <H1> to
show the date in italics. */
article>h1 {
font-size: ◊x-lineheight[1];
line-height: ◊x-lineheight[1];
margin: 0 0 ◊x-lineheight[1] 0;
font-style: italic;
font-weight: normal;
}
/* Titles non-bold, non-smallcaps by default. This can be overridden in document markup. */
h1.entry-title {
margin: 0 0 0 0;
text-transform: none;
font-style: normal;
line-height: 1.7rem;
}
h1.entry-title.note-full {
font-feature-settings: "smcp" on, "liga" on, "clig" on, "dlig" on, "kern" on, "onum" on, "pnum" on;
}
/* This <SPAN> class is used in titles for Notes appended to earlier articles */
h1.entry-title .cross-reference {
font-feature-settings: "smcp" off, "liga" on, "clig" on, "dlig" on, "kern" on, "onum" on, "pnum" on;
font-style: italic;
text-transform: none;
}
/* I want my *title* permlinks not to be green or underlined. Just your basic raven black, dark green on hover.
Normally with links, you _don’t_ want to rely on hovers to differentiate them, because there’s no way
|
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
|
background: none;
color: ◊color-bodytext;
}
a.rel-bookmark:hover, /* Has */
a.rel-bookmark:active { /* Arrived */
text-decoration: none;
background: #f1f1f1;
color: #006400;
}
/* Here's where we add the minty fresh maple leaf glyph. */
a.rel-bookmark::after {
content: '\f894';
margin-left: 4px;
|
|
|
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
|
background: none;
color: ◊color-bodytext;
}
a.rel-bookmark:hover, /* Has */
a.rel-bookmark:active { /* Arrived */
text-decoration: none;
background: ◊color-linkbackground;
color: #006400;
}
/* Here's where we add the minty fresh maple leaf glyph. */
a.rel-bookmark::after {
content: '\f894';
margin-left: 4px;
|
298
299
300
301
302
303
304
305
306
307
308
309
310
311
|
font-feature-settings: "smcp" on, "liga" on, "clig" on, "dlig" on, "kern" on, "onum" on, "pnum" on;
color: #888;
}
footer.article-info::before {
content: "☞\00a0";
}
p.time::before {
content: none;
}
p.time {
font-size: ◊x-lineheight[0.75];
|
>
>
>
>
>
|
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
|
font-feature-settings: "smcp" on, "liga" on, "clig" on, "dlig" on, "kern" on, "onum" on, "pnum" on;
color: #888;
}
footer.article-info::before {
content: "☞\00a0";
}
/* Within article info, don’t display series info when on a series page (redundant) */
body.series-page .series-part {
display: none;
}
p.time::before {
content: none;
}
p.time {
font-size: ◊x-lineheight[0.75];
|
420
421
422
423
424
425
426
427
428
429
430
431
432
433
|
margin: ◊x-lineheight[1] auto;
display: table;
white-space: pre-wrap;
/* Whitespace is preserved by the browser.
Text will wrap when necessary, and on line breaks */
}
section.entry-content figure {
margin: ◊x-lineheight[1] 0;
padding: 0;
}
figure>a {
margin: 0;
|
>
>
>
>
>
>
|
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
|
margin: ◊x-lineheight[1] auto;
display: table;
white-space: pre-wrap;
/* Whitespace is preserved by the browser.
Text will wrap when necessary, and on line breaks */
}
p.verse-heading {
font-feature-settings: "smcp" on, "liga" on, "clig" on, "dlig" on, "kern" on, "onum" on, "pnum" on;
text-align: center;
font-size: 1.3rem;
}
section.entry-content figure {
margin: ◊x-lineheight[1] 0;
padding: 0;
}
figure>a {
margin: 0;
|
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
|
color: ◊color-xrefmark;
display: inline-block;
width: 1em;
}
/* ******* (Mobile first) Journal View styling *******
*/
section.article-listing h2 {
font-weight: normal;
font-style: italic;
font-size: ◊x-lineheight[1];
margin: 0 0 ◊x-lineheight[0.5] 0;
}
section.article-listing h2::before {
content: '§\00a0';
font-family: ◊body-font;
font-style: normal;
color: #d0d0d0;
}
section.article-listing aside {
margin-bottom: ◊x-lineheight[1];
font-style: italic;
}
ul.article-list {
margin: 0;
padding: 0;
}
ul.article-list li {
list-style-type: none;
display: block;
margin: 0;
|
<
<
<
<
<
|
|
<
<
<
<
<
<
<
<
<
<
|
|
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
|
color: ◊color-xrefmark;
display: inline-block;
width: 1em;
}
/* ******* (Mobile first) Journal View styling *******
*/
section.content-block {
}
ul.article-list {
margin-top: ◊x-lineheight[1];
padding: 0;
}
ul.article-list li {
list-style-type: none;
display: block;
margin: 0;
|
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
|
div.article-list-date {
color: #999;
}
div.article-list-title {
font-size: 1.2rem;
}
/* End of mobile-first typography and layout */
}
/* Here’s where we start getting funky for any viewport wider than mobile portrait.
An iPhone 6 is 667px wide in landscape mode, so that’s our breakpoint. */
@media only screen and (min-width: 667px) {
main {
margin: 2em auto;
padding-left: 1rem;
padding-right: 1rem;
width: 30rem;
max-width: 90%;
}
@supports (grid-area: auto) {
main {
width: 42rem;
background: none;
}
main header {
display: grid;
grid-template-columns: 9rem 12fr 1fr;
grid-column-gap: 0;
grid-template-areas: "logo masthead .";
align-items: center;
text-align: left;
margin-bottom: ◊x-lineheight[2];
}
header img.logo {
grid-area: logo;
height: ◊x-lineheight[3];
max-height: 103px;
width: auto;
justify-self: end;
margin-right: 1rem;
}
main header h1 {
grid-area: masthead;
margin: 0;
line-height: 1em;
}
article {
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
>
>
<
<
<
<
<
<
<
<
<
<
<
<
<
>
|
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
|
div.article-list-date {
color: #999;
}
div.article-list-title {
font-size: 1.2rem;
}
/* ******* (Mobile first) Keyword Index styling *******
*/
#keywordindex {
column-width: 7rem;
margin-top: ◊x-lineheight[2];
}
#keywordindex section {
-webkit-column-break-inside: avoid; /* Chrome, Safari, Opera */
page-break-inside: avoid; /* Firefox */
break-inside: avoid; /* IE 10+ */
}
#keywordindex h2 {
margin: 0;
}
#keywordindex ul {
margin-top: 0;
list-style-type: none;
padding: 0;
}
/* End of mobile-first typography and layout */
}
/* Here’s where we start getting funky for any viewport wider than mobile portrait.
An iPhone 6 is 667px wide in landscape mode, so that’s our breakpoint. */
@media only screen and (min-width: 667px) {
main {
margin: 0 auto;
padding-left: 1rem;
padding-right: 1rem;
width: 30rem;
max-width: 90%;
}
nav li { display: inline; } /* Display page numbers on larger screens */
@supports (grid-area: auto) {
main {
width: 42rem;
background: none;
}
header img.logo {
height: ◊x-lineheight[3];
max-height: 103px;
width: auto;
}
/* This header is display:none above, so the following is vestigial */
main header h1 {
grid-area: masthead;
margin: 0;
line-height: 1em;
}
article {
|
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
|
font-size: 0.8rem;
line-height: ◊derive-lineheight[4 #:per-lines 3];
margin: 0;
padding-left: 3px;
}
article.no-title footer.article-info {
padding-top: 1.5rem;
}
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;
}
section.entry-content:first-child {
margin-top: 0 !important;
}
article>:last-child::after {
content: none;
margin 0;
display: none;
|
>
|
|
|
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
|
font-size: 0.8rem;
line-height: ◊derive-lineheight[4 #:per-lines 3];
margin: 0;
padding-left: 3px;
}
article.no-title footer.article-info {
margin-top: 1.5rem;
padding-top: 0;
}
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;
}
section.entry-content :first-child {
margin-top: 0 !important;
}
article>:last-child::after {
content: none;
margin 0;
display: none;
|
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
|
div.note h3 {
}
/* ******* (Grid support) Journal View styling *******
*/
section.article-listing {
display: grid;
grid-template-columns: 8rem 7fr 1fr;
grid-template-rows: auto auto auto;
grid-template-areas:
". title title"
"margin main .";
align-items: start; /* Puts everything at the top */
margin-bottom: 0;
grid-column-gap: 1rem;
}
section.article-listing>h2 {
grid-area: title;
}
section.article-listing>aside {
grid-area: margin;
font-size: 0.8rem;
line-height: ◊derive-lineheight[4 #:per-lines 3];
text-align: right;
color: #6b6b6b;
}
ul.article-list {
grid-area: main;
}
}
}
|
|
|
<
<
>
>
>
>
|
|
>
|
<
<
<
<
<
<
|
<
|
>
|
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
|
div.note h3 {
}
/* ******* (Grid support) Journal View styling *******
*/
section.content-block {
display: grid;
grid-template-columns: 8rem 7fr 1fr;
grid-template-rows: auto auto auto;
grid-template-areas: "margin main .";
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;
border: solid 1px #dedede;
border-radius: 2px;
}
div.content-block-main {
padding-top: ◊x-lineheight[1];
padding-bottom: ◊x-lineheight[1];
grid-area: main;
}
div.content-block-main > :first-child {
margin-top: 0 !important;
}
}
}
|