ca-components 1.0.32 → 1.0.34

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.
@@ -0,0 +1,2 @@
1
+ $font-family: "Montserrat", sans-serif;
2
+ $font-family-2: "WebComponentsIcons", sans-serif;
@@ -0,0 +1,36 @@
1
+ // THIN
2
+ .ca-font-thin {
3
+ font-weight: 100 !important;
4
+ }
5
+ // EXTRA LIGHT
6
+ .ca-font-extra-light {
7
+ font-weight: 200 !important;
8
+ }
9
+ // LIGHT
10
+ .ca-font-light {
11
+ font-weight: 300 !important;
12
+ }
13
+ // REGULAR
14
+ .ca-font-regular {
15
+ font-weight: 400 !important;
16
+ }
17
+ // MEDIUM
18
+ .ca-font-medium {
19
+ font-weight: 500 !important;
20
+ }
21
+ // SEMI-BOLD
22
+ .ca-font-semi-bold {
23
+ font-weight: 600 !important;
24
+ }
25
+ // BOLD
26
+ .ca-font-bold {
27
+ font-weight: 700 !important;
28
+ }
29
+ // EXTRA-BOLD
30
+ .ca-font-extra-bold {
31
+ font-weight: 800 !important;
32
+ }
33
+ // BLACK
34
+ .ca-font-black {
35
+ font-weight: 900 !important;
36
+ }