index.module.css 663 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .process {
  2. width: 100%;
  3. height: 12px;
  4. overflow: hidden;
  5. background-color: #eee;
  6. border-radius: 6px;
  7. }
  8. .process-inner {
  9. display: block;
  10. height: 100%;
  11. background-image: linear-gradient(to right, #baffff, #1fc5c5);
  12. border-radius: 6px;
  13. transition: width 500ms linear;
  14. }
  15. .card-title {
  16. font-size: 14px;
  17. font-weight: normal;
  18. color: rgb(0 0 0 / 55%);
  19. }
  20. .card-content {
  21. height: 30px;
  22. margin-top: 12px;
  23. overflow: hidden;
  24. font-size: 30px;
  25. line-height: 30px;
  26. color: black;
  27. text-overflow: ellipsis;
  28. white-space: nowrap;
  29. }
  30. .card-expand {
  31. display: flex;
  32. align-items: center;
  33. width: 100%;
  34. height: 70px;
  35. margin-top: 24px;
  36. }