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
|
@use 'iro-sass/src/index' as iro;
@use '../functions' as fn;
@use '../mixins' as mx;
@include iro.props-namespace('headings') {
@include iro.bem-scope(iro.props-namespace()) {
h1,
h2,
h3,
h4,
h5,
h6 {
@include mx.set-font(--headline);
display: block;
transform: translateX(-.06em);
letter-spacing: normal;
text-transform: none;
}
h1 {
color: fn.foreign-color(--heading, --strong);
font-size: fn.global-dim(--font-size --900);
}
h2 {
color: fn.foreign-color(--heading, --strong);
font-size: fn.global-dim(--font-size --600);
}
h3 {
color: fn.foreign-color(--heading, --strong);
font-size: fn.global-dim(--font-size --300);
}
h4 {
color: fn.foreign-color(--heading, --strong);
font-size: fn.global-dim(--font-size --150);
}
h5 {
@include mx.set-font(--standard, (
--line-height: null,
--size: fn.global-dim(--font-size --75),
--weight: bold,
--transform: uppercase,
--spacing: 1px
));
transform: none;
color: fn.foreign-color(--heading, --strong);
}
h6 {
@include mx.set-font(--standard, (
--line-height: null,
--size: fn.global-dim(--font-size --50),
--weight: 500,
--transform: uppercase,
--spacing: 1px
));
transform: none;
color: fn.foreign-color(--heading, --light);
}
@include iro.bem-elem('primary') {
background-image: linear-gradient(
to top,
transparent .15em,
fn.foreign-color(--heading, --bg) .15em,
fn.foreign-color(--heading, --bg) .6em,
transparent .6em
);
}
}
}
|