summaryrefslogtreecommitdiffstats
path: root/assets/css/scopes/_body.scss
blob: ededaad2bfaaabd2330a7cbe4ff68e8074ebdb51 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
@include namespace('body') {
    @include store((
        --colors: (
            --meta: prop(--colors --fg-hi, $global: true),
            --code: (
                --fg: prop(--colors --accent --strong, $global: true),
                --bg: prop(--colors --bg-hi, $global: true),
            ),
            --obj-border: prop(--colors --obj, $global: true),
        )
    ));

    @include store((
        --colors: (
            --code: (
                --bg: prop(--colors --accent --faint, $global: true),
            ),
            --obj-border: prop(--colors --obj-hi, $global: true),
        )
    ), 'light');

    @include scope(namespace()) {
        font-size: 1 / 16 * 19em;

        @include element('meta') {
            color:     prop(--colors --meta);
            font-size: 1 / 16 * 15rem;

            + h1 {
                margin-top: $line-height * .5rem;
            }
        }

        img {
            max-width: 100%;
        }

        code {
            padding:          .1em .3em;
            border-radius:    3px;
            background-color: prop(--colors --code --bg);
            color:            prop(--colors --code --fg);
        }

        blockquote,
        pre {
            margin:       ($line-height * 1rem) 0 0 1px;
            padding-left: calc(#{prop(--dims --indent, $global: true)} - 3px);
            border-left:  3px solid prop(--colors --obj-border);
        }

        pre code {
            padding:          0;
            border-radius:    0;
            background-color: transparent;
            color:            currentColor;
        }

        @include media('<=sm') {
            font-size: 1 / 16 * 17em;
        }

        @include media('<=xs') {
            font-size: 1em;
        }
    }
}