Files
webgame-frontend/src/assets/style/base.css
2026-06-18 11:01:11 +08:00

57 lines
873 B
CSS

/* ============================================================
* 全局重置样式
* ============================================================ */
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html,
body {
height: 100%;
width: 100%;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
line-height: 1.5;
color: var(--text-primary);
background-color: var(--bg-body);
}
#app {
height: 100%;
}
a {
color: inherit;
text-decoration: none;
}
ul,
ol {
list-style: none;
}
img {
max-width: 100%;
height: auto;
display: block;
}
button {
cursor: pointer;
border: none;
background: none;
font: inherit;
color: inherit;
}
input {
font: inherit;
color: inherit;
}