Created
November 27, 2024 21:04
-
-
Save ArthurN/b13ca1e948b2337ffa043e4c073f0d3b to your computer and use it in GitHub Desktop.
list divided by bullet
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.stats { | |
padding: 0; | |
margin: 0; | |
li { | |
display: inline; | |
white-space: nowrap; | |
color: var(--p-surface-600); | |
} | |
li:after { | |
content: " "; | |
letter-spacing: 1.5rem; | |
opacity: 0.5; | |
background: center center no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1.4rem' height='1.4rem' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M12 10a2 2 0 0 0-2 2a2 2 0 0 0 2 2c1.11 0 2-.89 2-2a2 2 0 0 0-2-2'/%3E%3C/svg%3E"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment