@elliemae/ds-basic 3.14.0-next.1 → 3.14.0-next.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,8 +1,100 @@
|
|
|
1
1
|
// Note: The URLs here don't match with filesystem due to a defect in node-sass and webpack sass loader.
|
|
2
2
|
|
|
3
|
+
// Regular font style
|
|
4
|
+
@font-face {
|
|
5
|
+
font-family: 'proxima-nova';
|
|
6
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaThin.otf') format('opentype');
|
|
7
|
+
font-weight: 100;
|
|
8
|
+
font-style: normal;
|
|
9
|
+
}
|
|
10
|
+
@font-face {
|
|
11
|
+
font-family: 'proxima-nova';
|
|
12
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaLight.otf') format('opentype');
|
|
13
|
+
font-weight: 300;
|
|
14
|
+
font-style: normal;
|
|
15
|
+
}
|
|
3
16
|
@font-face {
|
|
4
17
|
font-family: 'proxima-nova';
|
|
5
18
|
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaRegular.otf') format('opentype');
|
|
6
19
|
font-weight: normal;
|
|
7
20
|
font-style: normal;
|
|
8
21
|
}
|
|
22
|
+
@font-face {
|
|
23
|
+
font-family: 'proxima-nova';
|
|
24
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaMedium.otf') format('opentype');
|
|
25
|
+
font-weight: 500;
|
|
26
|
+
font-style: normal;
|
|
27
|
+
}
|
|
28
|
+
@font-face {
|
|
29
|
+
font-family: 'proxima-nova';
|
|
30
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaSemibold.otf') format('opentype');
|
|
31
|
+
font-weight: 600;
|
|
32
|
+
font-style: normal;
|
|
33
|
+
}
|
|
34
|
+
@font-face {
|
|
35
|
+
font-family: 'proxima-nova';
|
|
36
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaBold.otf') format('opentype');
|
|
37
|
+
font-weight: bold;
|
|
38
|
+
font-style: normal;
|
|
39
|
+
}
|
|
40
|
+
@font-face {
|
|
41
|
+
font-family: 'proxima-nova';
|
|
42
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaExtrabold.otf') format('opentype');
|
|
43
|
+
font-weight: 800;
|
|
44
|
+
font-style: normal;
|
|
45
|
+
}
|
|
46
|
+
@font-face {
|
|
47
|
+
font-family: 'proxima-nova';
|
|
48
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaBlack.otf') format('opentype');
|
|
49
|
+
font-weight: 900;
|
|
50
|
+
font-style: normal;
|
|
51
|
+
}
|
|
52
|
+
// Italic font style
|
|
53
|
+
@font-face {
|
|
54
|
+
font-family: 'proxima-nova';
|
|
55
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaThinItalic.otf') format('opentype');
|
|
56
|
+
font-weight: 100;
|
|
57
|
+
font-style: italic;
|
|
58
|
+
}
|
|
59
|
+
@font-face {
|
|
60
|
+
font-family: 'proxima-nova';
|
|
61
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaLightItalic.otf') format('opentype');
|
|
62
|
+
font-weight: 300;
|
|
63
|
+
font-style: italic;
|
|
64
|
+
}
|
|
65
|
+
@font-face {
|
|
66
|
+
font-family: 'proxima-nova';
|
|
67
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaRegularItalic.otf') format('opentype');
|
|
68
|
+
font-weight: normal;
|
|
69
|
+
font-style: italic;
|
|
70
|
+
}
|
|
71
|
+
@font-face {
|
|
72
|
+
font-family: 'proxima-nova';
|
|
73
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaMediumItalic.otf') format('opentype');
|
|
74
|
+
font-weight: 500;
|
|
75
|
+
font-style: italic;
|
|
76
|
+
}
|
|
77
|
+
@font-face {
|
|
78
|
+
font-family: 'proxima-nova';
|
|
79
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaSemiboldItalic.otf') format('opentype');
|
|
80
|
+
font-weight: 600;
|
|
81
|
+
font-style: italic;
|
|
82
|
+
}
|
|
83
|
+
@font-face {
|
|
84
|
+
font-family: 'proxima-nova';
|
|
85
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaBoldItalic.otf') format('opentype');
|
|
86
|
+
font-weight: bold;
|
|
87
|
+
font-style: italic;
|
|
88
|
+
}
|
|
89
|
+
@font-face {
|
|
90
|
+
font-family: 'proxima-nova';
|
|
91
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaExtraboldItalic.otf') format('opentype');
|
|
92
|
+
font-weight: 800;
|
|
93
|
+
font-style: italic;
|
|
94
|
+
}
|
|
95
|
+
@font-face {
|
|
96
|
+
font-family: 'proxima-nova';
|
|
97
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaBlackItalic.otf') format('opentype');
|
|
98
|
+
font-weight: 900;
|
|
99
|
+
font-style: italic;
|
|
100
|
+
}
|
|
@@ -1,8 +1,100 @@
|
|
|
1
1
|
// Note: The URLs here don't match with filesystem due to a defect in node-sass and webpack sass loader.
|
|
2
2
|
|
|
3
|
+
// Regular font style
|
|
4
|
+
@font-face {
|
|
5
|
+
font-family: 'proxima-nova';
|
|
6
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaThin.otf') format('opentype');
|
|
7
|
+
font-weight: 100;
|
|
8
|
+
font-style: normal;
|
|
9
|
+
}
|
|
10
|
+
@font-face {
|
|
11
|
+
font-family: 'proxima-nova';
|
|
12
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaLight.otf') format('opentype');
|
|
13
|
+
font-weight: 300;
|
|
14
|
+
font-style: normal;
|
|
15
|
+
}
|
|
3
16
|
@font-face {
|
|
4
17
|
font-family: 'proxima-nova';
|
|
5
18
|
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaRegular.otf') format('opentype');
|
|
6
19
|
font-weight: normal;
|
|
7
20
|
font-style: normal;
|
|
8
21
|
}
|
|
22
|
+
@font-face {
|
|
23
|
+
font-family: 'proxima-nova';
|
|
24
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaMedium.otf') format('opentype');
|
|
25
|
+
font-weight: 500;
|
|
26
|
+
font-style: normal;
|
|
27
|
+
}
|
|
28
|
+
@font-face {
|
|
29
|
+
font-family: 'proxima-nova';
|
|
30
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaSemibold.otf') format('opentype');
|
|
31
|
+
font-weight: 600;
|
|
32
|
+
font-style: normal;
|
|
33
|
+
}
|
|
34
|
+
@font-face {
|
|
35
|
+
font-family: 'proxima-nova';
|
|
36
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaBold.otf') format('opentype');
|
|
37
|
+
font-weight: bold;
|
|
38
|
+
font-style: normal;
|
|
39
|
+
}
|
|
40
|
+
@font-face {
|
|
41
|
+
font-family: 'proxima-nova';
|
|
42
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaExtrabold.otf') format('opentype');
|
|
43
|
+
font-weight: 800;
|
|
44
|
+
font-style: normal;
|
|
45
|
+
}
|
|
46
|
+
@font-face {
|
|
47
|
+
font-family: 'proxima-nova';
|
|
48
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaBlack.otf') format('opentype');
|
|
49
|
+
font-weight: 900;
|
|
50
|
+
font-style: normal;
|
|
51
|
+
}
|
|
52
|
+
// Italic font style
|
|
53
|
+
@font-face {
|
|
54
|
+
font-family: 'proxima-nova';
|
|
55
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaThinItalic.otf') format('opentype');
|
|
56
|
+
font-weight: 100;
|
|
57
|
+
font-style: italic;
|
|
58
|
+
}
|
|
59
|
+
@font-face {
|
|
60
|
+
font-family: 'proxima-nova';
|
|
61
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaLightItalic.otf') format('opentype');
|
|
62
|
+
font-weight: 300;
|
|
63
|
+
font-style: italic;
|
|
64
|
+
}
|
|
65
|
+
@font-face {
|
|
66
|
+
font-family: 'proxima-nova';
|
|
67
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaRegularItalic.otf') format('opentype');
|
|
68
|
+
font-weight: normal;
|
|
69
|
+
font-style: italic;
|
|
70
|
+
}
|
|
71
|
+
@font-face {
|
|
72
|
+
font-family: 'proxima-nova';
|
|
73
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaMediumItalic.otf') format('opentype');
|
|
74
|
+
font-weight: 500;
|
|
75
|
+
font-style: italic;
|
|
76
|
+
}
|
|
77
|
+
@font-face {
|
|
78
|
+
font-family: 'proxima-nova';
|
|
79
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaSemiboldItalic.otf') format('opentype');
|
|
80
|
+
font-weight: 600;
|
|
81
|
+
font-style: italic;
|
|
82
|
+
}
|
|
83
|
+
@font-face {
|
|
84
|
+
font-family: 'proxima-nova';
|
|
85
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaBoldItalic.otf') format('opentype');
|
|
86
|
+
font-weight: bold;
|
|
87
|
+
font-style: italic;
|
|
88
|
+
}
|
|
89
|
+
@font-face {
|
|
90
|
+
font-family: 'proxima-nova';
|
|
91
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaExtraboldItalic.otf') format('opentype');
|
|
92
|
+
font-weight: 800;
|
|
93
|
+
font-style: italic;
|
|
94
|
+
}
|
|
95
|
+
@font-face {
|
|
96
|
+
font-family: 'proxima-nova';
|
|
97
|
+
src: url('~@elliemae/ds-basic/styles/base/fonts/ProximaNovaBlackItalic.otf') format('opentype');
|
|
98
|
+
font-weight: 900;
|
|
99
|
+
font-style: italic;
|
|
100
|
+
}
|