32 lines
622 B
CSS
32 lines
622 B
CSS
|
@import url('https://rsms.me/inter/inter.css');
|
||
|
html { font-family:
|
||
|
'Inter',
|
||
|
sans-serif,
|
||
|
'Apple Color Emoji',
|
||
|
'Segoe UI Emoji',
|
||
|
'Segoe UI Symbol';
|
||
|
}
|
||
|
@supports (font-variation-settings: normal) {
|
||
|
html { font-family:
|
||
|
'Inter var',
|
||
|
sans-serif,
|
||
|
'Apple Color Emoji',
|
||
|
'Segoe UI Emoji',
|
||
|
'Segoe UI Symbol';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
code {
|
||
|
font-family:
|
||
|
-apple-system,
|
||
|
BlinkMacSystemFont,
|
||
|
"Segoe UI",
|
||
|
Helvetica,
|
||
|
Arial,
|
||
|
sans-serif,
|
||
|
"Apple Color Emoji",
|
||
|
"Segoe UI Emoji",
|
||
|
"Segoe UI Symbol";
|
||
|
font-size: 85%;
|
||
|
}
|