22 lines
421 B
CSS
22 lines
421 B
CSS
:root {
|
|
font-family: "Noto Serif JP", "Noto Serif CJK SC", "Hiragino Mincho ProN",
|
|
"Yu Mincho", "Songti SC", serif;
|
|
line-height: 1.5;
|
|
font-weight: 400;
|
|
color-scheme: light;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
min-width: 320px;
|
|
background: #f7f4ee;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|