32 lines
515 B
SCSS
32 lines
515 B
SCSS
:root {
|
|
color-scheme: light;
|
|
font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
|
|
background: #f4f6fb;
|
|
color: #1f2937;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#app {
|
|
margin: 0;
|
|
height: 100%;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
body {
|
|
background:
|
|
radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 28%),
|
|
radial-gradient(circle at top right, rgba(14, 165, 233, 0.08), transparent 22%),
|
|
#f4f6fb;
|
|
overflow: hidden;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|