28 lines
680 B
CSS
28 lines
680 B
CSS
@font-face {
|
|
font-family: "Inter";
|
|
src: url("/fonts/Inter-Variable.ttf") format("truetype");
|
|
font-style: normal;
|
|
font-weight: 100 900;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Inter";
|
|
src: url("/fonts/Inter-Variable-Italic.ttf") format("truetype");
|
|
font-style: italic;
|
|
font-weight: 100 900;
|
|
font-display: swap;
|
|
}
|
|
|
|
:root {
|
|
font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
|
|
color: #1f354b;
|
|
background: #f3f6f9;
|
|
font-synthesis: none;
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
|
|
* { box-sizing: border-box; }
|
|
html, body { margin: 0; min-width: 1024px; min-height: 100%; }
|
|
button, input, select, textarea { font: inherit; }
|