@apipass/buttons 0.2.16 → 1.0.1

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.
Files changed (43) hide show
  1. package/assets/css/buttons.scss +127 -118
  2. package/assets/css/colors.scss +34 -34
  3. package/assets/css/fonts.scss +24 -24
  4. package/assets/css/pt_sans.scss +143 -143
  5. package/assets/css/spacing.scss +28 -28
  6. package/assets/css/texts.scss +18 -18
  7. package/buttons.module.d.ts +16 -15
  8. package/default-button/default-button.component.d.ts +15 -15
  9. package/{esm2015/apipass-buttons.js → esm2020/apipass-buttons.mjs} +4 -4
  10. package/esm2020/buttons.module.mjs +62 -0
  11. package/esm2020/default-button/default-button.component.mjs +50 -0
  12. package/esm2020/outline-button/outline-button.component.mjs +40 -0
  13. package/esm2020/primary-button/primary-button.component.mjs +40 -0
  14. package/{esm2015/public-api.js → esm2020/public-api.mjs} +7 -7
  15. package/esm2020/secondary-button/secondary-button.component.mjs +40 -0
  16. package/esm2020/tab-button/tab-button.component.mjs +50 -0
  17. package/esm2020/tertiary-button/tertiary-button.component.mjs +40 -0
  18. package/fesm2015/apipass-buttons.mjs +304 -0
  19. package/fesm2015/apipass-buttons.mjs.map +1 -0
  20. package/fesm2020/apipass-buttons.mjs +304 -0
  21. package/fesm2020/apipass-buttons.mjs.map +1 -0
  22. package/{apipass-buttons.d.ts → index.d.ts} +5 -5
  23. package/outline-button/outline-button.component.d.ts +14 -14
  24. package/package.json +29 -19
  25. package/primary-button/primary-button.component.d.ts +14 -14
  26. package/public-api.d.ts +7 -7
  27. package/secondary-button/secondary-button.component.d.ts +14 -14
  28. package/tab-button/tab-button.component.d.ts +15 -15
  29. package/tertiary-button/tertiary-button.component.d.ts +14 -14
  30. package/assets/css/inputs.scss +0 -197
  31. package/bundles/apipass-buttons.umd.js +0 -597
  32. package/bundles/apipass-buttons.umd.js.map +0 -1
  33. package/bundles/apipass-buttons.umd.min.js +0 -2
  34. package/bundles/apipass-buttons.umd.min.js.map +0 -1
  35. package/esm2015/buttons.module.js +0 -64
  36. package/esm2015/default-button/default-button.component.js +0 -131
  37. package/esm2015/outline-button/outline-button.component.js +0 -51
  38. package/esm2015/primary-button/primary-button.component.js +0 -51
  39. package/esm2015/secondary-button/secondary-button.component.js +0 -51
  40. package/esm2015/tab-button/tab-button.component.js +0 -131
  41. package/esm2015/tertiary-button/tertiary-button.component.js +0 -51
  42. package/fesm2015/apipass-buttons.js +0 -508
  43. package/fesm2015/apipass-buttons.js.map +0 -1
