22 lines
No EOL
385 B
CSS
22 lines
No EOL
385 B
CSS
@import url(https://rsms.me/inter/inter.css);
|
|
|
|
:root {
|
|
background-color: #F8F7FF;
|
|
color: rgb(23, 3, 21);
|
|
|
|
font-family: Inter, sans-serif;
|
|
/* fix for Chrome */
|
|
font-feature-settings: 'liga' 1, 'calt' 1;
|
|
}
|
|
|
|
@supports (font-variation-settings: normal) {
|
|
:root {
|
|
font-family: InterVariable, sans-serif;
|
|
}
|
|
}
|
|
|
|
html,
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
} |