index.scss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. @import './elementui.scss';
  2. @import './reset.scss';
  3. @import './vxeTable.scss';
  4. @import './theme.scss';
  5. @import './Antdui.scss';
  6. @import './icons/iconfont.css';
  7. @import './driver.scss';
  8. #app {
  9. font-size: var(--font-size-3);
  10. color: var(--color-neutral-1);
  11. // user-select: none;
  12. background-color: var(--color-mode);
  13. }
  14. @font-face {
  15. font-family: 'Lato-Light'; /* 为字体定义一个名称 */
  16. src: url('@/styles/fonts/Lato-Regular.ttf') format('truetype'); /* 指定字体文件的路径 */
  17. font-weight: normal;
  18. font-style: normal;
  19. }
  20. *:not(svg):not(path) {
  21. color: var(--color-neutral-1);
  22. font-family: 'Lato-Light', 'Microsoft JhengHei', Arial, sans-serif !important;
  23. }
  24. .iconfont_icon {
  25. margin-right: 2.42px;
  26. }
  27. .iconfont {
  28. width: 1rem;
  29. height: 1rem;
  30. vertical-align: -3px;
  31. }
  32. .text_button {
  33. height: 24px;
  34. width: 90px;
  35. color: var(--color-theme);
  36. font-size: var(--font-size-2);
  37. font-weight: 400;
  38. display: flex;
  39. align-items: center;
  40. cursor: pointer;
  41. justify-content: center;
  42. margin-bottom: 8px;
  43. }
  44. .text_button:hover {
  45. border-radius: var(--border-radius-6);
  46. background: var(--border-hover-color);
  47. }
  48. .icon_dark {
  49. fill: var(--color-neutral-1);
  50. }
  51. .position-absolute-guide {
  52. position: absolute;
  53. z-index: 1200;
  54. // box-shadow: 3px 3px 16px 0px rgba(0, 0, 0, 0.2);
  55. }