|
- .total-statistics {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 400px;
- height: 140px;
- background-color: @workspace-background;
- border-radius: 4px;
-
- &__icon {
- width: 85px;
- height: 80px;
- margin-right: 40px;
- }
-
- &__title {
- position: relative;
- margin-bottom: 6px;
- color: @text-color-secondary;
- font-size: @font-size-content;
- }
-
- &__title-shadow {
- position: absolute;
- bottom: 6px;
- left: 0;
- width: 79px;
- height: 6px;
- background-color: linear-gradient(
- 87.07deg,
- rgba(22, 100, 255, 0.6) 0%,
- rgba(22, 100, 255, 0) 100%
- );
- }
-
- &__count {
- color: @text-color;
- font-weight: 700;
- font-size: 25px;
- }
- }
|