You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.less 725 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .total-statistics {
  2. display: flex;
  3. align-items: center;
  4. justify-content: center;
  5. width: 400px;
  6. height: 140px;
  7. background-color: @workspace-background;
  8. border-radius: 4px;
  9. &__icon {
  10. width: 85px;
  11. height: 80px;
  12. margin-right: 40px;
  13. }
  14. &__title {
  15. position: relative;
  16. margin-bottom: 6px;
  17. color: @text-color-secondary;
  18. font-size: @font-size-content;
  19. }
  20. &__title-shadow {
  21. position: absolute;
  22. bottom: 6px;
  23. left: 0;
  24. width: 79px;
  25. height: 6px;
  26. background-color: linear-gradient(
  27. 87.07deg,
  28. rgba(22, 100, 255, 0.6) 0%,
  29. rgba(22, 100, 255, 0) 100%
  30. );
  31. }
  32. &__count {
  33. color: @text-color;
  34. font-weight: 700;
  35. font-size: 25px;
  36. }
  37. }