25 lines
626 B
CSS
25 lines
626 B
CSS
body {
|
|
margin: 0;
|
|
font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
|
|
"Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
|
|
sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
code {
|
|
font-family: SourceCodePro, source-code-pro, Menlo, Monaco, Consolas,
|
|
"Courier New", monospace;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: Inter;
|
|
src: url('./res/inter/webfonts/inter-latin-ext-400-normal.woff');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: FiraCode;
|
|
src: url('./res/FiraCode-Regular.ttf');
|
|
}
|
|
|
|
|