@@ -1,118 +1,127 @@
1
- @import "colors";
2
- @import "fonts";
3
- @import "spacing";
4
-
5
- /* Buttons */
6
- .apipass-tab-button {
7
- display: flex !important;
8
- justify-content: center !important;
9
- align-items: center !important;
10
- padding: $spacing-tab-button-top $spacing-tab-button-right $spacing-tab-button-bottom $spacing-tab-button-left !important;
11
- font-weight: bold;
12
- font-size: $base-font-size - 2px;
13
- border-radius: 6px 6px 0 0 !important;
14
- .mat-button-wrapper, .mat-icon, .button-text {
15
- display: flex;
16
- justify-content: center;
17
- align-items: center;
18
- }
19
- .apipass-btn-icon-text {
20
- padding-right: 10px;
21
- }
22
- .apipass-btn-icon-text-suffix {
23
- padding-left: 10px;
24
- }
25
- }
26
-
27
- .apipass-btn-default {
28
- display: flex !important;
29
- justify-content: center !important;
30
- align-items: center !important;
31
- padding: 0 $spacing-button-right 0 $spacing-button-left !important;
32
- font-weight: bold;
33
- border-radius: 6px !important;
34
- .mat-button-wrapper, .mat-icon, .button-text {
35
- display: flex;
36
- justify-content: center;
37
- align-items: center;
38
- }
39
- .apipass-btn-icon-text {
40
- padding-right: 10px;
41
- }
42
- .apipass-btn-icon-text-suffix {
43
- padding-left: 10px;
44
- }
45
- }
46
-
47
- .apipass-btn-primary {
48
- background: var(--color-primary);
49
- color: #FFF;
50
- &:hover, .hover {
51
- background: var(--color-primary-hover);
52
- }
53
- &:active, .active {
54
- background: var(--color-primary-active);
55
- }
56
- &:disabled, .disabled {
57
- background: var(--color-tertiary);
58
- color: var(--color-fonts-tertiary);
59
- border: 1px px solid var(--color-tertiary-hover);
60
- cursor: no-drop !important;
61
- }
62
- }
63
-
64
- .apipass-btn-secondary {
65
- background: var(--color-secondary);
66
- color: var(--color-primary);
67
- &:hover, .hover {
68
- background: var(--color-secondary-hover);
69
- }
70
- &:active, .active {
71
- background: var(--color-secondary-active);
72
- }
73
- &:disabled, .disabled {
74
- background: var(--color-tertiary);
75
- color: var(--color-fonts-tertiary);
76
- border: 1px px solid var(--color-tertiary-hover);
77
- cursor: no-drop !important;
78
- }
79
- }
80
-
81
- .apipass-btn-tertiary {
82
- background: var(--color-tertiary);
83
- color: var(--color-primary);
84
- padding: 15px !important;
85
- border: 1px solid var(--color-tertiary-hover);
86
- &:hover, .hover {
87
- background: var(--color-tertiary-hover);
88
- }
89
- &:active, .active {
90
- background: var(--color-tertiary-active);
91
- }
92
- &:disabled, .disabled {
93
- background: var(--color-tertiary);
94
- color: var(--color-fonts-tertiary);
95
- border: 1px px solid var(--color-tertiary-hover);
96
- cursor: no-drop !important;
97
- }
98
- }
99
-
100
- .apipass-btn-outline {
101
- color: var(--color-fonts-tertiary);
102
- &.remove-button {
103
- color: var(--color-red);
104
- }
105
- &:hover, .hover {
106
- background: var(--color-tertiary-hover);
107
- }
108
- &:active, .active {
109
- background: var(--color-tertiary-active);
110
- }
111
- &:disabled, .disabled {
112
- background: var(--color-tertiary);
113
- color: var(--color-fonts-tertiary);
114
- border: 1px px solid var(--color-tertiary-hover);
115
- cursor: no-drop !important;
116
- }
117
- }
118
-
1
+ @import "colors";
2
+ @import "fonts";
3
+ @import "spacing";
4
+
5
+ /* Buttons */
6
+ .mdc-icon-button {
7
+ font-size: inherit !important;
8
+ width: auto !important;
9
+ height: auto !important;
10
+ }
11
+
12
+ .mat-mdc-icon-button .mat-mdc-button-persistent-ripple {
13
+ border-radius: inherit !important;
14
+ }
15
+
16
+ .apipass-tab-button {
17
+ display: flex !important;
18
+ justify-content: center !important;
19
+ align-items: center !important;
20
+ padding: $spacing-tab-button-top $spacing-tab-button-right $spacing-tab-button-bottom $spacing-tab-button-left !important;
21
+ font-weight: bold;
22
+ font-size: $base-font-size - 2px;
23
+ border-radius: 6px 6px 0 0 !important;
24
+ .mat-button-wrapper, .mat-icon, .button-text {
25
+ display: flex;
26
+ justify-content: center;
27
+ align-items: center;
28
+ }
29
+ .apipass-btn-icon-text {
30
+ padding-right: 10px;
31
+ }
32
+ .apipass-btn-icon-text-suffix {
33
+ padding-left: 10px;
34
+ }
35
+ }
36
+
37
+ .apipass-btn-default {
38
+ display: flex !important;
39
+ justify-content: center !important;
40
+ align-items: center !important;
41
+ padding: 10px 15px !important;
42
+ font-weight: bold;
43
+ border-radius: 6px !important;
44
+ .mat-button-wrapper, .mat-icon, .button-text {
45
+ display: flex;
46
+ justify-content: center;
47
+ align-items: center;
48
+ }
49
+ .apipass-btn-icon-text {
50
+ padding-right: 10px;
51
+ }
52
+ .apipass-btn-icon-text-suffix {
53
+ padding-left: 10px;
54
+ }
55
+ }
56
+
57
+ .apipass-btn-primary {
58
+ background: var(--color-primary);
59
+ color: #FFF;
60
+ &:hover, .hover {
61
+ background: var(--color-primary-hover);
62
+ }
63
+ &:active, .active {
64
+ background: var(--color-primary-active);
65
+ }
66
+ &:disabled, .disabled {
67
+ background: var(--color-tertiary);
68
+ color: var(--color-fonts-tertiary);
69
+ border: 1px px solid var(--color-tertiary-hover);
70
+ cursor: no-drop !important;
71
+ }
72
+ }
73
+
74
+ .apipass-btn-secondary {
75
+ background: var(--color-secondary);
76
+ color: var(--color-primary);
77
+ &:hover, .hover {
78
+ background: var(--color-secondary-hover);
79
+ }
80
+ &:active, .active {
81
+ background: var(--color-secondary-active);
82
+ }
83
+ &:disabled, .disabled {
84
+ background: var(--color-tertiary);
85
+ color: var(--color-fonts-tertiary);
86
+ border: 1px px solid var(--color-tertiary-hover);
87
+ cursor: no-drop !important;
88
+ }
89
+ }
90
+
91
+ .apipass-btn-tertiary {
92
+ background: var(--color-tertiary);
93
+ color: var(--color-primary);
94
+ border: 1px solid var(--color-tertiary-hover);
95
+ &:hover, .hover {
96
+ background: var(--color-tertiary-hover);
97
+ }
98
+ &:active, .active {
99
+ background: var(--color-tertiary-active);
100
+ }
101
+ &:disabled, .disabled {
102
+ background: var(--color-tertiary);
103
+ color: var(--color-fonts-tertiary);
104
+ border: 1px px solid var(--color-tertiary-hover);
105
+ cursor: no-drop !important;
106
+ }
107
+ }
108
+
109
+ .apipass-btn-outline {
110
+ color: var(--color-fonts-tertiary);
111
+ &.remove-button {
112
+ color: var(--color-red);
113
+ }
114
+ &:hover, .hover {
115
+ background: var(--color-tertiary-hover);
116
+ }
117
+ &:active, .active {
118
+ background: var(--color-tertiary-active);
119
+ }
120
+ &:disabled, .disabled {
121
+ background: var(--color-tertiary);
122
+ color: var(--color-fonts-tertiary);
123
+ border: 1px px solid var(--color-tertiary-hover);
124
+ cursor: no-drop !important;
125
+ }
126
+ }
127
+
@@ -1,34 +1,34 @@
1
- :root {
2
- --color-primary: #222D57;
3
- --color-primary-hover: #18203D;
4
- --color-primary-active: #29376A;
5
-
6
- --color-secondary: #D3D921;
7
- --color-secondary-hover: #B3B81C;
8
- --color-secondary-active: #DCE13F;
9
-
10
- --color-tertiary: #EFEFEF;
11
- --color-tertiary-hover: #CBCBCB;
12
- --color-tertiary-active: #F1F1F1;
13
-
14
- --color-fonts-tertiary: #777777;
15
-
16
-
17
-
18
-
19
- // Defaults
20
- --color-body-light: #FFF;
21
- --color-red: rgb(255, 0, 0);
22
- --limit-plan-color: #ff6c00;
23
- --color_disabled: #E0E0E0;
24
- --color_components_light: #FFF;
25
- --color-inputs-border: #DDD;
26
- --color-inputs-background: #FFF;
27
- --color_icon_remove: var(--color-red);
28
- --color_icon_success: #070;
29
- --color_graph_primary: #1643EF;
30
- --color_graph_primary_hover: #0A2692;
31
- --color_graph_error: #EB5757;
32
- --color_graph_error_hover: #C91717;
33
-
34
- }
1
+ :root {
2
+ --color-primary: #222D57;
3
+ --color-primary-hover: #18203D;
4
+ --color-primary-active: #29376A;
5
+
6
+ --color-secondary: #D3D921;
7
+ --color-secondary-hover: #B3B81C;
8
+ --color-secondary-active: #DCE13F;
9
+
10
+ --color-tertiary: #EFEFEF;
11
+ --color-tertiary-hover: #CBCBCB;
12
+ --color-tertiary-active: #F1F1F1;
13
+
14
+ --color-fonts-tertiary: #777777;
15
+
16
+
17
+
18
+
19
+ // Defaults
20
+ --color-body-light: #FFF;
21
+ --color-red: rgb(255, 0, 0);
22
+ --limit-plan-color: #ff6c00;
23
+ --color_disabled: #E0E0E0;
24
+ --color_components_light: #FFF;
25
+ --color-inputs-border: #DDD;
26
+ --color-inputs-background: #FFF;
27
+ --color_icon_remove: var(--color-red);
28
+ --color_icon_success: #070;
29
+ --color_graph_primary: #1643EF;
30
+ --color_graph_primary_hover: #0A2692;
31
+ --color_graph_error: #EB5757;
32
+ --color_graph_error_hover: #C91717;
33
+
34
+ }
@@ -1,24 +1,24 @@
1
- $base-font-size: 14px;
2
- $base-input-font-size: $base-font-size;
3
-
4
- @import "pt_sans";
5
-
6
- .text-primary {
7
- color: var(--color-primary) !important;
8
- }
9
-
10
- .text-secondary {
11
- color: var(--color-secondary) !important;
12
- }
13
-
14
- .text-tertiary {
15
- color: var(--color-fonts-tertiary) !important;
16
- }
17
-
18
- .text-weight-bold {
19
- font-weight: bold !important;
20
- }
21
-
22
- .text-weight-normal {
23
- font-weight: normal !important;
24
- }
1
+ $base-font-size: 14px;
2
+ $base-input-font-size: $base-font-size;
3
+
4
+ @import "pt_sans";
5
+
6
+ .text-primary {
7
+ color: var(--color-primary) !important;
8
+ }
9
+
10
+ .text-secondary {
11
+ color: var(--color-secondary) !important;
12
+ }
13
+
14
+ .text-tertiary {
15
+ color: var(--color-fonts-tertiary) !important;
16
+ }
17
+
18
+ .text-weight-bold {
19
+ font-weight: bold !important;
20
+ }
21
+
22
+ .text-weight-normal {
23
+ font-weight: normal !important;
24
+ }
@@ -1,144 +1,144 @@
1
- /* cyrillic-ext */
2
- @font-face {
3
- font-family: 'PT Sans';
4
- font-style: italic;
5
- font-weight: 400;
6
- font-display: swap;
7
- src: local('PT Sans Italic'), local('PTSans-Italic'), url(https://fonts.gstatic.com/s/ptsans/v11/jizYRExUiTo99u79D0e0ysmIEDQ.woff2) format('woff2');
8
- unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
9
- }
10
- /* cyrillic */
11
- @font-face {
12
- font-family: 'PT Sans';
13
- font-style: italic;
14
- font-weight: 400;
15
- font-display: swap;
16
- src: local('PT Sans Italic'), local('PTSans-Italic'), url(https://fonts.gstatic.com/s/ptsans/v11/jizYRExUiTo99u79D0e0w8mIEDQ.woff2) format('woff2');
17
- unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
18
- }
19
- /* latin-ext */
20
- @font-face {
21
- font-family: 'PT Sans';
22
- font-style: italic;
23
- font-weight: 400;
24
- font-display: swap;
25
- src: local('PT Sans Italic'), local('PTSans-Italic'), url(https://fonts.gstatic.com/s/ptsans/v11/jizYRExUiTo99u79D0e0ycmIEDQ.woff2) format('woff2');
26
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
27
- }
28
- /* latin */
29
- @font-face {
30
- font-family: 'PT Sans';
31
- font-style: italic;
32
- font-weight: 400;
33
- font-display: swap;
34
- src: local('PT Sans Italic'), local('PTSans-Italic'), url(https://fonts.gstatic.com/s/ptsans/v11/jizYRExUiTo99u79D0e0x8mI.woff2) format('woff2');
35
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
36
- }
37
- /* cyrillic-ext */
38
- @font-face {
39
- font-family: 'PT Sans';
40
- font-style: italic;
41
- font-weight: 700;
42
- font-display: swap;
43
- src: local('PT Sans Bold Italic'), local('PTSans-BoldItalic'), url(https://fonts.gstatic.com/s/ptsans/v11/jizdRExUiTo99u79D0e8fOydIhUdwzM.woff2) format('woff2');
44
- unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
45
- }
46
- /* cyrillic */
47
- @font-face {
48
- font-family: 'PT Sans';
49
- font-style: italic;
50
- font-weight: 700;
51
- font-display: swap;
52
- src: local('PT Sans Bold Italic'), local('PTSans-BoldItalic'), url(https://fonts.gstatic.com/s/ptsans/v11/jizdRExUiTo99u79D0e8fOydKxUdwzM.woff2) format('woff2');
53
- unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
54
- }
55
- /* latin-ext */
56
- @font-face {
57
- font-family: 'PT Sans';
58
- font-style: italic;
59
- font-weight: 700;
60
- font-display: swap;
61
- src: local('PT Sans Bold Italic'), local('PTSans-BoldItalic'), url(https://fonts.gstatic.com/s/ptsans/v11/jizdRExUiTo99u79D0e8fOydIRUdwzM.woff2) format('woff2');
62
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
63
- }
64
- /* latin */
65
- @font-face {
66
- font-family: 'PT Sans';
67
- font-style: italic;
68
- font-weight: 700;
69
- font-display: swap;
70
- src: local('PT Sans Bold Italic'), local('PTSans-BoldItalic'), url(https://fonts.gstatic.com/s/ptsans/v11/jizdRExUiTo99u79D0e8fOydLxUd.woff2) format('woff2');
71
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
72
- }
73
- /* cyrillic-ext */
74
- @font-face {
75
- font-family: 'PT Sans';
76
- font-style: normal;
77
- font-weight: 400;
78
- font-display: swap;
79
- src: local('PT Sans'), local('PTSans-Regular'), url(https://fonts.gstatic.com/s/ptsans/v11/jizaRExUiTo99u79D0-ExdGM.woff2) format('woff2');
80
- unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
81
- }
82
- /* cyrillic */
83
- @font-face {
84
- font-family: 'PT Sans';
85
- font-style: normal;
86
- font-weight: 400;
87
- font-display: swap;
88
- src: local('PT Sans'), local('PTSans-Regular'), url(https://fonts.gstatic.com/s/ptsans/v11/jizaRExUiTo99u79D0aExdGM.woff2) format('woff2');
89
- unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
90
- }
91
- /* latin-ext */
92
- @font-face {
93
- font-family: 'PT Sans';
94
- font-style: normal;
95
- font-weight: 400;
96
- font-display: swap;
97
- src: local('PT Sans'), local('PTSans-Regular'), url(https://fonts.gstatic.com/s/ptsans/v11/jizaRExUiTo99u79D0yExdGM.woff2) format('woff2');
98
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
99
- }
100
- /* latin */
101
- @font-face {
102
- font-family: 'PT Sans';
103
- font-style: normal;
104
- font-weight: 400;
105
- font-display: swap;
106
- src: local('PT Sans'), local('PTSans-Regular'), url(https://fonts.gstatic.com/s/ptsans/v11/jizaRExUiTo99u79D0KExQ.woff2) format('woff2');
107
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
108
- }
109
- /* cyrillic-ext */
110
- @font-face {
111
- font-family: 'PT Sans';
112
- font-style: normal;
113
- font-weight: 700;
114
- font-display: swap;
115
- src: local('PT Sans Bold'), local('PTSans-Bold'), url(https://fonts.gstatic.com/s/ptsans/v11/jizfRExUiTo99u79B_mh0OOtLQ0Z.woff2) format('woff2');
116
- unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
117
- }
118
- /* cyrillic */
119
- @font-face {
120
- font-family: 'PT Sans';
121
- font-style: normal;
122
- font-weight: 700;
123
- font-display: swap;
124
- src: local('PT Sans Bold'), local('PTSans-Bold'), url(https://fonts.gstatic.com/s/ptsans/v11/jizfRExUiTo99u79B_mh0OqtLQ0Z.woff2) format('woff2');
125
- unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
126
- }
127
- /* latin-ext */
128
- @font-face {
129
- font-family: 'PT Sans';
130
- font-style: normal;
131
- font-weight: 700;
132
- font-display: swap;
133
- src: local('PT Sans Bold'), local('PTSans-Bold'), url(https://fonts.gstatic.com/s/ptsans/v11/jizfRExUiTo99u79B_mh0OCtLQ0Z.woff2) format('woff2');
134
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
135
- }
136
- /* latin */
137
- @font-face {
138
- font-family: 'PT Sans';
139
- font-style: normal;
140
- font-weight: 700;
141
- font-display: swap;
142
- src: local('PT Sans Bold'), local('PTSans-Bold'), url(https://fonts.gstatic.com/s/ptsans/v11/jizfRExUiTo99u79B_mh0O6tLQ.woff2) format('woff2');
143
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
1
+ /* cyrillic-ext */
2
+ @font-face {
3
+ font-family: 'PT Sans';
4
+ font-style: italic;
5
+ font-weight: 400;
6
+ font-display: swap;
7
+ src: local('PT Sans Italic'), local('PTSans-Italic'), url(https://fonts.gstatic.com/s/ptsans/v11/jizYRExUiTo99u79D0e0ysmIEDQ.woff2) format('woff2');
8
+ unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
9
+ }
10
+ /* cyrillic */
11
+ @font-face {
12
+ font-family: 'PT Sans';
13
+ font-style: italic;
14
+ font-weight: 400;
15
+ font-display: swap;
16
+ src: local('PT Sans Italic'), local('PTSans-Italic'), url(https://fonts.gstatic.com/s/ptsans/v11/jizYRExUiTo99u79D0e0w8mIEDQ.woff2) format('woff2');
17
+ unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
18
+ }
19
+ /* latin-ext */
20
+ @font-face {
21
+ font-family: 'PT Sans';
22
+ font-style: italic;
23
+ font-weight: 400;
24
+ font-display: swap;
25
+ src: local('PT Sans Italic'), local('PTSans-Italic'), url(https://fonts.gstatic.com/s/ptsans/v11/jizYRExUiTo99u79D0e0ycmIEDQ.woff2) format('woff2');
26
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
27
+ }
28
+ /* latin */
29
+ @font-face {
30
+ font-family: 'PT Sans';
31
+ font-style: italic;
32
+ font-weight: 400;
33
+ font-display: swap;
34
+ src: local('PT Sans Italic'), local('PTSans-Italic'), url(https://fonts.gstatic.com/s/ptsans/v11/jizYRExUiTo99u79D0e0x8mI.woff2) format('woff2');
35
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
36
+ }
37
+ /* cyrillic-ext */
38
+ @font-face {
39
+ font-family: 'PT Sans';
40
+ font-style: italic;
41
+ font-weight: 700;
42
+ font-display: swap;
43
+ src: local('PT Sans Bold Italic'), local('PTSans-BoldItalic'), url(https://fonts.gstatic.com/s/ptsans/v11/jizdRExUiTo99u79D0e8fOydIhUdwzM.woff2) format('woff2');
44
+ unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
45
+ }
46
+ /* cyrillic */
47
+ @font-face {
48
+ font-family: 'PT Sans';
49
+ font-style: italic;
50
+ font-weight: 700;
51
+ font-display: swap;
52
+ src: local('PT Sans Bold Italic'), local('PTSans-BoldItalic'), url(https://fonts.gstatic.com/s/ptsans/v11/jizdRExUiTo99u79D0e8fOydKxUdwzM.woff2) format('woff2');
53
+ unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
54
+ }
55
+ /* latin-ext */
56
+ @font-face {
57
+ font-family: 'PT Sans';
58
+ font-style: italic;
59
+ font-weight: 700;
60
+ font-display: swap;
61
+ src: local('PT Sans Bold Italic'), local('PTSans-BoldItalic'), url(https://fonts.gstatic.com/s/ptsans/v11/jizdRExUiTo99u79D0e8fOydIRUdwzM.woff2) format('woff2');
62
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
63
+ }
64
+ /* latin */
65
+ @font-face {
66
+ font-family: 'PT Sans';
67
+ font-style: italic;
68
+ font-weight: 700;
69
+ font-display: swap;
70
+ src: local('PT Sans Bold Italic'), local('PTSans-BoldItalic'), url(https://fonts.gstatic.com/s/ptsans/v11/jizdRExUiTo99u79D0e8fOydLxUd.woff2) format('woff2');
71
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
72
+ }
73
+ /* cyrillic-ext */
74
+ @font-face {
75
+ font-family: 'PT Sans';
76
+ font-style: normal;
77
+ font-weight: 400;
78
+ font-display: swap;
79
+ src: local('PT Sans'), local('PTSans-Regular'), url(https://fonts.gstatic.com/s/ptsans/v11/jizaRExUiTo99u79D0-ExdGM.woff2) format('woff2');
80
+ unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
81
+ }
82
+ /* cyrillic */
83
+ @font-face {
84
+ font-family: 'PT Sans';
85
+ font-style: normal;
86
+ font-weight: 400;
87
+ font-display: swap;
88
+ src: local('PT Sans'), local('PTSans-Regular'), url(https://fonts.gstatic.com/s/ptsans/v11/jizaRExUiTo99u79D0aExdGM.woff2) format('woff2');
89
+ unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
90
+ }
91
+ /* latin-ext */
92
+ @font-face {
93
+ font-family: 'PT Sans';
94
+ font-style: normal;
95
+ font-weight: 400;
96
+ font-display: swap;
97
+ src: local('PT Sans'), local('PTSans-Regular'), url(https://fonts.gstatic.com/s/ptsans/v11/jizaRExUiTo99u79D0yExdGM.woff2) format('woff2');
98
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
99
+ }
100
+ /* latin */
101
+ @font-face {
102
+ font-family: 'PT Sans';
103
+ font-style: normal;
104
+ font-weight: 400;
105
+ font-display: swap;
106
+ src: local('PT Sans'), local('PTSans-Regular'), url(https://fonts.gstatic.com/s/ptsans/v11/jizaRExUiTo99u79D0KExQ.woff2) format('woff2');
107
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
108
+ }
109
+ /* cyrillic-ext */
110
+ @font-face {
111
+ font-family: 'PT Sans';
112
+ font-style: normal;
113
+ font-weight: 700;
114
+ font-display: swap;
115
+ src: local('PT Sans Bold'), local('PTSans-Bold'), url(https://fonts.gstatic.com/s/ptsans/v11/jizfRExUiTo99u79B_mh0OOtLQ0Z.woff2) format('woff2');
116
+ unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
117
+ }
118
+ /* cyrillic */
119
+ @font-face {
120
+ font-family: 'PT Sans';
121
+ font-style: normal;
122
+ font-weight: 700;
123
+ font-display: swap;
124
+ src: local('PT Sans Bold'), local('PTSans-Bold'), url(https://fonts.gstatic.com/s/ptsans/v11/jizfRExUiTo99u79B_mh0OqtLQ0Z.woff2) format('woff2');
125
+ unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
126
+ }
127
+ /* latin-ext */
128
+ @font-face {
129
+ font-family: 'PT Sans';
130
+ font-style: normal;
131
+ font-weight: 700;
132
+ font-display: swap;
133
+ src: local('PT Sans Bold'), local('PTSans-Bold'), url(https://fonts.gstatic.com/s/ptsans/v11/jizfRExUiTo99u79B_mh0OCtLQ0Z.woff2) format('woff2');
134
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
135
+ }
136
+ /* latin */
137
+ @font-face {
138
+ font-family: 'PT Sans';
139
+ font-style: normal;
140
+ font-weight: 700;
141
+ font-display: swap;
142
+ src: local('PT Sans Bold'), local('PTSans-Bold'), url(https://fonts.gstatic.com/s/ptsans/v11/jizfRExUiTo99u79B_mh0O6tLQ.woff2) format('woff2');
143
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
144
144
  }