| 1234567891011121314151617181920212223242526272829303132333435363738 |
- * {
- box-sizing: border-box;
- padding: 0;
- margin: 0;
- font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica,
- Arial, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
- text-decoration: none;
- letter-spacing: 0.5px;
- }
- #app {
- width: 100vw;
- height: 100vh;
- }
- a {
- color: #222;
- text-decoration: none;
- }
- input,
- textarea {
- outline: none;
- }
- ul,
- ol {
- list-style: none;
- }
- img {
- vertical-align: middle;
- border: 0;
- }
- [hidden] {
- display: none;
- }
|