Skip to content

Instantly share code, notes, and snippets.

@jrobinsonc
Last active February 5, 2018 00:05
Show Gist options
  • Save jrobinsonc/29b96bf681e0f7a04cb962a01df55bc7 to your computer and use it in GitHub Desktop.
Save jrobinsonc/29b96bf681e0f7a04cb962a01df55bc7 to your computer and use it in GitHub Desktop.
Custom style for <ul> tag.
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