I have the following ordered list:
ol{
list-style: none;
counter-reset: item;
list-style-position: outside;
}
ol li {
counter-increment: item;
margin-bottom: 15px;
}
ol li::before{
margin-right: 10px;
content: counter(item);
border-radius: 100%;
color: #2388ED;
border: 2px solid #2388ED;
text-align: center;
display: inline-block;
padding: 4px 10px;
font-family: sans-serif;
font-weight: bolder;
font-size: 1.5em;
}
<body>
<ol>
<li>
“Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.”
― Rick Cook, The Wizardry Compiled
</li>
<li>
“Talk is cheap. Show me the code.”
― Linus Torvalds
</li>
</ol>
</body>
My question was how do I change the distance between the image from my 'modified' list item and the text, to leave the text aligned with the first line after the line breaks.