Last active
February 5, 2018 00:05
-
-
Save jrobinsonc/29b96bf681e0f7a04cb962a01df55bc7 to your computer and use it in GitHub Desktop.
Custom style for <ul> tag.
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 { | |
list-style: none; | |
padding: 0; | |
margin: 0 0 0 20px; | |
li { | |
padding-left: 1em; | |
text-indent: -1.8em; | |
margin-bottom: 10px; | |
&:before { | |
content: "\f111"; | |
font-family: FontAwesome; | |
color: red; | |
font-size: 6px; | |
margin-right: 20px; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment