index.module.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. .creationInfo {
  2. padding-top: 42px;
  3. }
  4. .creationInfo .title {
  5. @apply mb-2;
  6. font-weight: 500;
  7. font-size: 20px;
  8. line-height: 30px;
  9. color: #101828;
  10. }
  11. .creationInfo .content {
  12. margin-bottom: 44px;
  13. font-weight: 400;
  14. font-size: 14px;
  15. line-height: 20px;
  16. color: #667085;
  17. }
  18. .creationInfo .label {
  19. @apply mb-2;
  20. font-weight: 500;
  21. font-size: 14px;
  22. line-height: 20px;
  23. color: #101828;
  24. }
  25. .datasetName {
  26. padding: 8px 12px;
  27. background: #F9FAFB;
  28. border-radius: 8px;
  29. font-weight: 400;
  30. font-size: 14px;
  31. line-height: 20px;
  32. color: #101828;
  33. word-break: break-all;
  34. }
  35. .dividerLine {
  36. margin: 24px 0;
  37. height: 1px;
  38. background-color: #eaecf0;
  39. }
  40. .sideTip {
  41. @apply flex flex-col items-center shrink-0 ;
  42. padding-top: 108px;
  43. width: 524px;
  44. border-left: 0.5px solid #F2F4F7;
  45. }
  46. .tipCard {
  47. @apply flex flex-col items-start p-6;
  48. width: 320px;
  49. background-color: #F9FAFB;
  50. box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  51. border-radius: 12px;
  52. }
  53. .tipCard .icon {
  54. width: 32px;
  55. height: 32px;
  56. border: 1px solid #EAECF0;
  57. border-radius: 6px;
  58. background: center no-repeat url(../assets/book-open-01.svg);
  59. background-size: 16px;
  60. }
  61. .tipCard .title {
  62. margin: 12px 0;
  63. font-weight: 500;
  64. font-size: 16px;
  65. line-height: 24px;
  66. color: #344054;
  67. }
  68. .tipCard .content {
  69. font-weight: 400;
  70. font-size: 14px;
  71. line-height: 20px;
  72. color: #344054;
  73. }