summaryrefslogtreecommitdiff
path: root/docs/css/extra.css
blob: c27654f13876e30e31d639e5c5c2fa85e1f8ef1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* adapted from cider */

/* By default kbd doesn't stand out very much. Let's fix this! */
kbd {
    padding: 2px 3px;
    border: solid 1px #ccc;
    /* color: black; */
    background-color: #fcfcfc;
    border-radius: 3px;
    box-shadow: inset 0 -1px 0 #bbb;
    display: inline-block;
    white-space: nowrap;
    font-size: 90%;
}

/* The default font-size for code blocks is 75% which makes code
hard to read. */
code {
    font-size: 85%;
    color: #d04232;
}