@neosjs/cli
Version:
Neos(奈欧斯)是一个帮助开发者快速地创建 Vue3 应用并自动配置项目编译的脚手架
63 lines (60 loc) • 913 B
CSS
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
*::focus {
outline: 0 none;
box-shadow: none;
}
html,
body {
padding: 0;
margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
p,
dl,
dt,
dd {
padding: 0;
margin: 0;
}
ul,
li {
list-style: none;
}
button {
background: none;
color: inherit;
padding: 0;
border: none;
font: inherit;
cursor: pointer;
outline: inherit;
}
textarea {
resize: none;
}
body {
min-height: 100vh;
color: var(--color-text);
background: var(--color-background);
transition: color 0.5s, background-color 0.5s;
line-height: 1.6;
font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
font-size: 15px;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}