14 lines
256 B
CSS
14 lines
256 B
CSS
@font-face {
|
|
font-family: "Roboto";
|
|
src: url(./Roboto-Regular.ttf) format("truetype");
|
|
}
|
|
@font-face {
|
|
font-family: "Fira Code";
|
|
src: url(./FiraCode-VF.ttf) format("truetype");
|
|
}
|
|
|
|
:root {
|
|
--md-text-font: "Roboto";
|
|
--md-code-font: "Fira Code";
|
|
}
|