I made a carousel and I want to make my indicators (the ones at the bottom of the carousel) white hollow circles with no or white fill. By default, they are long, rectangular and white. I managed to make them circular and dark by doing this to my CSS:
.carousel-indicators > li {
border-radius: 50%;
width: 10px;
height: 10px;
}
.darken {
filter: invert(40%);
}
But I want the circles to only have an outline and no fill so how can I do that? I tried adding color: red to experiment but the colour of the circles won't change.