style.less 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. @font-face {
  2. font-family: "almm";
  3. src: url("/src/assets/almm/AlimamaShuHeiTi-Bold.woff2") format("woff2"),
  4. url("/src/assets/almm/AlimamaShuHeiTi-Bold.woff") format("woff");
  5. }
  6. :root {
  7. font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  8. line-height: 1.5;
  9. font-weight: 400;
  10. color-scheme: light dark;
  11. color: rgba(255, 255, 255, 0.87);
  12. background-color: #242424;
  13. font-synthesis: none;
  14. text-rendering: optimizeLegibility;
  15. -webkit-font-smoothing: antialiased;
  16. -moz-osx-font-smoothing: grayscale;
  17. -webkit-text-size-adjust: 100%;
  18. }
  19. input::-webkit-outer-spin-button,
  20. input::-webkit-inner-spin-button {
  21. -webkit-appearance: none !important;
  22. }
  23. input[type='number'] {
  24. -moz-appearance: textfield;
  25. }
  26. input::placeholder {
  27. color: #999 !important;
  28. opacity: 1;
  29. }
  30. a {
  31. font-weight: 500;
  32. color: #646cff;
  33. text-decoration: inherit;
  34. }
  35. a:hover {
  36. color: #535bf2;
  37. }
  38. a {
  39. font-weight: 500;
  40. color: #646cff;
  41. text-decoration: inherit;
  42. }
  43. a:hover {
  44. color: #535bf2;
  45. }
  46. body {
  47. margin: 0;
  48. display: flex;
  49. place-items: center;
  50. min-width: 1200px;
  51. min-height: 100vh;
  52. font-family:Alibaba Sans,-apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;
  53. }
  54. h1 {
  55. font-size: 3.2em;
  56. line-height: 1.1;
  57. }
  58. button {
  59. border-radius: 8px;
  60. border: 1px solid transparent;
  61. padding: 0.6em 1.2em;
  62. font-size: 1em;
  63. font-weight: 500;
  64. font-family: inherit;
  65. background-color: #1a1a1a;
  66. cursor: pointer;
  67. transition: border-color 0.25s;
  68. }
  69. button:hover {
  70. border-color: #646cff;
  71. }
  72. button:focus,
  73. button:focus-visible {
  74. outline: 4px auto -webkit-focus-ring-color;
  75. }
  76. .y-container{
  77. padding:10px;
  78. background: #fff;
  79. }
  80. .mg-bt-20{
  81. margin-bottom: 20px;
  82. }
  83. .mr-10{
  84. margin-right: 10px;
  85. }
  86. .mt-10{
  87. margin-bottom: 10px;
  88. }
  89. .almm{
  90. font-family: almm;
  91. }
  92. .desc_title{
  93. margin:0 0 20px 0;
  94. font-weight: bold;
  95. // font-size: 1rem;
  96. }
  97. .ellipsis {
  98. display: block;
  99. overflow: hidden;
  100. white-space: nowrap;
  101. text-overflow: ellipsis;
  102. }
  103. .ant-table-striped :deep td{
  104. font-size: 12px !important;
  105. }
  106. @media (prefers-color-scheme: light) {
  107. :root {
  108. color: #213547;
  109. background-color: #ffffff;
  110. }
  111. a:hover {
  112. color: #747bff;
  113. }
  114. button {
  115. background-color: #f9f9f9;
  116. }
  117. }