index.scss 859 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. @import './variables.scss';
  2. @import './mixin.scss';
  3. body {
  4. height: 100%;
  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. height: 100%;
  18. box-sizing: border-box;
  19. }
  20. #app {
  21. height: 100%;
  22. }
  23. *,
  24. *::before,
  25. *::after {
  26. box-sizing: inherit;
  27. }
  28. a:focus,
  29. a:active {
  30. outline: none;
  31. }
  32. /* stylelint-disable-next-line no-descending-specificity */
  33. a,
  34. a:focus,
  35. a:hover {
  36. cursor: pointer;
  37. color: inherit;
  38. text-decoration: none;
  39. }
  40. div:focus {
  41. outline: none;
  42. }
  43. .container {
  44. width: 1000px;
  45. margin: 0 auto;
  46. height: 100%;
  47. }
  48. .t-right {
  49. text-align: right;
  50. }