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
|
@include namespace('body') {
@include store((
--colors: (
--meta: (
--fg: prop(--colors --fg-hi, $global: true),
--bg: prop(--colors --bg-lo, $global: true),
),
--code: (
--fg: prop(--colors --accent --strong, $global: true),
--bg: prop(--colors --bg-hi, $global: true),
),
--obj-border: prop(--colors --obj, $global: true),
),
--dims: (
--meta: (
--pad-x: .6em,
--pad-y: .2em
)
)
));
@include store((
--colors: (
--meta: (
--bg: prop(--colors --bg, $global: true),
),
--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') {
display: inline-block;
padding: prop(--dims --meta --pad-y) prop(--dims --meta --pad-x);
background-color: prop(--colors --meta --bg);
color: prop(--colors --meta --fg);
font-size: 1 / 16 * 14rem;
+ 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;
}
}
}
|