19 lines
433 B
CSS
19 lines
433 B
CSS
@font-face {
|
|
font-family: 'CustomFont';
|
|
src: url('./fonts/custom.woff2') format('woff2');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
:root {
|
|
--vp-font-family-base: 'CustomFont', -apple-system, BlinkMacSystemFont,
|
|
'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
|
|
--vp-font-family-mono: 'CustomFont', Courier, monospace;
|
|
}
|
|
|
|
strong, b {
|
|
font-weight: bold;
|
|
font-synthesis: weight;
|
|
} |