2024-11-05 17:54:47 +04:00
|
|
|
@font-face {
|
|
|
|
font-family: 'PayPalPro';
|
|
|
|
src: url('../../fonts/PayPalPro-Black.otf') format('opentype');
|
|
|
|
font-weight: 900;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: 'PayPalPro';
|
|
|
|
src: url('../../fonts/PayPalPro-BlackItalic.otf') format('opentype');
|
|
|
|
font-weight: 900;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: 'PayPalPro';
|
|
|
|
src: url('../../fonts/PayPalPro-Bold.otf') format('opentype');
|
|
|
|
font-weight: bold;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: 'PayPalPro';
|
|
|
|
src: url('../../fonts/PayPalPro-BoldItalic.otf') format('opentype');
|
|
|
|
font-weight: bold;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: 'PayPalPro';
|
|
|
|
src: url('../../fonts/PayPalPro-Book.otf') format('opentype');
|
|
|
|
font-weight: 400;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: 'PayPalPro';
|
|
|
|
src: url('../../fonts/PayPalPro-BookItalic.otf') format('opentype');
|
|
|
|
font-weight: 400;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
2024-11-13 17:29:11 +01:00
|
|
|
@mixin primaryFont{
|
|
|
|
font-family: "PayPalPro", sans-serif;
|
|
|
|
}
|
2024-11-05 17:54:47 +04:00
|
|
|
|
2024-11-14 11:52:00 +01:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2024-11-07 17:52:24 +01:00
|
|
|
& {
|
2024-11-05 17:54:47 +04:00
|
|
|
font-family: "PayPalPro", sans-serif;
|
2024-10-23 08:56:47 +02:00
|
|
|
-webkit-font-smoothing: antialiased;
|
2024-11-05 17:54:47 +04:00
|
|
|
color: $color-gray-700;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2, h3, h4 {
|
|
|
|
color: $color-black;
|
2024-10-23 08:56:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
a:not(.button) {
|
|
|
|
color: $color-blueberry;
|
|
|
|
}
|
|
|
|
|
|
|
|
.components-form-toggle.is-checked > .components-form-toggle__track {
|
|
|
|
background-color: $color-blueberry;
|
|
|
|
}
|