This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .gradient-text { | |
| background: linear-gradient(to right, red, blue); | |
| background-clip: text; | |
| color: transparent; | |
| } | |
| .summary-icon summary { | |
| list-style-type: '⬇ '; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .gradient-text { | |
| background: linear-gradient(to right, red, blue); | |
| background-clip: text; | |
| color: transparent; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @media (max-width: 782px) { | |
| .wp-block-columns.column-reverse-on-mobile { | |
| flex-direction: column-reverse; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* For Text */ | |
| line-height: calc(4px + 2.25ex); | |
| /* For Headings */ | |
| line-height: calc(4px + 2ex); | |
| /* | |
| The ex value can be adjusted as desired. | |
| The 4px isn't a magic number, it's the value of the leading, which is then added to double the x-height of the font. | |
| */ |