style.less 310 B

1234567891011121314151617181920212223242526272829303132333435
  1. @import './variable.less';
  2. body {
  3. background-color: @body-bg;
  4. }
  5. h1,h2,h3,h4,h5,h6 {
  6. margin: 0;
  7. }
  8. p {
  9. margin: 0;
  10. }
  11. ul {
  12. margin: 0;
  13. padding: 0;
  14. }
  15. li {
  16. list-style-type: none;
  17. }
  18. input {
  19. padding: 0;
  20. }
  21. table th {
  22. padding: 0;
  23. text-align: center;
  24. }
  25. * {
  26. -webkit-overflow-scrolling: touch;
  27. }