◊(Local Yarn Code "Check-in [89123ed5]")

Overview
Comment:Improve accessibility (CSS, contrast)
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 89123ed54713d202ca268a8dd79c9feef99b1d80db429293b435593ade9069e4
User & Date: joel on 2019-06-18 03:53:23
Other Links: manifest | tags
Context
2019-06-19
23:51
Makefile: include CSS target, turn off tidy for now since it breaks relativizing check-in: 2894ef67 user: joel tags: trunk
2019-06-18
03:53
Improve accessibility (CSS, contrast) check-in: 89123ed5 user: joel tags: trunk
2019-06-16
20:20
Use titles from poems as article title if no other title supplied check-in: 7843fa34 user: joel tags: trunk
Changes

Modified web-extra/martin.css.pp from [dda0dce8] to [5317e3fa].

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) */