1234567891011121314151617181920 |
- .ActivityShadow {
- font-weight: 900;
- font-size: var(--font-size, 0.2778rem);
- text-shadow: 0 1px 0 #fff;
- color: #fbce72;
- &::before {
- content: attr(data-text);
- font-weight: 900;
- font-size: var(--font-size, 0.2778rem);
- position: absolute;
- z-index: 10;
- background: linear-gradient(to bottom, #fbd68f, #ed7d03);
- -webkit-background-clip: text;
- background-clip: text;
- -webkit-text-fill-color: transparent;
- text-shadow: none;
- }
- }
|