23 lines
872 B
SCSS
23 lines
872 B
SCSS
// Chemin vers ce dossier, relatif au fichier d'entrée Sass du projet
|
|
// consommateur (Vite résout les url() d'un partial par rapport à l'entrée,
|
|
// pas par rapport à ce fichier) : à fixer via `@use ... with ($font-path: ...)`.
|
|
$font-path: '.' !default;
|
|
|
|
@font-face {
|
|
font-family: 'Epilogue';
|
|
src: url('#{$font-path}/Epilogue-Italic-VariableFont_wght.ttf') format('truetype');
|
|
src: url('#{$font-path}/Epilogue-Italic-VariableFont_wght.ttf') format('truetype') tech(variations);
|
|
font-weight: 100 900;
|
|
font-style: italic;
|
|
font-display: block;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Epilogue';
|
|
src: url('#{$font-path}/Epilogue-VariableFont_wght.ttf') format('truetype');
|
|
src: url('#{$font-path}/Epilogue-VariableFont_wght.ttf') format('truetype') tech(variations);
|
|
font-weight: 100 900;
|
|
font-style: normal;
|
|
font-display: block;
|
|
}
|