Greetings! I am attempting to customize the style of an ordered list like the one shown in the image on another website. https://i.sstatic.net/BQok4.png
However, instead of the circle used in that picture, I want to use a different CSS Image like the one (without text) shown here https://i.sstatic.net/qWoRZ.png
I've tried using the code provided by the other website, but I'm unsure how to change the blue circle to the green symbol. Can anyone assist me with this?
.blog-blau-liste {
position: relative;
margin: 0.8em 0px 0px;
list-style: outside none none;
counter-reset: big-numba;
padding-left: 0px;
}
.blog-blau-liste-item {
position: relative;
margin: 0.8em 0px 0px 1.9em;
list-style: outside none none;
}
.blog-blau-liste-item::before {
content: counter(big-numba, decimal);
counter-increment: big-numba;
position: absolute;
top: -2px;
font-size: 19px;
left: -1.9em;
box-sizing: border-box;
width: 1.5em;
height: 1.5em;
line-height: 1.5;
color: #FFF;
background: #009DD9 none repeat scroll 0% 0%;
font-weight: 600;
text-align: center;
border-radius: 50%;
}
<ol class="blog-blau-liste">
<li class="blog-blau-liste-item">Point Number 1</li>
<li class="blog-blau-liste-item">Point Number 2</li>
<li class="blog-blau-liste-item">Point Number 3</li></ol>
Is there a way to achieve this and create the green logo (just the circle without text and white line) using CSS?
I came across this code which is not rounded, and I'm unsure how to implement it.
#burst-8 {
background: red;
width: 80px;
height: 80px;
position: relative;
text-align: center;
-webkit-transform: rotate(20deg);
-moz-transform: rotate(20deg);
-ms-transform: rotate(20deg);
-o-transform: rotate(20eg);
}
#burst-8:before {
content: "";
position: absolute;
top: 0;
left: 0;
height: 80px;
width: 80px;
background: red;
-webkit-transform: rotate(135deg);
-moz-transform: rotate(135deg);
-ms-transform: rotate(135deg);
-o-transform: rotate(135deg);
}
<div id="burst-8">1</div>