list item color
List item custom color
by ruhul105
HTML
<ul>
<li>ITem one</li>
<li>Item two</li>
</ul>
CSS
ul {
padding: 0px;
}
li {
list-style: none;
position: relative;
padding-left: 15px;
line-height: 20px;
}
li:before {
content: "";
width: 7px;
height: 7px;
position: absolute;
background-color: #1f636a;
left: 0;
top: 7px;
border-radius: 7px;
}