summaryrefslogtreecommitdiffstats
path: root/assets/css/_base.scss
blob: f06dc4a737723861bd439f1b3b77b8a9f946affb (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
@use 'iro-sass/src/index' as iro;
@use 'iro-design/src/functions' as fn;

html,
pre,
code {
    font-feature-settings: 'calt' 0, 'dlig' 1, 'ss09' 1;
}

body {
    box-sizing: border-box;
    height:     auto;
    min-height: 100%;

    @media print {
        background-color: fn.color(--bg-hi2);
    }
}

main {
    font-size: fn.dim(--font-size --150);
}

img {
    display:   block;
    max-width: 100%;
}