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
// /**
// * Copyright © Magento, Inc. All rights reserved.
// * See COPYING.txt for license details.
// */
// Fonts
.lib-font-face(
@family-name: @icons__font-name,
@font-path: @icons__font-path,
@font-weight: normal,
@font-style: normal
);
.lib-font-face(
@family-name: 'MUI-Icons',
@font-path: '@{baseDir}fonts/MUI-Icons/MUI-Icons',
@font-weight: 300,
@font-style: normal
);
.lib-font-face(
@family-name: @font-family-name__base,
@font-path: '@{baseDir}fonts/opensans/light/opensans-300',
@font-weight: 300,
@font-style: normal
);
.lib-font-face(
@family-name: @font-family-name__base,
@font-path: '@{baseDir}fonts/opensans/regular/opensans-400',
@font-weight: 400,
@font-style: normal
);
.lib-font-face(
@family-name: @font-family-name__base,
@font-path: '@{baseDir}fonts/opensans/semibold/opensans-600',
@font-weight: 600,
@font-style: normal
);
.lib-font-face(
@family-name: @font-family-name__base,
@font-path: '@{baseDir}fonts/opensans/bold/opensans-700',
@font-weight: 700,
@font-style: normal
);
// Headings
h1 {
color: @h1color;
font: @h1font;
}
h2 {
color: @h2color;
font: @h2font;
}
h3 {
color: @h3color;
font: @h3font;
}
h4 {
color: @h4color;
font: @h4font;
}
h5 {
color: @h5color;
font: @h5font;
}
h6 {
color: @h6color;
font: @h6font;
}
// Links
a {
display: inline;
}