globals.css 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674
  1. @import "preflight.css";
  2. @tailwind base;
  3. @tailwind components;
  4. @import '../../themes/light.css';
  5. @import '../../themes/dark.css';
  6. @import "../../themes/manual-light.css";
  7. @import "../../themes/manual-dark.css";
  8. html[data-changing-theme] * {
  9. transition: none !important;
  10. }
  11. :root {
  12. --max-width: 1100px;
  13. --border-radius: 12px;
  14. --font-mono: ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono",
  15. "Roboto Mono", "Oxygen Mono", "Ubuntu Monospace", "Source Code Pro",
  16. "Fira Mono", "Droid Sans Mono", "Courier New", monospace;
  17. --foreground-rgb: 0, 0, 0;
  18. --background-start-rgb: 214, 219, 220;
  19. --background-end-rgb: 255, 255, 255;
  20. --primary-glow: conic-gradient(from 180deg at 50% 50%,
  21. #16abff33 0deg,
  22. #0885ff33 55deg,
  23. #54d6ff33 120deg,
  24. #0071ff33 160deg,
  25. transparent 360deg);
  26. --secondary-glow: radial-gradient(rgba(255, 255, 255, 1),
  27. rgba(255, 255, 255, 0));
  28. --tile-start-rgb: 239, 245, 249;
  29. --tile-end-rgb: 228, 232, 233;
  30. --tile-border: conic-gradient(#00000080,
  31. #00000040,
  32. #00000030,
  33. #00000020,
  34. #00000010,
  35. #00000010,
  36. #00000080);
  37. --callout-rgb: 238, 240, 241;
  38. --callout-border-rgb: 172, 175, 176;
  39. --card-rgb: 180, 185, 188;
  40. --card-border-rgb: 131, 134, 135;
  41. }
  42. /* @media (prefers-color-scheme: dark) {
  43. :root {
  44. --foreground-rgb: 255, 255, 255;
  45. --background-start-rgb: 0, 0, 0;
  46. --background-end-rgb: 0, 0, 0;
  47. --primary-glow: radial-gradient(rgba(1, 65, 255, 0.4), rgba(1, 65, 255, 0));
  48. --secondary-glow: linear-gradient(to bottom right,
  49. rgba(1, 65, 255, 0),
  50. rgba(1, 65, 255, 0),
  51. rgba(1, 65, 255, 0.3));
  52. --tile-start-rgb: 2, 13, 46;
  53. --tile-end-rgb: 2, 5, 19;
  54. --tile-border: conic-gradient(#ffffff80,
  55. #ffffff40,
  56. #ffffff30,
  57. #ffffff20,
  58. #ffffff10,
  59. #ffffff10,
  60. #ffffff80);
  61. --callout-rgb: 20, 20, 20;
  62. --callout-border-rgb: 108, 108, 108;
  63. --card-rgb: 100, 100, 100;
  64. --card-border-rgb: 200, 200, 200;
  65. }
  66. } */
  67. * {
  68. box-sizing: border-box;
  69. padding: 0;
  70. margin: 0;
  71. }
  72. html,
  73. body {
  74. max-width: 100vw;
  75. overflow: hidden;
  76. }
  77. body {
  78. color: rgb(var(--foreground-rgb));
  79. user-select: none;
  80. /* background: linear-gradient(
  81. to bottom,
  82. transparent,
  83. rgb(var(--background-end-rgb))
  84. )
  85. rgb(var(--background-start-rgb)); */
  86. }
  87. a {
  88. color: inherit;
  89. text-decoration: none;
  90. outline: none;
  91. }
  92. button:focus-within {
  93. outline: none;
  94. }
  95. /* @media (prefers-color-scheme: dark) {
  96. html {
  97. color-scheme: dark;
  98. }
  99. } */
  100. /* CSS Utils */
  101. .h1 {
  102. padding-bottom: 1.5rem;
  103. line-height: 1.5;
  104. font-size: 1.125rem;
  105. color: #111928;
  106. }
  107. .h2 {
  108. font-size: 14px;
  109. font-weight: 500;
  110. color: #111928;
  111. line-height: 1.5;
  112. }
  113. /* font define start */
  114. .system-kbd {
  115. font-size: 12px;
  116. font-weight: 500;
  117. line-height: 16px;
  118. }
  119. .system-2xs-regular-uppercase {
  120. font-size: 10px;
  121. font-weight: 400;
  122. text-transform: uppercase;
  123. line-height: 12px;
  124. }
  125. .system-2xs-regular {
  126. font-size: 10px;
  127. font-weight: 400;
  128. line-height: 12px;
  129. }
  130. .system-2xs-medium {
  131. font-size: 10px;
  132. font-weight: 500;
  133. line-height: 12px;
  134. }
  135. .system-2xs-medium-uppercase {
  136. font-size: 10px;
  137. font-weight: 500;
  138. text-transform: uppercase;
  139. line-height: 12px;
  140. }
  141. .system-2xs-semibold-uppercase {
  142. font-size: 10px;
  143. font-weight: 600;
  144. text-transform: uppercase;
  145. line-height: 12px;
  146. }
  147. .system-xs-regular {
  148. font-size: 12px;
  149. font-weight: 400;
  150. line-height: 16px;
  151. }
  152. .system-xs-regular-uppercase {
  153. font-size: 12px;
  154. font-weight: 400;
  155. text-transform: uppercase;
  156. line-height: 16px;
  157. }
  158. .system-xs-medium {
  159. font-size: 12px;
  160. font-weight: 500;
  161. line-height: 16px;
  162. }
  163. .system-xs-medium-uppercase {
  164. font-size: 12px;
  165. font-weight: 500;
  166. text-transform: uppercase;
  167. line-height: 16px;
  168. }
  169. .system-xs-semibold {
  170. font-size: 12px;
  171. font-weight: 600;
  172. line-height: 16px;
  173. }
  174. .system-xs-semibold-uppercase {
  175. font-size: 12px;
  176. font-weight: 600;
  177. text-transform: uppercase;
  178. line-height: 16px;
  179. }
  180. .system-sm-regular {
  181. font-size: 13px;
  182. font-weight: 400;
  183. line-height: 16px;
  184. }
  185. .system-sm-medium {
  186. font-size: 13px;
  187. font-weight: 500;
  188. line-height: 16px;
  189. }
  190. .system-sm-medium-uppercase {
  191. font-size: 13px;
  192. font-weight: 500;
  193. text-transform: uppercase;
  194. line-height: 16px;
  195. }
  196. .system-sm-semibold {
  197. font-size: 13px;
  198. font-weight: 600;
  199. line-height: 16px;
  200. }
  201. .system-sm-semibold-uppercase {
  202. font-size: 13px;
  203. font-weight: 600;
  204. text-transform: uppercase;
  205. line-height: 16px;
  206. }
  207. .system-md-regular {
  208. font-size: 14px;
  209. font-weight: 400;
  210. line-height: 20px;
  211. }
  212. .system-md-medium {
  213. font-size: 14px;
  214. font-weight: 500;
  215. line-height: 20px;
  216. }
  217. .system-md-semibold {
  218. font-size: 14px;
  219. font-weight: 600;
  220. line-height: 20px;
  221. }
  222. .system-md-semibold-uppercase {
  223. font-size: 14px;
  224. font-weight: 600;
  225. text-transform: uppercase;
  226. line-height: 20px;
  227. }
  228. .system-xl-regular {
  229. font-size: 16px;
  230. font-weight: 400;
  231. line-height: 24px;
  232. }
  233. .system-xl-medium {
  234. font-size: 16px;
  235. font-weight: 500;
  236. line-height: 24px;
  237. }
  238. .system-xl-semibold {
  239. font-size: 16px;
  240. font-weight: 600;
  241. line-height: 24px;
  242. }
  243. [class*='code-'] {
  244. @apply font-mono;
  245. }
  246. .code-xs-regular {
  247. font-size: 12px;
  248. font-weight: 400;
  249. line-height: 1.5;
  250. }
  251. .code-xs-semibold {
  252. font-size: 12px;
  253. font-weight: 600;
  254. line-height: 1.5;
  255. }
  256. .code-sm-regular {
  257. font-size: 13px;
  258. font-weight: 400;
  259. line-height: 1.5;
  260. }
  261. .code-sm-semibold {
  262. font-size: 13px;
  263. font-weight: 600;
  264. line-height: 1.5;
  265. }
  266. .code-md-regular {
  267. font-size: 14px;
  268. font-weight: 400;
  269. line-height: 1.5;
  270. }
  271. .code-md-semibold {
  272. font-size: 14px;
  273. font-weight: 600;
  274. line-height: 1.5;
  275. }
  276. .body-xs-light {
  277. font-size: 12px;
  278. font-weight: 300;
  279. line-height: 16px;
  280. }
  281. .body-xs-regular {
  282. font-size: 12px;
  283. font-weight: 400;
  284. line-height: 16px;
  285. }
  286. .body-xs-medium {
  287. font-size: 12px;
  288. font-weight: 500;
  289. line-height: 16px;
  290. }
  291. .body-sm-light {
  292. font-size: 13px;
  293. font-weight: 300;
  294. line-height: 16px;
  295. }
  296. .body-sm-regular {
  297. font-size: 13px;
  298. font-weight: 400;
  299. line-height: 16px;
  300. }
  301. .body-sm-medium {
  302. font-size: 13px;
  303. font-weight: 500;
  304. line-height: 16px;
  305. }
  306. .body-md-light {
  307. font-size: 14px;
  308. font-weight: 300;
  309. line-height: 20px;
  310. }
  311. .body-md-regular {
  312. font-size: 14px;
  313. font-weight: 400;
  314. line-height: 20px;
  315. }
  316. .body-md-medium {
  317. font-size: 14px;
  318. font-weight: 500;
  319. line-height: 20px;
  320. }
  321. .body-lg-light {
  322. font-size: 15px;
  323. font-weight: 300;
  324. line-height: 20px;
  325. }
  326. .body-lg-regular {
  327. font-size: 15px;
  328. font-weight: 400;
  329. line-height: 20px;
  330. }
  331. .body-lg-medium {
  332. font-size: 15px;
  333. font-weight: 500;
  334. line-height: 20px;
  335. }
  336. .body-xl-regular {
  337. font-size: 16px;
  338. font-weight: 400;
  339. line-height: 24px;
  340. }
  341. .body-xl-medium {
  342. font-size: 16px;
  343. font-weight: 500;
  344. line-height: 24px;
  345. }
  346. .body-xl-light {
  347. font-size: 16px;
  348. font-weight: 300;
  349. line-height: 24px;
  350. }
  351. .body-2xl-light {
  352. font-size: 18px;
  353. font-weight: 300;
  354. line-height: 1.5;
  355. }
  356. .body-2xl-regular {
  357. font-size: 18px;
  358. font-weight: 400;
  359. line-height: 1.5;
  360. }
  361. .body-2xl-medium {
  362. font-size: 18px;
  363. font-weight: 500;
  364. line-height: 1.5;
  365. }
  366. .title-xs-semi-bold {
  367. font-size: 12px;
  368. font-weight: 600;
  369. line-height: 16px;
  370. }
  371. .title-xs-bold {
  372. font-size: 12px;
  373. font-weight: 700;
  374. line-height: 16px;
  375. }
  376. .title-sm-semi-bold {
  377. font-size: 13px;
  378. font-weight: 600;
  379. line-height: 16px;
  380. }
  381. .title-sm-bold {
  382. font-size: 13px;
  383. font-weight: 700;
  384. line-height: 16px;
  385. }
  386. .title-md-semi-bold {
  387. font-size: 14px;
  388. font-weight: 600;
  389. line-height: 20px;
  390. }
  391. .title-md-bold {
  392. font-size: 14px;
  393. font-weight: 700;
  394. line-height: 20px;
  395. }
  396. .title-lg-semi-bold {
  397. font-size: 15px;
  398. font-weight: 600;
  399. line-height: 1.2;
  400. }
  401. .title-lg-bold {
  402. font-size: 15px;
  403. font-weight: 700;
  404. line-height: 1.2;
  405. }
  406. .title-xl-semi-bold {
  407. font-size: 16px;
  408. font-weight: 600;
  409. line-height: 1.2;
  410. }
  411. .title-xl-bold {
  412. font-size: 16px;
  413. font-weight: 700;
  414. line-height: 1.2;
  415. }
  416. .title-2xl-semi-bold {
  417. font-size: 18px;
  418. font-weight: 600;
  419. line-height: 1.2;
  420. }
  421. .title-2xl-bold {
  422. font-size: 18px;
  423. font-weight: 700;
  424. line-height: 1.2;
  425. }
  426. .title-3xl-semi-bold {
  427. font-size: 20px;
  428. font-weight: 600;
  429. line-height: 1.2;
  430. }
  431. .title-3xl-bold {
  432. font-size: 20px;
  433. font-weight: 700;
  434. line-height: 1.2;
  435. }
  436. .title-4xl-semi-bold {
  437. font-size: 24px;
  438. font-weight: 600;
  439. line-height: 1.2;
  440. }
  441. .title-4xl-bold {
  442. font-size: 24px;
  443. font-weight: 700;
  444. line-height: 1.2;
  445. }
  446. .title-5xl-semi-bold {
  447. font-size: 30px;
  448. font-weight: 600;
  449. line-height: 1.2;
  450. }
  451. .title-5xl-bold {
  452. font-size: 30px;
  453. font-weight: 700;
  454. line-height: 1.2;
  455. }
  456. .title-6xl-semi-bold {
  457. font-size: 36px;
  458. font-weight: 600;
  459. line-height: 1.2;
  460. }
  461. .title-6xl-bold {
  462. font-size: 36px;
  463. font-weight: 700;
  464. line-height: 1.2;
  465. }
  466. .title-7xl-semi-bold {
  467. font-size: 48px;
  468. font-weight: 600;
  469. line-height: 1.2;
  470. }
  471. .title-7xl-bold {
  472. font-size: 48px;
  473. font-weight: 700;
  474. line-height: 1.2;
  475. }
  476. .title-8xl-semi-bold {
  477. font-size: 60px;
  478. font-weight: 600;
  479. line-height: 1.2;
  480. }
  481. .title-8xl-bold {
  482. font-size: 60px;
  483. font-weight: 700;
  484. line-height: 1.2;
  485. }
  486. /* font define end */
  487. /* border radius start */
  488. .radius-2xs {
  489. border-radius: 2px;
  490. }
  491. .radius-xs {
  492. border-radius: 4px;
  493. }
  494. .radius-sm {
  495. border-radius: 6px;
  496. }
  497. .radius-md {
  498. border-radius: 8px;
  499. }
  500. .radius-lg {
  501. border-radius: 10px;
  502. }
  503. .radius-xl {
  504. border-radius: 12px;
  505. }
  506. .radius-2xl {
  507. border-radius: 16px;
  508. }
  509. .radius-3xl {
  510. border-radius: 20px;
  511. }
  512. .radius-4xl {
  513. border-radius: 24px;
  514. }
  515. .radius-5xl {
  516. border-radius: 24px;
  517. }
  518. .radius-6xl {
  519. border-radius: 28px;
  520. }
  521. .radius-7xl {
  522. border-radius: 32px;
  523. }
  524. .radius-8xl {
  525. border-radius: 40px;
  526. }
  527. .radius-9xl {
  528. border-radius: 48px;
  529. }
  530. .radius-full {
  531. border-radius: 64px;
  532. }
  533. /* border radius end */
  534. .link {
  535. @apply text-blue-600 cursor-pointer hover:opacity-80 transition-opacity duration-200 ease-in-out;
  536. }
  537. .text-gradient {
  538. background: linear-gradient(91.58deg, #2250F2 -29.55%, #0EBCF3 75.22%);
  539. -webkit-background-clip: text;
  540. -webkit-text-fill-color: transparent;
  541. background-clip: text;
  542. text-fill-color: transparent;
  543. }
  544. /* overwrite paging active dark model style */
  545. [class*=style_paginatio] li .text-primary-600 {
  546. color: rgb(28 100 242);
  547. background-color: rgb(235 245 255);
  548. }
  549. /* support safari 14 and below */
  550. .inset-0 {
  551. left: 0;
  552. right: 0;
  553. top: 0;
  554. bottom: 0;
  555. }
  556. @import '../components/base/button/index.css';
  557. @import '../components/base/action-button/index.css';
  558. @import '../components/base/modal/index.css';
  559. @tailwind utilities;