summaryrefslogtreecommitdiffstats
path: root/assets/css/scopes/_body.scss
blob: b4d0a3c499f3ce73754848ccebc0d99422556081 (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
@include namespace('body') {
    @include store((
        --colors: (
            --emph: (
                --fg: prop(--colors --accent --color, $global: true),
                --bg: prop(--colors --bg-hi, $global: true),
            ),
            --meta: (
                --fg: prop(--colors --fg-hi, $global: true),
            )
        )
    ));

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

        > :first-child {
            margin-top: 0;
        }

        :link {
            color: prop(--colors --link --idle-body, $global: true);
        }

        :visited {
            color: prop(--colors --link --visited-body, $global: true);
        }

        h1,
        h2,
        h3,
        h4 {
            transform: translateX(-.06em);
        }

        h1 {
            @include iro-responsive-modular-scale(font-size, 3, $responsive-mod-scale);
        }

        h2 {
            @include iro-responsive-modular-scale(font-size, 2, $responsive-mod-scale);
        }

        h3 {
            @include iro-responsive-modular-scale(font-size, 1, $responsive-mod-scale);

            letter-spacing: .05em;
            text-transform: uppercase;
        }

        h4,
        h5,
        h6 {
            @include iro-responsive-modular-scale(font-size, 0, $responsive-mod-scale);

            letter-spacing: .1em;
            text-transform: uppercase;
        }

        h5,
        h6 {
            color:       currentColor;
            font-weight: 400;
        }

        @include element('title-inner') {
            background-image: linear-gradient(
                to top,
                transparent .15em,
                #{prop(--colors --emph --bg)} .15em,
                #{prop(--colors --emph --bg)} .6em,
                transparent .6em
            );
        }

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

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

        img {
            max-width: 100%;
        }

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

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