210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
|
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;
}
|
|
|
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
|
display: inline;
text-transform: uppercase;
letter-spacing: 0.05rem;
font-size: 0.6rem;
}
nav li.inactive-link {
color: #545454; /* Accessibility (contrast) */
}
nav li.current-page {
color: ◊color-bodytext;
padding: 0.2rem 0.5rem;
border-bottom: dotted ◊color-bodytext 2px;
}
|
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
|
p.time {
margin: 0 0 ◊x-lineheight[1] 0;
}
footer.article-info {
margin: ◊x-lineheight[1] 0;
text-align: center;
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) */
|
|
|
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
|
p.time {
margin: 0 0 ◊x-lineheight[1] 0;
}
footer.article-info {
margin: ◊x-lineheight[1] 0;
text-align: center;
font-feature-settings: "smcp" on, "liga" on, "clig" on, "dlig" on, "kern" on, "onum" on, "pnum" on;
color: #555555; /* Accessibility (contrast) */
}
footer.article-info::before {
content: "☞\00a0";
}
/* Within article info, don’t display series info when on a series page (redundant) */
|