I have created a simple unordered list:
<body>
<div class="todo-section">
<label for="bulletPoints">Todo:</label>
<ul id="bulletPoints">
<li>Apples</li>
<li>Bananas</li>
<li>Pears</li>
</ul>
</div>
</body>
I am using circles as markers and I have realized these are too small. I could increase the font size of the marker, but in this case, the text of my list-items is not aligned with my bullet points any more.
I have tried out different stylings to the extent that I cannot believe how difficult it is to simply increase only the marker size and still have a nicely designed list. Here are my latest css settings:
.todo-section {
margin-top: 20px;
display: grid;
grid-template-columns: 1fr 5fr;
padding: 0 10px;
width: 50%;
border: 1px solid black;
}
.todo-section label {
margin-top: .57rem;
}
#bulletPoints {
margin: 0;
list-style-type: circle;
list-style-position: inside;
}
#bulletPoints li {
line-height: 2rem;
}
#bulletPoints li::marker {
font-size: 2rem;
margin-right: 10px;
}
Can someone help me out?