blob: 4ae82a5189f08045a3d0677d2edb0a168299be9e (
plain)
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
|
@use "./variables" as *;
@use "./alert";
body {
font-family: $mainFontStack;
line-height: 1.65;
color: $textColor;
}
%heading {
font-family: $titleFontStack;
margin-block-start: 0.75em;
margin-block-end: 0.25em;
}
h1 {
@extend %heading;
font-size: 3.55rem;
line-height: 1.3;
}
h2 {
@extend %heading;
font-size: 2.75rem;
line-height: 1.55;
}
h3 {
@extend %heading;
font-size: 2rem;
line-height: 1.55;
}
h4 {
@extend %heading;
font-size: 1.25rem;
line-height: 1.55;
}
|