1234567891011121314151617181920212223242526272829303132333435363738 |
- @import './var';
- html {
- -webkit-tap-highlight-color: transparent;
- }
- body {
- margin: 0;
- font-family: @base-font-family;
- }
- a {
- text-decoration: none;
- }
- input,
- button,
- textarea {
- color: inherit;
- font: inherit;
- }
- a,
- input,
- button,
- textarea,
- [class*='van-'] {
- &:focus {
- outline: none;
- }
- }
- ol,
- ul {
- margin: 0;
- padding: 0;
- list-style: none;
- }
|