20 lines
332 B
CSS
20 lines
332 B
CSS
:root {
|
|
font-family: Inter, "Microsoft YaHei", "PingFang SC", sans-serif;
|
|
color: #0f172a;
|
|
background: #f1f5f9;
|
|
font-synthesis: none;
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
min-width: 320px;
|
|
min-height: 100vh;
|
|
}
|
|
button,
|
|
select {
|
|
font: inherit;
|
|
}
|