index.scss 958 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. @import './variables.scss';
  2. @import './mixin.scss';
  3. @import './element-ui.scss';
  4. body {
  5. -moz-osx-font-smoothing: grayscale;
  6. -webkit-font-smoothing: antialiased;
  7. text-rendering: optimizeLegibility;
  8. overflow: hidden;
  9. /* stylelint-disable-next-line */
  10. font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, '微软雅黑',
  11. Arial, sans-serif;
  12. }
  13. label {
  14. font-weight: 700;
  15. }
  16. html {
  17. box-sizing: border-box;
  18. }
  19. html,
  20. body {
  21. font-size: 16px !important;
  22. height: 100%;
  23. }
  24. ul {
  25. padding-inline-start: 0;
  26. margin: 0;
  27. li {
  28. list-style: none;
  29. }
  30. }
  31. #app {
  32. height: 100%;
  33. }
  34. *,
  35. *::before,
  36. *::after {
  37. box-sizing: inherit;
  38. }
  39. a:focus,
  40. a:active {
  41. outline: none;
  42. }
  43. /* stylelint-disable-next-line no-descending-specificity */
  44. a,
  45. a:focus,
  46. a:hover {
  47. cursor: pointer;
  48. color: inherit;
  49. text-decoration: none;
  50. }
  51. div:focus {
  52. outline: none;
  53. }
  54. .t-right {
  55. text-align: right;
  56. }
  57. .tip {
  58. color: #aaa;
  59. }