index.scss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. #app {
  8. font-size: var(--font-size-3);
  9. color: var(--color-neutral-1);
  10. // user-select: none;
  11. background-color: white;
  12. }
  13. @font-face {
  14. font-family: 'Lato-Light'; /* 为字体定义一个名称 */
  15. src: url('@/styles/fonts/Lato-Regular.ttf') format('truetype'); /* 指定字体文件的路径 */
  16. font-weight: normal;
  17. font-style: normal;
  18. }
  19. *:not(svg):not(path) {
  20. color: var(--color-neutral-1);
  21. font-family: 'Lato-Light', 'Microsoft JhengHei', Arial, sans-serif !important;
  22. }
  23. .iconfont_icon {
  24. margin-right: 2.42px;
  25. }
  26. .iconfont {
  27. width: 1rem;
  28. height: 1rem;
  29. vertical-align: -3px;
  30. }
  31. .text_button {
  32. height: 24px;
  33. width: 90px;
  34. color: var(--color-theme);
  35. font-size: var(--font-size-2);
  36. font-weight: 400;
  37. display: flex;
  38. align-items: center;
  39. cursor: pointer;
  40. justify-content: center;
  41. margin-bottom: 8px;
  42. }
  43. .text_button:hover {
  44. border-radius: var(--border-radius-6);
  45. background: var(--border-hover-color);
  46. }