_heading_highlighted.scss
23 lines
| 1 | .spe-highlighted-text-bg { |
| 2 | .elementor-heading-title { |
| 3 | span { |
| 4 | position: relative; |
| 5 | display: inline-block; |
| 6 | z-index: 1; |
| 7 | &::after { |
| 8 | content: ""; |
| 9 | height: 37%; |
| 10 | width: 101%; |
| 11 | background: #ef4953; |
| 12 | left: 50%; |
| 13 | transform: translateX(-50%) scaleY(1); |
| 14 | transform-origin: bottom; |
| 15 | position: absolute; |
| 16 | z-index: -1; |
| 17 | bottom: 10px; |
| 18 | transition: transform 0.7s linear; |
| 19 | transition-delay: 0.7s; |
| 20 | } |
| 21 | } |
| 22 | } |
| 23 | } |