aboutsummaryrefslogtreecommitdiff
path: root/_sass/_code.scss
blob: 1aab580a357210b1cec60864d93d180d2d0fceef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
pre, code {
    font-family: $monospaced;
}

code {
    background-color: $grey-3;
    border-radius: 3px;
    color: $code-color;
    font-size: 85%;
    padding: .25em .5em;
}

pre {
    margin: 0 0 1rem;
}

pre code {
    background-color: transparent;
    color: inherit;
    font-size: 100%;
    padding: 0;
}

.highlight {
    background-color: $grey-3;
    border-radius: 3px;
    line-height: 1.4;
    margin: 0 0 1rem;
    padding: 1rem;

    pre {
        margin-bottom: 0;
        overflow-x: auto;
    }

    .lineno {
        color: $default-tint;
        display: inline-block;
        padding: 0 .75rem 0 .25rem;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
    }
}