reset.scss 889 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. body {
  2. /* 定义一些主题色及基础样式 */
  3. font-family: PingFang SC, Arial, Hiragino Sans GB, Microsoft YaHei, sans-serif;
  4. margin: 0;
  5. padding: 0;
  6. font-size: 14px;
  7. background-color: $--background-color-base;
  8. font-weight: 400;
  9. color: $--color-text-primary;
  10. line-height: 1.3;
  11. }
  12. *, :after, :before {
  13. box-sizing: border-box;
  14. }
  15. button, input {
  16. font-family: PingFang SC, Arial, Hiragino Sans GB, Microsoft YaHei, sans-serif;
  17. font-size: 14px;
  18. outline: none;
  19. border: none;
  20. }
  21. ul,li,ol {
  22. margin:0;
  23. padding:0;
  24. list-style: none;
  25. }
  26. // 去除number类型input框加减号
  27. /* 谷歌 */
  28. input::-webkit-outer-spin-button,
  29. input::-webkit-inner-spin-button {
  30. -webkit-appearance: none;
  31. appearance: none;
  32. margin: 0;
  33. }
  34. /* 火狐 */
  35. input{
  36. -moz-appearance:textfield;
  37. }
  38. a {
  39. color: unset;
  40. text-decoration: none;
  41. }