Olá, tenho lista e em cada linha terá um triângulo de marcação, estava usando imagem, agora quero fazer com a pseudo classe. Mas não está aparecendo =/
está assim:
HTML
<ul class="list">
<li class="list">See our customers as the starting point of everything we do </li>
<li class="list">Work hard to meet and exceed our customers’ expectations </li>
<li class="list">Provide our customers with the knowledge and confidence they need to make sound financial decisions </li>
<li class="list">Give our employees the opportunity to develop themselves, and provide them with an inspiring and healthy work environment </li>
<li class="list">Stand by our customers, and our colleagues, in their moments of truth </li>
</ul>
CSS
.bg-about>.list li:before{
content:'';
width:17px;
height:17px;
background-color:#f58c23;
transform: rotate(45deg);
}