-
-
Save usethetics/eecefc7d1a0b4cae21c4e957b1b7f1df to your computer and use it in GitHub Desktop.
Custom emoji markers with 1 custom property
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
| /** | |
| * Custom emoji markers with 1 custom property | |
| */ | |
| ::marker { | |
| content: var(--marker); | |
| } | |
| .pros-cons { | |
| --marker: "๐๐ผ"; | |
| } | |
| .con { | |
| --marker: "๐๐ผ"; | |
| } |
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
| <ul> | |
| <li><ul> with no --marker specified</li> | |
| <li>Second item</li> | |
| <li style="--marker: '๐ฅณ'">Inline --marker</li> | |
| </ul> | |
| <ol> | |
| <li><ol> with no --marker specified</li> | |
| <li>Second item</li> | |
| </ol> | |
| <ul class="pros-cons"><li class="con">con</li><li>pro</li></ul> |
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
| // alert('Hello world!'); |
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
| {"view":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment