index.scss 768 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. @import './variables';
  2. @import './mixin';
  3. @import './element-ui';
  4. body {
  5. height: 100%;
  6. overflow: hidden;
  7. font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Arial', sans-serif;
  8. -moz-osx-font-smoothing: grayscale;
  9. -webkit-font-smoothing: antialiased;
  10. text-rendering: optimizeLegibility;
  11. }
  12. label {
  13. font-weight: bold;
  14. }
  15. html {
  16. box-sizing: border-box;
  17. height: 100%;
  18. }
  19. #app {
  20. height: 100%;
  21. }
  22. *,
  23. *::before,
  24. *::after {
  25. box-sizing: inherit;
  26. }
  27. a,
  28. a:focus,
  29. a:hover {
  30. color: inherit;
  31. text-decoration: none;
  32. cursor: pointer;
  33. }
  34. a:focus,
  35. a:active {
  36. outline: none;
  37. }
  38. div:focus {
  39. outline: none;
  40. }
  41. .container {
  42. width: 1000px;
  43. height: 100%;
  44. margin: 0 auto;
  45. }
  46. .t-right {
  47. text-align: right;
  48. }