123456789101112131415161718192021222324252627282930313233 |
- svg text {
- /* font-family: Lora; */
- letter-spacing: 10px;
- stroke: #ff7b7b;
- font-size: 100px;
- font-weight: 700;
- stroke-width: 3;
-
- animation: textAnimate 5s infinite alternate;
-
- }
-
- @keyframes textAnimate {
- 0% {
- stroke-dasharray: 0 50%;
- stroke-dashoffset: 20%;
- fill:hsl(0, 100%, 64%)
-
- }
-
- 100% {
- stroke-dasharray: 50% 0;
- stroke-dashoffstet: -20%;
- fill: hsla(0, 78%, 41%, 0.081)
- }
-
- }
- .minipig {
- font-size: 52px;
- font-weight: 700;
- letter-spacing: 5px;
- stroke-width: 2;
- }
|