jrobinsonc
5/16/2016 - 6:04 PM

Custom style for <ul> tags.

Custom style for

    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;
        }
    }
}